Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 2006a77

Browse files
committed
Fix run-test.sh to find all test projects
run-test.sh is currently looking for test projects of the form src/**/tests/*.csproj, but some of our projects are nested a level down from that, e.g. src/**/tests/something/*.csproj.
1 parent d9ad8dc commit 2006a77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ create_test_overlay
269269
TestsFailed=0
270270
numberOfProcesses=0
271271
maxProcesses=$(($(getconf _NPROCESSORS_ONLN)+1))
272-
for file in src/**/tests/*.Tests.csproj
272+
for file in src/**/tests/**/*.Tests.csproj
273273
do
274274
runtest $file &
275275
pids="$pids $!"

0 commit comments

Comments
 (0)