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

Commit bc0b967

Browse files
committed
Check test build on non-Windows, also.
1 parent f662ed3 commit bc0b967

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

build-test.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,20 @@ build_Tests()
252252
echo "${__MsgPrefix}Error: build failed. Refer to the build log files for details (above)"
253253
exit 1
254254
else
255+
echo "Checking the Managed Tests Build..."
256+
257+
if [ -n __priority1 ]; then
258+
__Priority=1
259+
else
260+
__Priority=0
261+
fi
262+
build_Tests_internal "Check_Test_Build" "${__ProjectDir}/tests/runtest.proj" "Check Test Build" "/t:CheckTestBuild /p:Priority=$__Priority"
263+
264+
if [ $? -ne 0 ]; then
265+
echo "${__MsgPrefix}Error: Check Test Build failed."
266+
exit 1
267+
fi
268+
255269
echo "Managed tests build success!"
256270
fi
257271

0 commit comments

Comments
 (0)