Skip to content

Automatically test any cxx files for compilability

Essentially

for i in benchmarks/* ; do b=$(basename $i) ; for d in scripts analysis ; do if [ -d benchmarks/$b/$d ] ; then compile_analyses.py --dir $d $b ; fi ; done  ; done

but compile_analysis.py cannot fail when there are zero cxx files in the specified directory.