Fixed tests to work better with different syntax versions.

This commit is contained in:
Bruce Hill 2018-11-21 13:56:25 -08:00
parent 2bbc035f5d
commit fa967247da
2 changed files with 10 additions and 3 deletions

View File

@ -370,9 +370,10 @@ externally (type of %) means:
test:
assume ((run "return (2 + 99)") == 101)
external %passed = (no)
run "external %passed = (yes)"
assume %passed
%x = 0
externally (set to %) means: external %x = %
run "set to 1"
assume %x == 1
assume (run \(return \(\(5) + \(5)))) == 10
(run %nomsu_code) compiles to "run_1_in(\(%nomsu_code as lua expr), _ENV)"
[compile %block, compiled %block, %block compiled] all compile to "\

View File

@ -12,9 +12,15 @@ use "lib/consolecolor.nom"
for %filename in (command line args).extra_args: use %filename
%tests = {: for %s = %t in (tests): add (=lua "Source:from_string(\%s)") = %t}
for %filename in (command line args).extra_args:
%file = (read file %filename)
%version = (%file::matching "#![^\n]* nomsu %-V[ ]*([^\n]*)")
%file_tests = []
for %src = %test in %tests:
if (%src.filename == %filename):
if %version:
%test = "\
..#!/usr/bin/env nomsu -V\(%version)
\%test"
%file_tests::add {test: %test, source: %src}
unless (%file_tests is empty):