From 69e0b98fea6e471d0c6504548e6c6bb1e36f0c63 Mon Sep 17 00:00:00 2001 From: gongweibao Date: Tue, 15 Oct 2019 18:48:31 +0800 Subject: [PATCH] Cleanup the debug lines in paddle_build.sh (#20631) --- paddle/scripts/paddle_build.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/paddle/scripts/paddle_build.sh b/paddle/scripts/paddle_build.sh index 6b2028d8fe2..ed89e9b1548 100755 --- a/paddle/scripts/paddle_build.sh +++ b/paddle/scripts/paddle_build.sh @@ -620,18 +620,14 @@ function card_test() { done if [ ${TESTING_DEBUG_MODE:-OFF} == "ON" ] ; then if [[ $cardnumber == $CUDA_DEVICE_COUNT ]]; then - echo "ctest -I $i,,$NUM_PROC -R \"($testcases)\" -V &" ctest -I $i,,$NUM_PROC -R "($testcases)" -V & else - echo "env CUDA_VISIBLE_DEVICES=$cuda_list ctest -I $i,,$NUM_PROC -R \"($testcases)\" &" env CUDA_VISIBLE_DEVICES=$cuda_list ctest -I $i,,$NUM_PROC -R "($testcases)" -V & fi else if [[ $cardnumber == $CUDA_DEVICE_COUNT ]]; then - echo "ctest -I $i,,$NUM_PROC -R \"($testcases)\" --output-on-failure &" ctest -I $i,,$NUM_PROC -R "($testcases)" --output-on-failure & else - echo "env CUDA_VISIBLE_DEVICES=$cuda_list ctest -I $i,,$NUM_PROC -R \"($testcases)\" --output-on-failure &" env CUDA_VISIBLE_DEVICES=$cuda_list ctest -I $i,,$NUM_PROC -R "($testcases)" --output-on-failure & fi fi -- GitLab