@@ -61,7 +61,6 @@ param (
6161 [switch ]$testVs ,
6262 [switch ]$testAll ,
6363 [switch ]$testAllButIntegration ,
64- [switch ]$testAllButIntegrationAndAot ,
6564 [switch ]$testpack ,
6665 [switch ]$testAOT ,
6766 [switch ]$testBenchmarks ,
@@ -105,7 +104,6 @@ function Print-Usage() {
105104 Write-Host " Test actions"
106105 Write-Host " -testAll Run all tests"
107106 Write-Host " -testAllButIntegration Run all but integration tests"
108- Write-Host " -testAllButIntegrationAndAot Run all but integration and AOT tests"
109107 Write-Host " -testCambridge Run Cambridge tests"
110108 Write-Host " -testCompiler Run FSharpCompiler unit tests"
111109 Write-Host " -testCompilerService Run FSharpCompilerService unit tests"
@@ -172,19 +170,9 @@ function Process-Arguments() {
172170 $script :testAOT = $True
173171 }
174172
175- if ($testAllButIntegrationAndAot ) {
176- $script :testDesktop = $True
177- $script :testCoreClr = $True
178- $script :testFSharpQA = $True
179- $script :testIntegration = $False
180- $script :testVs = $True
181- $script :testAOT = $False
182- }
183-
184173 if ([System.Boolean ]::Parse($script :officialSkipTests )) {
185174 $script :testAll = $False
186175 $script :testAllButIntegration = $False
187- $script :testAllButIntegrationAndAot = $False
188176 $script :testCambridge = $False
189177 $script :testCompiler = $False
190178 $script :testCompilerService = $False
0 commit comments