Index: crosstest/runtests.sh |
diff --git a/crosstest/runtests.sh b/crosstest/runtests.sh |
index 4ba208fe6dd571fcb72e4c6cac0d355a50f639dc..4315c769a1f677f681d4d62e44fc2e1c0c978146 100755 |
--- a/crosstest/runtests.sh |
+++ b/crosstest/runtests.sh |
@@ -48,6 +48,13 @@ for optlevel in ${OPTLEVELS} ; do |
--driver=test_arith_main.cpp \ |
--output=test_arith_O${optlevel} |
+ ./crosstest.py -O${optlevel} --prefix=Subzero_ --target=x8632 \ |
+ --dir="${OUTDIR}" \ |
+ --llvm-bin-path="${LLVM_BIN_PATH}" \ |
+ --test=mem_intrin.cpp \ |
+ --driver=mem_intrin_main.cpp \ |
+ --output=mem_intrin_O${optlevel} |
+ |
done |
for optlevel in ${OPTLEVELS} ; do |
@@ -56,4 +63,5 @@ for optlevel in ${OPTLEVELS} ; do |
"${OUTDIR}"/test_fcmp_O${optlevel} |
"${OUTDIR}"/test_icmp_O${optlevel} |
"${OUTDIR}"/test_arith_O${optlevel} |
+ "${OUTDIR}"/mem_intrin_O${optlevel} |
jvoung (off chromium)
2014/06/16 20:51:59
Should I put "test_" prefix?
Keep it sorted?
Jim Stichnoth
2014/06/16 23:05:16
I guess I have no real preference here (except to
jvoung (off chromium)
2014/06/17 17:36:18
Alright, I'll leave the filename alone for now, to
|
done |