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 /build_files/windows/test.cmd
parent38d62a195b293e1a826195eeb222bb0825f9733a (diff)
Build: add "make test" command for Windows, output log file
Differential Revision: https://developer.blender.org/D5715
Diffstat (limited to 'build_files/windows/test.cmd')
-rw-r--r--build_files/windows/test.cmd13
1 files changed, 13 insertions, 0 deletions
diff --git a/build_files/windows/test.cmd b/build_files/windows/test.cmd
new file mode 100644
index 00000000000..cad6b50e8bb
--- /dev/null
+++ b/build_files/windows/test.cmd
@@ -0,0 +1,13 @@
+if EXIST %PYTHON% (
+ goto detect_python_done
+)
+
+echo python not found in lib folder
+exit /b 1
+
+:detect_python_done
+
+REM Use -B to avoid writing __pycache__ in lib directory and causing update conflicts.
+%PYTHON% -B %BLENDER_DIR%\build_files\utils\make_test.py --git-command "%GIT%" --svn-command "%SVN%" --cmake-command="%CMAKE%" --ctest-command="%CTEST%" --config="%BUILD_TYPE%" %BUILD_DIR%
+
+:EOF