Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-09-12 21:13:47 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-09-12 21:23:03 +0300
commit6472662d6661a447be37588ade2d12e3eea97e79 (patch)
tree2a18d7f8fe743560e070dbbfc8bae086db046bbf /make.bat
parent38d62a195b293e1a826195eeb222bb0825f9733a (diff)
Build: add "make test" command for Windows, output log file
Differential Revision: https://developer.blender.org/D5715
Diffstat (limited to 'make.bat')
-rw-r--r--make.bat5
1 files changed, 5 insertions, 0 deletions
diff --git a/make.bat b/make.bat
index 3f09718ab4f..ea80bd591f7 100644
--- a/make.bat
+++ b/make.bat
@@ -63,6 +63,11 @@ echo Building blender with VS%BUILD_VS_YEAR% for %BUILD_ARCH% in %BUILD_DIR%
call "%BLENDER_DIR%\build_files\windows\check_libraries.cmd"
if errorlevel 1 goto EOF
+if "%TEST%" == "1" (
+ call "%BLENDER_DIR%\build_files\windows\test.cmd"
+ goto EOF
+)
+
call "%BLENDER_DIR%\build_files\windows\check_submodules.cmd"
if errorlevel 1 goto EOF