Skip to content

Commit ed8a979

Browse files
committed
Make Firebase C++ windows tests use debug
Some of the tests rely on assert, which only works when building for debug. PiperOrigin-RevId: 289912374
1 parent 9f9a295 commit ed8a979

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test_windows_x32.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ EXIT /B %status%
5656
exit /b %errorlevel%
5757
)
5858

59-
cmake --build . --config Release
59+
cmake --build . --config Debug
6060

6161
:: Again, check for errors, and return if there were any
6262
if %errorlevel% neq 0 (

test_windows_x64.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ EXIT /B %status%
5656
exit /b %errorlevel%
5757
)
5858

59-
cmake --build . --config Release
59+
cmake --build . --config Debug
6060

6161
:: Again, check for errors, and return if there were any
6262
if %errorlevel% neq 0 (

0 commit comments

Comments
 (0)