diff options
author | Kartik Agaram <vc@akkartik.com> | 2018-10-01 22:09:46 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2018-10-01 22:09:46 -0700 |
commit | 839dc88dc0439ae3f32c8c0f7650f32b09f311cc (patch) | |
tree | 9515ae5bb7bc4cb8594f3fd5187cb696872d57da /subx/test_layers | |
parent | 1aacbdf5beafe03d16c0c69801bd34e29aeb25b6 (diff) | |
download | mu-839dc88dc0439ae3f32c8c0f7650f32b09f311cc.tar.gz |
4647 - support 64-bit Linux in CI
Generated 32-bit binaries are different on 64-bit. So let's compare them only on a 32-bit platform. And let's start also verifying their run-time behavior on Linux.
Diffstat (limited to 'subx/test_layers')
-rwxr-xr-x | subx/test_layers | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/subx/test_layers b/subx/test_layers index 2afa6dab..ea0a9273 100755 --- a/subx/test_layers +++ b/subx/test_layers @@ -9,19 +9,3 @@ do echo "=== $f" ./build_and_test_until $f || exit 1 done - -./clean top -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 |