File tree Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Expand file tree Collapse file tree 1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change @@ -129,11 +129,22 @@ set _HadFailures=0
129
129
:: ============================================================================
130
130
:runTests
131
131
132
- arch=%1
133
- build=%2
132
+ :: save the architecture and build values, then obtain the rest of the arguments
133
+ set arch = %1
134
+ set build = %2
134
135
shift
135
136
shift
136
- call :do %_TestDir% \runtests.cmd -%arch% build %* -quiet -cleanupall -binDir %_StagingDir% \bin
137
+
138
+ set rest =
139
+ :rest_loop
140
+ if " %1 " == " " goto after_rest_loop
141
+ set rest = %rest% %1
142
+ shift
143
+ goto rest_loop
144
+
145
+ :after_rest_loop
146
+
147
+ call :do %_TestDir% \runtests.cmd -%arch%%build% %rest% -quiet -cleanupall -binDir %_StagingDir% \bin
137
148
138
149
if " %_error% " NEQ " 0" (
139
150
echo -- runcitests.cmd ^ > ^ > runtests.cmd failed
You can’t perform that action at this time.
0 commit comments