diff --git a/test/cuda-memcheck.test b/test/cuda-memcheck.test index bd458f815..8d7bde2cf 100755 --- a/test/cuda-memcheck.test +++ b/test/cuda-memcheck.test @@ -6,14 +6,13 @@ RUNFILE="inputs/input.dtconst.2iters.cyl.ini" @test "[$TEST] verify cuda-memcheck detects known error" { test -e ./badcuda - run /usr/local/cuda/bin/cuda-memcheck --error-exitcode 1 ./badcuda + run /usr/local/cuda/bin/compute-sanitizer --error-exitcode 1 ./badcuda [[ "${status}" -eq 1 ]] } @test "[$TEST] run tps with input -> $RUNFILE under cuda-memcheck" { test -s $RUNFILE - /usr/local/cuda/bin/cuda-memcheck --error-exitcode 1 ../src/tps $OPTS --runFile $RUNFILE - + ../libtool --mode=execute /usr/local/cuda/bin/compute-sanitizer --error-exitcode 1 ../src/tps --runFile $RUNFILE }