We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4bbc65 commit 4c98be3Copy full SHA for 4c98be3
tests/run_standalone_tests.sh
@@ -70,7 +70,8 @@ pids=() # array of PID for running tests
70
test_ids=() # array of indexes of running tests
71
printf "Running $test_count tests in batches of $test_batch_size\n"
72
for i in "${!tests[@]}"; do
73
- test=${tests[$i]}
+ # remove initial "tests/" from the test name
74
+ test=${tests[$i]/tests\//}
75
printf "Running test $((i+1))/$test_count: $test\n"
76
77
# execute the test in the background
0 commit comments