about summary refs log tree commit diff stats
path: root/subx/test_layers
blob: 709601ff64a0ee16ae7c9f11ec1f6fd98e8223a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash
# Repeatedly stop building until successive layers, and run all tests built.

set -e

cd `dirname $0`
for f in [0-9]*
do
  echo "=== $f"
  ./build_and_test_until $f  ||  exit 1
done

./clean top
for f in ex*.subx
do
  echo checking $f
  target=`echo $f |sed 's/\..*//'`
  CFLAGS=-g ./subx translate $f $target
  git diff --quiet $target  ||  exit 1
  echo $target generated as expected
done