Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: crosstest/runtests.sh

Issue 639543002: Add cross test for vector itofp and fptoi casts. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: share more Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | crosstest/test_arith.def » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | crosstest/test_arith.def » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698