diff options
author | Bruce Forstall <Bruce_Forstall@msn.com> | 2019-01-03 19:11:47 -0800 |
---|---|---|
committer | Bruce Forstall <Bruce_Forstall@msn.com> | 2019-01-03 19:11:47 -0800 |
commit | b68b45451271c270c643ba4d96acf2a72e331647 (patch) | |
tree | 543ef5c6fd6494e8f8020d524e9b750b41ea3eb3 /tests | |
parent | 73d7d224ae6fb9b13bb641440c06606f426215cb (diff) | |
download | coreclr-b68b45451271c270c643ba4d96acf2a72e331647.tar.gz coreclr-b68b45451271c270c643ba4d96acf2a72e331647.tar.bz2 coreclr-b68b45451271c270c643ba4d96acf2a72e331647.zip |
Fix batch script errors running JitOptimizationSensitive tests
Simple typo: REN instead of REM, leading to:
"The syntax of the command is incorrect."
Diffstat (limited to 'tests')
-rw-r--r-- | tests/src/CLRTest.Execute.Batch.targets | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/CLRTest.Execute.Batch.targets b/tests/src/CLRTest.Execute.Batch.targets index 34a2e21e30..49414dfd0a 100644 --- a/tests/src/CLRTest.Execute.Batch.targets +++ b/tests/src/CLRTest.Execute.Batch.targets @@ -88,7 +88,7 @@ REM REM TieredCompilation will use minopts. Therefore it is also included in this REM set. Unlike the rest, TieredCompilation=0 should run the JitOptimizationSensitive REM tests. The following cannot run the test. -REN +REM REM TieredCompilation=1 REM TieredCompilation= IF "%COMPlus_JitStress%"=="" IF "%COMPlus_JitStressRegs%"=="" IF "%COMPlus_JITMinOpts%"=="" IF "%COMPlus_TailcallStress%"=="" goto :Compatible |