Skip to content

Commit 4c98be3

Browse files
committed
remove initial "tests/"
1 parent a4bbc65 commit 4c98be3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/run_standalone_tests.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ pids=() # array of PID for running tests
7070
test_ids=() # array of indexes of running tests
7171
printf "Running $test_count tests in batches of $test_batch_size\n"
7272
for i in "${!tests[@]}"; do
73-
test=${tests[$i]}
73+
# remove initial "tests/" from the test name
74+
test=${tests[$i]/tests\//}
7475
printf "Running test $((i+1))/$test_count: $test\n"
7576

7677
# execute the test in the background

0 commit comments

Comments
 (0)