about summary refs log tree commit diff stats
path: root/subx/test_layers
blob: a2ed65c645122c21bde6bfd4e95005b152de1904 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/bash
# Repeatedly stop building until successive layers, and run all tests built.
#
# Assumes .subx files all come after .cc files.

set -e

cd `dirname $0`
# add C++ files one at a time
for f in [0-9]*cc
do
  echo "=== $f"
  ./build_and_test_until $f
done

# build everything one last time
./clean
CFLAGS=$CFLAGS ./build  # build optimized by default since we'll be running it repeatedly below

# add SubX files one at a time
for f in [0-9]*.subx
do
  echo "=== $f"
  ./subx translate $(../enumerate/enumerate --until $f |grep '\.subx$') -o foo  &&  ./subx run foo
  echo
  test `uname` = 'Linux'  &&  {
    chmod +x foo
    ./foo
    echo
  } || true
done