Skip to content

Commit

Permalink
Reverting ci logic to run gtests.
Browse files Browse the repository at this point in the history
  • Loading branch information
cjnolet committed Oct 16, 2023
1 parent cbcd4a0 commit 4de33d0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ci/test_cpp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ trap "EXITCODE=1" ERR
set +e

# Run libraft gtests from libraft-tests package
ctest -j8 --output-on-failure
for gt in "$CONDA_PREFIX"/bin/gtests/libraft/* ; do
test_name=$(basename ${gt})
echo "Running gtest $test_name"
${gt} --gtest_output=xml:${RAPIDS_TESTS_DIR}
done

rapids-logger "Test script exiting with value: $EXITCODE"
exit ${EXITCODE}

0 comments on commit 4de33d0

Please sign in to comment.