Skip to content

Commit 93d1f8e

Browse files
committed
Suppress scan failures in icc gpuCI.
1 parent 503806a commit 93d1f8e

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

ci/common/build.bash

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,12 @@ if [[ "${BUILD_TYPE}" == "cpu" ]]; then
182182
append CTEST_FLAGS "-E ^cub|^thrust.*cuda"
183183
fi
184184

185+
if [[ "${CXX_TYPE}" == "icc" ]]; then
186+
# The free version of icpc used in gpuCI seems to have a compiler bug that
187+
# causes a scan test to produce incorrect output.
188+
append CTEST_FLAGS "-E thrust\\.cpp\\.tbb\\.cpp..\\.test\\.scan$"
189+
fi
190+
185191
if [[ -n "${@}" ]]; then
186192
for arg in "${@}"
187193
do

0 commit comments

Comments
 (0)