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. |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \ | 60 ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \ |
61 --dir="${OUTDIR}" \ | 61 --dir="${OUTDIR}" \ |
62 --llvm-bin-path="${LLVM_BIN_PATH}" \ | 62 --llvm-bin-path="${LLVM_BIN_PATH}" \ |
63 --test=test_global.cpp \ | 63 --test=test_global.cpp \ |
64 --driver=test_global_main.cpp \ | 64 --driver=test_global_main.cpp \ |
65 --output=test_global_O${optlevel} | 65 --output=test_global_O${optlevel} |
66 | 66 |
67 ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \ | 67 ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \ |
68 --dir="${OUTDIR}" \ | 68 --dir="${OUTDIR}" \ |
69 --llvm-bin-path="${LLVM_BIN_PATH}" \ | 69 --llvm-bin-path="${LLVM_BIN_PATH}" \ |
70 --test=test_icmp.cpp \ | 70 --test=test_icmp.cpp --test=test_icmp_i1vec.ll \ |
71 --driver=test_icmp_main.cpp \ | 71 --driver=test_icmp_main.cpp \ |
72 --output=test_icmp_O${optlevel} | 72 --output=test_icmp_O${optlevel} |
73 | 73 |
74 ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \ | 74 ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \ |
75 --dir="${OUTDIR}" \ | 75 --dir="${OUTDIR}" \ |
76 --llvm-bin-path="${LLVM_BIN_PATH}" \ | 76 --llvm-bin-path="${LLVM_BIN_PATH}" \ |
77 --test=test_stacksave.c \ | 77 --test=test_stacksave.c \ |
78 --driver=test_stacksave_main.c \ | 78 --driver=test_stacksave_main.c \ |
79 --output=test_stacksave_O${optlevel} | 79 --output=test_stacksave_O${optlevel} |
80 | 80 |
(...skipping 23 matching lines...) Expand all Loading... |
104 "${OUTDIR}"/test_arith_O${optlevel} | 104 "${OUTDIR}"/test_arith_O${optlevel} |
105 "${OUTDIR}"/test_bitmanip_O${optlevel} | 105 "${OUTDIR}"/test_bitmanip_O${optlevel} |
106 "${OUTDIR}"/test_cast_O${optlevel} | 106 "${OUTDIR}"/test_cast_O${optlevel} |
107 "${OUTDIR}"/test_fcmp_O${optlevel} | 107 "${OUTDIR}"/test_fcmp_O${optlevel} |
108 "${OUTDIR}"/test_global_O${optlevel} | 108 "${OUTDIR}"/test_global_O${optlevel} |
109 "${OUTDIR}"/test_icmp_O${optlevel} | 109 "${OUTDIR}"/test_icmp_O${optlevel} |
110 "${OUTDIR}"/test_stacksave_O${optlevel} | 110 "${OUTDIR}"/test_stacksave_O${optlevel} |
111 "${OUTDIR}"/test_sync_atomic_O${optlevel} | 111 "${OUTDIR}"/test_sync_atomic_O${optlevel} |
112 "${OUTDIR}"/test_vector_ops_O${optlevel} | 112 "${OUTDIR}"/test_vector_ops_O${optlevel} |
113 done | 113 done |
OLD | NEW |