Skip to content

Commit

Permalink
cover all cases to make sure we always test the high level code
Browse files Browse the repository at this point in the history
  • Loading branch information
hadielyakhni committed Dec 28, 2023
1 parent 65f9ae6 commit 542d383
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion CI/ci_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,11 @@ for t in generic32 generic32lc generic64 generic64lc SSSE3 AVX AVX2 AVX2noAsm AV
# Since the -march=native / -mtune=native toggles are used, we cannot rely on Qemu on
# CPUs that support AVX512. Hence we execute the test natively
echo "\n\n\n=========== Testing $t (compiled with $c compiler) for x86_64 (native test as AVX512 is not supported yet by Qemu)\n\n\n" | tee -a artifacts/CIlog.log
./bin/$t/UnitTests -p
if [ "$t" = "generic64" ] && [ "$c" = "clang" ]; then
./bin/$t/UnitTests -a
else
./bin/$t/UnitTests -p
fi
else
echo "\n\n\n=========== Testing $t (compiled with $c compiler) for x86_64\n\n\n" | tee -a artifacts/CIlog.log
if [ "$t" = "generic64" ] && [ "$c" = "clang" ]; then
Expand Down

0 comments on commit 542d383

Please sign in to comment.