Files
mercury/benchmarks/progs/hlc_tests
Paul Bone ea06fd8cde Add the benchmarks directory into the main Mercury repository.
This was a seperate repository in CVS and so it missed the conversion.

benchmarks/
    As above.
2013-01-04 12:13:53 +11:00

20 lines
306 B
Bash
Executable File

#!/bin/sh
for dir in compress icfp2000 icfp2001 nuc
do
cd $dir
for grade in asm_fast.gc hlc.gc
do
echo "GRADE = $grade" > Mmakefile.grade
for optlevel in O5
do
echo "OPTLEVEL = $optlevel" > Mmakefile.optlevel
mmake realclean
mmake depend
mmake
mmake times
done
done
cd ..
done