File tree 3 files changed +7
-1
lines changed
3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 6
6
* .user
7
7
* .i
8
8
Build /VCBuild /
9
+ Build /VCBuild.NoJIT /
9
10
Build /ipch /
10
11
Build /.vs /
11
12
build_ * .log
Original file line number Diff line number Diff line change @@ -51,6 +51,11 @@ if not "%1"=="" (
51
51
goto :ContinueArgParse
52
52
)
53
53
54
+ if " %1 " == " -disablejit" (
55
+ set _NoJIT = .NoJIT
56
+ REM fallthrough to default (also add this to %_ExtraTestArgs%)
57
+ )
58
+
54
59
:: default
55
60
set _ExtraTestArgs = %_ExtraTestArgs% %1
56
61
shift
Original file line number Diff line number Diff line change 29
29
setlocal
30
30
31
31
set _RootDir = %~dp0 ..
32
- set _BinDir = %_RootDir% \Build\VcBuild\bin
33
32
set _HadFailures = 0
34
33
35
34
:: ============================================================================
@@ -48,6 +47,7 @@ set _HadFailures=0
48
47
call jenkins.parsetestargs.cmd %*
49
48
set _LogDir = %_TestDir% \logs\%_TestArch% _%_TestType%
50
49
set _TestArgs = %_TestArch%%_TestType%
50
+ set _BinDir = %_RootDir% \Build\VcBuild%_NoJIT% \bin
51
51
52
52
call :doSilent rd /s/q %_LogDir%
53
53
You can’t perform that action at this time.
0 commit comments