2018-11-26 16:28:06 -08:00
|
|
|
#!/usr/bin/env nomsu -V4.12.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-11-20 14:52:59 -08:00
|
|
|
for %filename in (command line args).extra_args: use %filename
|
2018-11-11 15:50:46 -08:00
|
|
|
%tests = {: for %s = %t in (tests): add (=lua "Source:from_string(\%s)") = %t}
|
2018-11-20 14:52:59 -08:00
|
|
|
for %filename in (command line args).extra_args:
|
2018-11-21 13:56:25 -08:00
|
|
|
%file = (read file %filename)
|
|
|
|
%version = (%file::matching "#![^\n]* nomsu %-V[ ]*([^\n]*)")
|
2018-11-19 17:21:08 -08:00
|
|
|
%file_tests = []
|
|
|
|
for %src = %test in %tests:
|
|
|
|
if (%src.filename == %filename):
|
2018-11-21 13:56:25 -08:00
|
|
|
if %version:
|
2018-11-26 16:28:06 -08:00
|
|
|
%test = "#!/usr/bin/env nomsu -V\%version\n\%test"
|
2018-11-19 17:21:08 -08:00
|
|
|
%file_tests::add {test: %test, source: %src}
|
|
|
|
|
|
|
|
unless (%file_tests is empty):
|
|
|
|
sort %file_tests by % -> %.source
|
|
|
|
lua> "io.write('[ .. ] ', \%filename); io.flush()"
|
2018-11-20 14:52:59 -08:00
|
|
|
if (command line args)."-v": say ""
|
2018-11-19 17:21:08 -08:00
|
|
|
for % in %file_tests:
|
2018-11-20 14:52:59 -08:00
|
|
|
if (command line args)."-v":
|
2018-11-19 17:21:08 -08:00
|
|
|
say " \(yellow (%.test::with "\n" -> "\n "))"
|
|
|
|
run %.test
|
|
|
|
|
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")"
|