Skip to content

Commit

Permalink
reduce prints
Browse files Browse the repository at this point in the history
  • Loading branch information
jewei1997 committed Apr 2, 2024
1 parent c1d2208 commit 9fe9c33
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions run_blocktests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down

0 comments on commit 9fe9c33

Please sign in to comment.