From c7fa564c900221e8faa70838b7267e16e1d5c03b Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Tue, 6 Feb 2024 18:29:31 -0600 Subject: [PATCH 1/2] Ensure that `ctest` is called with `--no-tests=error`. --- ci/test_cpp.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/test_cpp.sh b/ci/test_cpp.sh index 30172b76f01..9bea0a1df88 100755 --- a/ci/test_cpp.sh +++ b/ci/test_cpp.sh @@ -12,14 +12,14 @@ export GTEST_OUTPUT=xml:${RAPIDS_TESTS_DIR}/ pushd $CONDA_PREFIX/bin/gtests/libcudf/ rapids-logger "Run libcudf gtests" -ctest -j20 --output-on-failure +ctest -j20 --output-on-failure --no-tests=error SUITEERROR=$? popd if (( ${SUITEERROR} == 0 )); then pushd $CONDA_PREFIX/bin/gtests/libcudf_kafka/ rapids-logger "Run libcudf_kafka gtests" - ctest -j20 --output-on-failure + ctest -j20 --output-on-failure --no-tests=error SUITEERROR=$? popd fi From 1f9c2218fdda6fe1d084decc1582811471ad708d Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Wed, 7 Feb 2024 09:39:29 -0600 Subject: [PATCH 2/2] Update copyright. --- ci/test_cpp.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/test_cpp.sh b/ci/test_cpp.sh index 9bea0a1df88..7119a79f4de 100755 --- a/ci/test_cpp.sh +++ b/ci/test_cpp.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright (c) 2022-2023, NVIDIA CORPORATION. +# Copyright (c) 2022-2024, NVIDIA CORPORATION. source "$(dirname "$0")/test_cpp_common.sh"