2018-12-31 00:20:07 -08:00
|
|
|
#!/usr/bin/env nomsu -V6.13.12.8
|
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 ...
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-07-22 13:59:08 -07:00
|
|
|
use "lib/os.nom"
|
|
|
|
use "lib/consolecolor.nom"
|
|
|
|
|
2018-11-08 15:23:22 -08:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2018-07-22 16:30:49 -07:00
|
|
|
# Make sure all the files get run
|
2018-12-18 19:23:20 -08:00
|
|
|
for $filename in $(COMMAND LINE ARGS).extras: use $filename
|
|
|
|
$tests = {: for $s = $t in $TESTS: add (=lua "Source:from_string(\$s)") = $t}
|
|
|
|
for $filename in $(COMMAND LINE ARGS).extras:
|
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 $tests:
|
|
|
|
if ($src.filename == $filename):
|
|
|
|
if $version:
|
2018-12-30 19:04:34 -08:00
|
|
|
$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
|
|
|
|
2018-11-20 14:52:59 -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:
|
2018-11-20 14:52:59 -08:00
|
|
|
if (command line args)."-v":
|
2018-12-30 19:04:34 -08:00
|
|
|
say " \(yellow ($.test, with "\n" -> "\n "))"
|
2018-12-14 20:21:03 -08:00
|
|
|
run $.test
|
2018-11-19 17:21:08 -08:00
|
|
|
|
2018-11-20 14:52:59 -08:00
|
|
|
if (command line args)."-v":
|
2018-11-19 17:21:08 -08:00
|
|
|
say (green "PASS")
|
|
|
|
..else:
|
|
|
|
say "\r[\(green "PASS")"
|