Skip to content

Commit

Permalink
Make Firebase C++ windows tests use debug
Browse files Browse the repository at this point in the history
Some of the tests rely on assert, which only works when building for debug.

PiperOrigin-RevId: 289912374
  • Loading branch information
a-maurice committed Jan 23, 2020
1 parent 9f9a295 commit ed8a979
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test_windows_x32.bat
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ EXIT /B %status%
exit /b %errorlevel%
)

cmake --build . --config Release
cmake --build . --config Debug

:: Again, check for errors, and return if there were any
if %errorlevel% neq 0 (
Expand Down
2 changes: 1 addition & 1 deletion test_windows_x64.bat
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ EXIT /B %status%
exit /b %errorlevel%
)

cmake --build . --config Release
cmake --build . --config Debug

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

0 comments on commit ed8a979

Please sign in to comment.