Skip to content

Commit 63a1c9e

Browse files
authored
Ensure that ctest is called with --no-tests=error. (#14983)
This PR ensures that all calls to `ctest` include the flag `--no-tests=error`. See rapidsai/build-planning#18. Authors: - Bradley Dice (https://github.com/bdice) Approvers: - Jake Awe (https://github.com/AyodeAwe) URL: #14983
1 parent 41b9e5e commit 63a1c9e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ci/test_cpp.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Copyright (c) 2022-2023, NVIDIA CORPORATION.
2+
# Copyright (c) 2022-2024, NVIDIA CORPORATION.
33

44
source "$(dirname "$0")/test_cpp_common.sh"
55

@@ -12,14 +12,14 @@ export GTEST_OUTPUT=xml:${RAPIDS_TESTS_DIR}/
1212

1313
pushd $CONDA_PREFIX/bin/gtests/libcudf/
1414
rapids-logger "Run libcudf gtests"
15-
ctest -j20 --output-on-failure
15+
ctest -j20 --output-on-failure --no-tests=error
1616
SUITEERROR=$?
1717
popd
1818

1919
if (( ${SUITEERROR} == 0 )); then
2020
pushd $CONDA_PREFIX/bin/gtests/libcudf_kafka/
2121
rapids-logger "Run libcudf_kafka gtests"
22-
ctest -j20 --output-on-failure
22+
ctest -j20 --output-on-failure --no-tests=error
2323
SUITEERROR=$?
2424
popd
2525
fi

0 commit comments

Comments
 (0)