From 70f80c98b9443797f280ffbff272beeb8a6ffd27 Mon Sep 17 00:00:00 2001 From: cheatfate Date: Sat, 30 Jul 2016 23:17:02 +0300 Subject: [PATCH] Enable coroutines again. --- .travis.yml | 4 +++- tests/testament/tester.nim | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9cd0b13c40..0ebeeb995e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,12 +10,14 @@ addons: - libgc-dev before_script: - set -e + - wget http://nim-lang.org/download/fasm-1.71.39.tgz + - tar xvf fasm-1.71.39.tgz - git clone --depth 1 https://github.com/nim-lang/csources.git - cd csources - sh build.sh - cd .. - sed -i -e 's,cc = gcc,cc = clang,' config/nim.cfg - - export PATH=$(pwd)/bin:$PATH + - export PATH=$(pwd)/bin:$(pwd)/fasm:$PATH script: - nim c koch - ./koch boot diff --git a/tests/testament/tester.nim b/tests/testament/tester.nim index 6981f3c0c0..08dbab155e 100644 --- a/tests/testament/tester.nim +++ b/tests/testament/tester.nim @@ -390,7 +390,7 @@ proc makeTest(test, options: string, cat: Category, action = actionCompile, const # array of modules disabled from compilation test of stdlib. - disabledFiles = ["lib/pure/coro.nim"] + disabledFiles = [] include categories