From 6472662d6661a447be37588ade2d12e3eea97e79 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Thu, 12 Sep 2019 20:13:47 +0200 Subject: Build: add "make test" command for Windows, output log file Differential Revision: https://developer.blender.org/D5715 --- build_files/windows/test.cmd | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 build_files/windows/test.cmd (limited to 'build_files/windows/test.cmd') 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 -- cgit v1.2.3