diff options
author | Flaviu Tamas <tamasflaviu@gmail.com> | 2015-01-24 14:58:25 -0500 |
---|---|---|
committer | Flaviu Tamas <tamasflaviu@gmail.com> | 2015-01-24 14:58:25 -0500 |
commit | a064faf1715bc01f0c47f7ee29e75767b2812e11 (patch) | |
tree | 1155133f8a19d6a6c39b68c829dce22055b92679 | |
parent | e027ea91395b27849c4b8db11555a263ea894b76 (diff) | |
download | Nim-a064faf1715bc01f0c47f7ee29e75767b2812e11.tar.gz |
Allow custom test parameters
-rwxr-xr-x | runtests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtests.sh b/runtests.sh index 39f9db286..ba6fff032 100755 --- a/runtests.sh +++ b/runtests.sh @@ -1,4 +1,4 @@ #!/usr/bin/sh nim c --path:src -r --verbosity:0 --hints:off --linedir:on --debuginfo \ - --stacktrace:on --linetrace:on ./test/testall.nim \ + --stacktrace:on --linetrace:on "$@" ./test/testall.nim \ | grep -vE 'ProveInit|instantiation from here' |