diff options
Diffstat (limited to 'subx/test_layers')
-rwxr-xr-x | subx/test_layers | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/subx/test_layers b/subx/test_layers index fa801c10..2afa6dab 100755 --- a/subx/test_layers +++ b/subx/test_layers @@ -11,10 +11,17 @@ do done ./clean top -for f in examples/ex*.subx apps/*.subx +for f in examples/*.subx do echo $f target=`echo $f |sed 's/\..*//'` CFLAGS=-g ./subx translate $f -o $target git diff --quiet $target || exit 1 done +for f in apps/*.subx +do + echo $f + target=`echo $f |sed 's/\..*//'` + CFLAGS=-g ./subx translate *.subx $f -o $target + git diff --quiet $target || exit 1 +done |