From 04546ef6295b81f0bb7744e4c3274b7ef7dad3a4 Mon Sep 17 00:00:00 2001 From: Alexander Ivanov Date: Wed, 7 Feb 2018 11:58:17 +0200 Subject: [PATCH] Compile actual test files --- .travis.yml | 2 +- tests/test.sh | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index f091f2ffd..bddd572bb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,4 +5,4 @@ before_install: - docker pull yglukhov/nim-base script: - docker run yglukhov/nim-base nim --version - - docker run -v "$(pwd):/project" -w /project yglukhov/nim-base nimble install -y;./test.sh + - docker run -v "$(pwd):/project" -w /project yglukhov/nim-base nimble install -y;./tests/test.sh diff --git a/tests/test.sh b/tests/test.sh index 3234d7ca5..bd620c6a5 100755 --- a/tests/test.sh +++ b/tests/test.sh @@ -1,9 +1,9 @@ #!/bin/bash -# nim c tests/code_stream_test.nim -# nim c tests/gas_meter_test.nim -# nim c tests/memory_test.nim -# nim c tests/stack_test.nim +nim c tests/code_stream_test.nim +nim c tests/gas_meter_test.nim +nim c tests/memory_test.nim +nim c tests/stack_test.nim ./tests/code_stream_test ./tests/gas_meter_test ./tests/memory_test