Skip to content

Commit

Permalink
skip ExecutionEngine tests on linux-32 (i686)
Browse files Browse the repository at this point in the history
As title
  • Loading branch information
esc committed Nov 22, 2021
1 parent a779fe6 commit d01413b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion conda-recipes/llvmdev/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,11 @@ make install || exit $?
if [[ $ARCH == 'x86_64' ]]; then
bin/opt -S -vector-library=SVML -mcpu=haswell -O3 $RECIPE_DIR/numba-3016.ll | bin/FileCheck $RECIPE_DIR/numba-3016.ll || exit $?
fi

# run the tests, skip some on linux-32
cd ../test
../build/bin/llvm-lit -vv Transforms ExecutionEngine Analysis CodeGen/X86
if [[ $ARCH == 'i686' ]]; then
../build/bin/llvm-lit -vv Transforms Analysis CodeGen/X86
else
../build/bin/llvm-lit -vv Transforms ExecutionEngine Analysis CodeGen/X86
fi

0 comments on commit d01413b

Please sign in to comment.