about summary refs log blame commit diff stats
path: root/test_all_layers
blob: 7e69179f904ef691c5b6902807941a2ce63fa8df (plain) (tree)
1
2
3
4
5
6
7
8
9

           
               
  
               
                                     
    
 
                     
        
                                   





                                                      
#!/bin/bash

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

echo "=== chessboard"
rm mu.cc
CXX=clang++ ./mu test chessboard.mu

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