From 8f541b8efd9a779b19f29593e93e9af6a543c7f0 Mon Sep 17 00:00:00 2001 From: David Wendt Date: Tue, 27 Feb 2024 13:45:39 -0500 Subject: [PATCH 1/2] Remove unneeded script parameters in test_cpp_memcheck.sh --- ci/test_cpp_memcheck.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/ci/test_cpp_memcheck.sh b/ci/test_cpp_memcheck.sh index 0233c2b55f8..8eac1b07a40 100755 --- a/ci/test_cpp_memcheck.sh +++ b/ci/test_cpp_memcheck.sh @@ -9,7 +9,6 @@ source ./ci/test_cpp_common.sh rapids-logger "Memcheck gtests with rmm_mode=cuda" ./ci/run_cudf_memcheck_ctests.sh \ - --gtest_output=xml:"${RAPIDS_TESTS_DIR}${test_name}.xml" \ && EXITCODE=$? || EXITCODE=$?; rapids-logger "Test script exiting with value: $EXITCODE" From 9b9750985ab343420a262eec94b47e0d840dbc13 Mon Sep 17 00:00:00 2001 From: David Wendt Date: Tue, 27 Feb 2024 15:06:35 -0500 Subject: [PATCH 2/2] remove continuation line --- ci/test_cpp_memcheck.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ci/test_cpp_memcheck.sh b/ci/test_cpp_memcheck.sh index 8eac1b07a40..fda11c64155 100755 --- a/ci/test_cpp_memcheck.sh +++ b/ci/test_cpp_memcheck.sh @@ -8,8 +8,7 @@ source ./ci/test_cpp_common.sh rapids-logger "Memcheck gtests with rmm_mode=cuda" -./ci/run_cudf_memcheck_ctests.sh \ - && EXITCODE=$? || EXITCODE=$?; +./ci/run_cudf_memcheck_ctests.sh && EXITCODE=$? || EXITCODE=$?; rapids-logger "Test script exiting with value: $EXITCODE" exit ${EXITCODE}