| 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 # TODO(stichnot): Use FindBaseNaCl so that the script can be run from | 8 # TODO(stichnot): Use FindBaseNaCl so that the script can be run from |
| 9 # anywhere within the native_client directory. | 9 # anywhere within the native_client directory. |
| 10 PATH="../pydir:${PATH}" | 10 PATH="../pydir:${PATH}" |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 --dir="${OUTDIR}" \ | 57 --dir="${OUTDIR}" \ |
| 58 --test=test_calling_conv.cpp \ | 58 --test=test_calling_conv.cpp \ |
| 59 --driver=test_calling_conv_main.cpp \ | 59 --driver=test_calling_conv_main.cpp \ |
| 60 --output=test_calling_conv_O${optlevel}_${attribute} | 60 --output=test_calling_conv_O${optlevel}_${attribute} |
| 61 | 61 |
| 62 crosstest.py -O${optlevel} --mattr ${attribute} \ | 62 crosstest.py -O${optlevel} --mattr ${attribute} \ |
| 63 --prefix=Subzero_ \ | 63 --prefix=Subzero_ \ |
| 64 --target=x8632 \ | 64 --target=x8632 \ |
| 65 --dir="${OUTDIR}" \ | 65 --dir="${OUTDIR}" \ |
| 66 --test=test_cast.cpp --test=test_cast_to_u1.ll \ | 66 --test=test_cast.cpp --test=test_cast_to_u1.ll \ |
| 67 --test=test_cast_vectors.ll \ |
| 67 --driver=test_cast_main.cpp \ | 68 --driver=test_cast_main.cpp \ |
| 68 --output=test_cast_O${optlevel}_${attribute} | 69 --output=test_cast_O${optlevel}_${attribute} |
| 69 | 70 |
| 70 crosstest.py -O${optlevel} --mattr ${attribute} \ | 71 crosstest.py -O${optlevel} --mattr ${attribute} \ |
| 71 --prefix=Subzero_ \ | 72 --prefix=Subzero_ \ |
| 72 --target=x8632 \ | 73 --target=x8632 \ |
| 73 --dir="${OUTDIR}" \ | 74 --dir="${OUTDIR}" \ |
| 74 --test=test_fcmp.pnacl.ll \ | 75 --test=test_fcmp.pnacl.ll \ |
| 75 --driver=test_fcmp_main.cpp \ | 76 --driver=test_fcmp_main.cpp \ |
| 76 --output=test_fcmp_O${optlevel}_${attribute} | 77 --output=test_fcmp_O${optlevel}_${attribute} |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 "${OUTDIR}"/test_cast_O${optlevel}_${attribute} | 140 "${OUTDIR}"/test_cast_O${optlevel}_${attribute} |
| 140 "${OUTDIR}"/test_fcmp_O${optlevel}_${attribute} | 141 "${OUTDIR}"/test_fcmp_O${optlevel}_${attribute} |
| 141 "${OUTDIR}"/test_global_O${optlevel}_${attribute} | 142 "${OUTDIR}"/test_global_O${optlevel}_${attribute} |
| 142 "${OUTDIR}"/test_icmp_O${optlevel}_${attribute} | 143 "${OUTDIR}"/test_icmp_O${optlevel}_${attribute} |
| 143 "${OUTDIR}"/test_select_O${optlevel}_${attribute} | 144 "${OUTDIR}"/test_select_O${optlevel}_${attribute} |
| 144 "${OUTDIR}"/test_stacksave_O${optlevel}_${attribute} | 145 "${OUTDIR}"/test_stacksave_O${optlevel}_${attribute} |
| 145 "${OUTDIR}"/test_sync_atomic_O${optlevel}_${attribute} | 146 "${OUTDIR}"/test_sync_atomic_O${optlevel}_${attribute} |
| 146 "${OUTDIR}"/test_vector_ops_O${optlevel}_${attribute} | 147 "${OUTDIR}"/test_vector_ops_O${optlevel}_${attribute} |
| 147 done | 148 done |
| 148 done | 149 done |
| OLD | NEW |