blob: 0bc4cf24f88b019bcf89055c61f4f8ace358ab0d [file] [log] [blame]
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -07001#!/bin/sh
2
3# TODO: Retire this script and move the individual tests into the lit
4# framework, to leverage parallel testing and other lit goodness.
5
6set -eux
7
Jim Stichnothd97c7df2014-06-04 11:57:08 -07008OPTLEVELS="m1 2"
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -07009OUTDIR=Output
10# Clean the output directory to avoid reusing stale results.
11rm -rf "${OUTDIR}"
12mkdir -p "${OUTDIR}"
13
14for optlevel in ${OPTLEVELS} ; do
15
16 ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \
17 --dir="${OUTDIR}" \
18 --llvm-bin-path="${LLVM_BIN_PATH}" \
19 --test=simple_loop.c \
20 --driver=simple_loop_main.c \
21 --output=simple_loop_O${optlevel}
22
23 ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \
24 --dir="${OUTDIR}" \
25 --llvm-bin-path="${LLVM_BIN_PATH}" \
Jan Voung3bd9f1a2014-06-18 10:50:57 -070026 --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}" \
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -070040 --test=test_cast.cpp --test=test_cast_to_u1.ll \
41 --driver=test_cast_main.cpp \
42 --output=test_cast_O${optlevel}
43
44 ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \
45 --dir="${OUTDIR}" \
46 --llvm-bin-path="${LLVM_BIN_PATH}" \
47 --test=test_fcmp.pnacl.ll \
48 --driver=test_fcmp_main.cpp \
49 --output=test_fcmp_O${optlevel}
50
51 ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \
52 --dir="${OUTDIR}" \
53 --llvm-bin-path="${LLVM_BIN_PATH}" \
Jim Stichnothde4ca712014-06-29 08:13:48 -070054 --test=test_global.cpp \
55 --driver=test_global_main.cpp \
56 --output=test_global_O${optlevel}
57
58 ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \
59 --dir="${OUTDIR}" \
60 --llvm-bin-path="${LLVM_BIN_PATH}" \
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -070061 --test=test_icmp.cpp \
62 --driver=test_icmp_main.cpp \
63 --output=test_icmp_O${optlevel}
64
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -070065done
66
67for optlevel in ${OPTLEVELS} ; do
68 "${OUTDIR}"/simple_loop_O${optlevel}
Jan Voung3bd9f1a2014-06-18 10:50:57 -070069 "${OUTDIR}"/mem_intrin_O${optlevel}
70 "${OUTDIR}"/test_arith_O${optlevel}
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -070071 "${OUTDIR}"/test_cast_O${optlevel}
72 "${OUTDIR}"/test_fcmp_O${optlevel}
Jim Stichnothde4ca712014-06-29 08:13:48 -070073 "${OUTDIR}"/test_global_O${optlevel}
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -070074 "${OUTDIR}"/test_icmp_O${optlevel}
Jim Stichnoth5bc2b1d2014-05-22 13:38:48 -070075done