From 2cfe88a0d938ec4715785ee2a529266519078001 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 b204c1dc59b..1800dd57951 100755 --- a/ci/test_cpp.sh +++ b/ci/test_cpp.sh @@ -47,11 +47,11 @@ export GTEST_OUTPUT=xml:${RAPIDS_TESTS_DIR}/ # Run libcugraph gtests from libcugraph-tests package rapids-logger "Run gtests" cd "$CONDA_PREFIX"/bin/gtests/libcugraph/ -ctest -j10 --output-on-failure +ctest -j10 --output-on-failure --no-tests=error if [ -d "$CONDA_PREFIX"/bin/gtests/libcugraph_c/ ]; then cd "$CONDA_PREFIX"/bin/gtests/libcugraph_c/ - ctest -j10 --output-on-failure + ctest -j10 --output-on-failure --no-tests=error fi rapids-logger "Test script exiting with value: $EXITCODE" From e75b001a3bb54753b0fa611bca247e043a9b017c Mon Sep 17 00:00:00 2001 From: Bradley Dice Date: Wed, 7 Feb 2024 09:39:22 -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 1800dd57951..39fff52bd94 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. set -euo pipefail