nomsu/tools/test.nom

45 lines
1.3 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env nomsu -V6.14
2018-07-23 15:54:27 -07:00
#
Tool to run all tests in a file (i.e. the code block inside a call to 'test $'). Usage:
2018-10-31 15:05:17 -07:00
nomsu tools/test.nom file1 file2 directory1 ...
use "lib/os"
use "lib/consolecolor"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
for $filename in $(COMMAND LINE ARGS).extras:
$(test environment) = (new environment)
$(test environment), use $filename
2018-12-14 20:21:03 -08:00
$file = (read file $filename)
2018-12-30 23:58:47 -08:00
$version =
$file, matching ("
#![^
]* nomsu %-V[ ]*([^
]*)
")
2018-12-14 20:21:03 -08:00
$file_tests = []
for $src = $test in $(test environment).TESTS:
if $version:
$test = ("
#!/usr/bin/env nomsu -V\$version
\$test
")
$file_tests, add {.test = $test, .source = $src}
2018-11-19 17:21:08 -08:00
2018-12-14 20:21:03 -08:00
unless ($file_tests is empty):
sort $file_tests by $ -> $.source
lua> "io.write('[ .. ] ', \$filename); io.flush()"
2018-12-30 19:04:34 -08:00
if (command line args).v: say ""
2018-12-30 19:04:34 -08:00
2018-12-14 20:21:03 -08:00
for $ in $file_tests:
if (command line args).v:
2018-12-30 19:04:34 -08:00
say " \(yellow ($.test, with "\n" -> "\n "))"
$(test environment), run $.test
2018-11-19 17:21:08 -08:00
if (command line args).v:
2018-11-19 17:21:08 -08:00
say (green "PASS")
..else:
say "\r[\(green "PASS")"