diff options
Diffstat (limited to 'subx/test_apps')
-rwxr-xr-x | subx/test_apps | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/subx/test_apps b/subx/test_apps index 9be51ab1..988e81ae 100755 --- a/subx/test_apps +++ b/subx/test_apps @@ -121,6 +121,14 @@ test `uname` = 'Linux' && { grep -vq 'F' ex11.out # no test failures } +echo ex12 +CFLAGS=-g ./subx translate examples/ex12.subx -o examples/ex12 +test `uname -m` = 'i686' && git diff --quiet examples/ex12 +CFLAGS=-g ./subx run examples/ex12 # final byte of mmap'd address is well-nigh guaranteed to be 0 +test `uname` = 'Linux' && { + examples/ex12 # final byte of mmap'd address is well-nigh guaranteed to be 0 +} + echo factorial CFLAGS=-g ./subx translate *.subx apps/factorial.subx -o apps/factorial test `uname -m` = 'i686' && git diff --quiet apps/factorial |