File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,9 @@ set CUSTOM_CLANG_MODULE_CACHE=%build_root%\tmp\org.llvm.clang.9999
64
64
md %build_root% \tmp\org.swift.package-manager
65
65
set SWIFTPM_MODULECACHE_OVERRIDE = %build_root% \tmp\org.swift.package-manager
66
66
67
+ set RunTest = 1
68
+ if " %1 " == " -notest" set RunTest = 0
69
+
67
70
call :clone_repositories %exitOnError%
68
71
call :download_icu %exitOnError%
69
72
:: TODO: Disabled until we need LLBuild/SwiftPM in this build script.
@@ -83,8 +86,11 @@ path %PATH%;C:\Program Files\Git\usr\bin
83
86
call :build_libdispatch %exitOnError%
84
87
85
88
path %source_root% \icu-%icu_version% \bin64;%install_directory% \bin;%build_root% \swift\bin;%build_root% \swift\libdispatch-prefix\bin;%PATH%
86
- call :test_swift %exitOnError%
87
- call :test_libdispatch %exitOnError%
89
+
90
+ if %RunTest% == 1 (
91
+ call :test_swift %exitOnError%
92
+ call :test_libdispatch %exitOnError%
93
+ )
88
94
89
95
goto :end
90
96
endlocal
You can’t perform that action at this time.
0 commit comments