OLD | NEW |
1 #!/bin/sh | 1 #!/bin/sh |
2 | 2 |
3 # TODO: Retire this script and move the individual tests into the lit | 3 # TODO: Retire this script and move the individual tests into the lit |
4 # framework, to leverage parallel testing and other lit goodness. | 4 # framework, to leverage parallel testing and other lit goodness. |
5 | 5 |
6 set -eux | 6 set -eux |
7 | 7 |
8 OPTLEVELS="m1 2" | 8 OPTLEVELS="m1 2" |
9 OUTDIR=Output | 9 OUTDIR=Output |
10 # Clean the output directory to avoid reusing stale results. | 10 # Clean the output directory to avoid reusing stale results. |
11 rm -rf "${OUTDIR}" | 11 rm -rf "${OUTDIR}" |
12 mkdir -p "${OUTDIR}" | 12 mkdir -p "${OUTDIR}" |
13 | 13 |
14 for optlevel in ${OPTLEVELS} ; do | 14 for optlevel in ${OPTLEVELS} ; do |
15 | 15 |
16 ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \ | 16 ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \ |
17 --dir="${OUTDIR}" \ | 17 --dir="${OUTDIR}" \ |
18 --llvm-bin-path="${LLVM_BIN_PATH}" \ | 18 --llvm-bin-path="${LLVM_BIN_PATH}" \ |
19 --test=simple_loop.c \ | 19 --test=simple_loop.c \ |
20 --driver=simple_loop_main.c \ | 20 --driver=simple_loop_main.c \ |
21 --output=simple_loop_O${optlevel} | 21 --output=simple_loop_O${optlevel} |
22 | 22 |
23 ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \ | 23 ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \ |
24 --dir="${OUTDIR}" \ | 24 --dir="${OUTDIR}" \ |
25 --llvm-bin-path="${LLVM_BIN_PATH}" \ | 25 --llvm-bin-path="${LLVM_BIN_PATH}" \ |
| 26 --test=mem_intrin.cpp \ |
| 27 --driver=mem_intrin_main.cpp \ |
| 28 --output=mem_intrin_O${optlevel} |
| 29 |
| 30 ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \ |
| 31 --dir="${OUTDIR}" \ |
| 32 --llvm-bin-path="${LLVM_BIN_PATH}" \ |
| 33 --test=test_arith.cpp --test=test_arith_frem.ll \ |
| 34 --driver=test_arith_main.cpp \ |
| 35 --output=test_arith_O${optlevel} |
| 36 |
| 37 ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \ |
| 38 --dir="${OUTDIR}" \ |
| 39 --llvm-bin-path="${LLVM_BIN_PATH}" \ |
26 --test=test_cast.cpp --test=test_cast_to_u1.ll \ | 40 --test=test_cast.cpp --test=test_cast_to_u1.ll \ |
27 --driver=test_cast_main.cpp \ | 41 --driver=test_cast_main.cpp \ |
28 --output=test_cast_O${optlevel} | 42 --output=test_cast_O${optlevel} |
29 | 43 |
30 ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \ | 44 ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \ |
31 --dir="${OUTDIR}" \ | 45 --dir="${OUTDIR}" \ |
32 --llvm-bin-path="${LLVM_BIN_PATH}" \ | 46 --llvm-bin-path="${LLVM_BIN_PATH}" \ |
33 --test=test_fcmp.pnacl.ll \ | 47 --test=test_fcmp.pnacl.ll \ |
34 --driver=test_fcmp_main.cpp \ | 48 --driver=test_fcmp_main.cpp \ |
35 --output=test_fcmp_O${optlevel} | 49 --output=test_fcmp_O${optlevel} |
36 | 50 |
37 ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \ | 51 ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \ |
38 --dir="${OUTDIR}" \ | 52 --dir="${OUTDIR}" \ |
39 --llvm-bin-path="${LLVM_BIN_PATH}" \ | 53 --llvm-bin-path="${LLVM_BIN_PATH}" \ |
40 --test=test_icmp.cpp \ | 54 --test=test_icmp.cpp \ |
41 --driver=test_icmp_main.cpp \ | 55 --driver=test_icmp_main.cpp \ |
42 --output=test_icmp_O${optlevel} | 56 --output=test_icmp_O${optlevel} |
43 | 57 |
44 ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \ | |
45 --dir="${OUTDIR}" \ | |
46 --llvm-bin-path="${LLVM_BIN_PATH}" \ | |
47 --test=test_arith.cpp --test=test_arith_frem.ll \ | |
48 --driver=test_arith_main.cpp \ | |
49 --output=test_arith_O${optlevel} | |
50 | |
51 done | 58 done |
52 | 59 |
53 for optlevel in ${OPTLEVELS} ; do | 60 for optlevel in ${OPTLEVELS} ; do |
54 "${OUTDIR}"/simple_loop_O${optlevel} | 61 "${OUTDIR}"/simple_loop_O${optlevel} |
| 62 "${OUTDIR}"/mem_intrin_O${optlevel} |
| 63 "${OUTDIR}"/test_arith_O${optlevel} |
55 "${OUTDIR}"/test_cast_O${optlevel} | 64 "${OUTDIR}"/test_cast_O${optlevel} |
56 "${OUTDIR}"/test_fcmp_O${optlevel} | 65 "${OUTDIR}"/test_fcmp_O${optlevel} |
57 "${OUTDIR}"/test_icmp_O${optlevel} | 66 "${OUTDIR}"/test_icmp_O${optlevel} |
58 "${OUTDIR}"/test_arith_O${optlevel} | |
59 done | 67 done |
OLD | NEW |