Skip to content

Commit

Permalink
Remove unneeded script parameters in test_cpp_memcheck.sh (#15158)
Browse files Browse the repository at this point in the history
Fixes error introduced in #14992 in `test_cpp_memcheck.sh`
Extra line of parameters removed from the call to `run_cudf_memcheck_ctests.sh`

Authors:
  - David Wendt (https://github.com/davidwendt)
  - https://github.com/jakirkham

Approvers:
  - Bradley Dice (https://github.com/bdice)
  - Vyas Ramasubramani (https://github.com/vyasr)
  - Ray Douglass (https://github.com/raydouglass)

URL: #15158
  • Loading branch information
davidwendt committed Feb 29, 2024
1 parent 1a3b789 commit 15f11e1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions ci/test_cpp_memcheck.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@ 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=$?;
./ci/run_cudf_memcheck_ctests.sh && EXITCODE=$? || EXITCODE=$?;

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

0 comments on commit 15f11e1

Please sign in to comment.