diff options
author | Andreas Rumpf <andreas@andreas-desktop> | 2010-03-01 19:37:33 +0100 |
---|---|---|
committer | Andreas Rumpf <andreas@andreas-desktop> | 2010-03-01 19:37:33 +0100 |
commit | 4ee65a08ddc7605b0bc1424642a46bace60a09e8 (patch) | |
tree | d9a6cd0e0746ebbd8541a42efae604f2062b3037 /tests | |
parent | df672f5b9a3439e2c6e92c90b7d1cdbc37ad197b (diff) | |
download | Nim-4ee65a08ddc7605b0bc1424642a46bace60a09e8.tar.gz |
further enhancements for the GTK wrapper
Diffstat (limited to 'tests')
-rwxr-xr-x[-rw-r--r--] | tests/accept/run/txmltree.nim | 0 | ||||
-rwxr-xr-x | tests/tester.nim | 9 | ||||
-rwxr-xr-x | tests/tnewlibs.cfg | 16 |
3 files changed, 6 insertions, 19 deletions
diff --git a/tests/accept/run/txmltree.nim b/tests/accept/run/txmltree.nim index efd7b07af..efd7b07af 100644..100755 --- a/tests/accept/run/txmltree.nim +++ b/tests/accept/run/txmltree.nim diff --git a/tests/tester.nim b/tests/tester.nim index 84d399a1d..f1a001a5a 100755 --- a/tests/tester.nim +++ b/tests/tester.nim @@ -23,7 +23,7 @@ ## Nimrod shall produce. import - strutils, pegs, os, osproc, streams + strutils, pegs, os, osproc, streams, parsecsv const cmdTemplate = r"nimrod cc --hints:on $options $filename" @@ -169,8 +169,11 @@ proc main(options: string) = inc(total) Echo("[Tester] $#/$# tests passed\n" % [$passed, $total]) - - +proc reject(options: string) = + ## handle all the tests that the compiler should reject + +proc accept(options: string) = + var diff --git a/tests/tnewlibs.cfg b/tests/tnewlibs.cfg deleted file mode 100755 index 852209a36..000000000 --- a/tests/tnewlibs.cfg +++ /dev/null @@ -1,16 +0,0 @@ -path="$lib/pure" -path="$lib/impure" -path="$lib/newwrap" -path="$lib/newwrap/cairo" -path="$lib/newwrap/gtk" -path="$lib/newwrap/lua" -path="$lib/newwrap/opengl" -path="$lib/newwrap/pcre" -path="$lib/newwrap/sdl" -path="$lib/newwrap/x11" -path="$lib/newwrap/zip" -path="$lib/wrappers/x11" -path="$lib/windows" -path="$lib/posix" -path="$lib/ecmas" - |