From 9fe9c33efe1f859884b2dc8a57abd4c2b0410d02 Mon Sep 17 00:00:00 2001 From: Jeremy Wei Date: Tue, 2 Apr 2024 11:29:24 -0400 Subject: [PATCH] reduce prints --- run_blocktests.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/run_blocktests.sh b/run_blocktests.sh index 3d5a937be..9e60a5c37 100755 --- a/run_blocktests.sh +++ b/run_blocktests.sh @@ -55,10 +55,6 @@ i=0 # for each json file, run the block test for test_path in $block_tests; do test_name=$(basename "$test_path" .json) - # test_path=$(echo "$test_path") - echo "test file: $test_path" - echo "test dir: $test_path" - match_found=false # Iterate through the test_path_run_list to check for a match @@ -74,6 +70,9 @@ for test_path in $block_tests; do continue fi + echo "test file: $test_path" + echo "test dir: $test_path" + # Check if the test name is in the skip list if printf '%s\n' "${test_name_skip_list[@]}" | grep -qx "$test_name"; then echo "Skipping test in skip list: $test_path"