1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-16 22:14:23 +03:00
inform7/services/arch-test/Tests/arch-test.intest

21 lines
433 B
Plaintext
Raw Normal View History

2020-05-20 02:02:28 +03:00
-cases 'services/arch-test/Tests/Test Cases'
2020-03-29 14:32:49 +03:00
-recipe
set: $A = $PATH/_Results_Actual/$CASE.txt
set: $I = $PATH/_Results_Ideal/$CASE.txt
mkdir: $PATH/_Results_Actual
2020-05-20 02:02:28 +03:00
step: services/arch-test/Tangled/arch-test -test-$CASE $PATH/$CASE.txt >$A 2>&1
2020-03-29 14:32:49 +03:00
or: 'produced errors in arch-test' $A
show: $A
exists: $I
or: 'passed without errors but no blessed output existed'
match text: $A $I
or: 'produced incorrect output'
-end