about summary refs log tree commit diff stats
path: root/subx/test_layers
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-10-01 22:09:46 -0700
committerKartik Agaram <vc@akkartik.com>2018-10-01 22:09:46 -0700
commit839dc88dc0439ae3f32c8c0f7650f32b09f311cc (patch)
tree9515ae5bb7bc4cb8594f3fd5187cb696872d57da /subx/test_layers
parent1aacbdf5beafe03d16c0c69801bd34e29aeb25b6 (diff)
downloadmu-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-xsubx/test_layers16
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