Fixed tests to work better with different syntax versions.
This commit is contained in:
parent
2bbc035f5d
commit
fa967247da
@ -370,9 +370,10 @@ externally (type of %) means:
|
|||||||
|
|
||||||
test:
|
test:
|
||||||
assume ((run "return (2 + 99)") == 101)
|
assume ((run "return (2 + 99)") == 101)
|
||||||
external %passed = (no)
|
%x = 0
|
||||||
run "external %passed = (yes)"
|
externally (set to %) means: external %x = %
|
||||||
assume %passed
|
run "set to 1"
|
||||||
|
assume %x == 1
|
||||||
assume (run \(return \(\(5) + \(5)))) == 10
|
assume (run \(return \(\(5) + \(5)))) == 10
|
||||||
(run %nomsu_code) compiles to "run_1_in(\(%nomsu_code as lua expr), _ENV)"
|
(run %nomsu_code) compiles to "run_1_in(\(%nomsu_code as lua expr), _ENV)"
|
||||||
[compile %block, compiled %block, %block compiled] all compile to "\
|
[compile %block, compiled %block, %block compiled] all compile to "\
|
||||||
|
@ -12,9 +12,15 @@ use "lib/consolecolor.nom"
|
|||||||
for %filename in (command line args).extra_args: use %filename
|
for %filename in (command line args).extra_args: use %filename
|
||||||
%tests = {: for %s = %t in (tests): add (=lua "Source:from_string(\%s)") = %t}
|
%tests = {: for %s = %t in (tests): add (=lua "Source:from_string(\%s)") = %t}
|
||||||
for %filename in (command line args).extra_args:
|
for %filename in (command line args).extra_args:
|
||||||
|
%file = (read file %filename)
|
||||||
|
%version = (%file::matching "#![^\n]* nomsu %-V[ ]*([^\n]*)")
|
||||||
%file_tests = []
|
%file_tests = []
|
||||||
for %src = %test in %tests:
|
for %src = %test in %tests:
|
||||||
if (%src.filename == %filename):
|
if (%src.filename == %filename):
|
||||||
|
if %version:
|
||||||
|
%test = "\
|
||||||
|
..#!/usr/bin/env nomsu -V\(%version)
|
||||||
|
\%test"
|
||||||
%file_tests::add {test: %test, source: %src}
|
%file_tests::add {test: %test, source: %src}
|
||||||
|
|
||||||
unless (%file_tests is empty):
|
unless (%file_tests is empty):
|
||||||
|
Loading…
Reference in New Issue
Block a user