about summary refs log tree commit diff stats
path: root/test_all_layers
blob: f7551aea18f68451a6368900d81f046b997f9403 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

for f in [0-9]*
do
  if [ "$f" \< "$1" ]; then continue; fi
  echo "=== $f"
  ./build_and_test_until $f || exit 1
done

echo "=== chessboard"
./mu test chessboard.mu || exit 1

for f in edit/[0-9]*
do
  echo "=== edit: until $f"
  ./mu test `echo edit/[0-9]* |perl -pwe "s,$f.*,$f,"`  || exit 1
done