From: Bengu Li Date: Fri, 13 Feb 2015 00:03:39 +0000 (-0800) Subject: Expand the availability of MSILC JIT to all tests X-Git-Tag: accepted/tizen/base/20180629.140029~7113^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2b054da5b0f0740c92f6bdd3c9093644a0a7cfb7;p=platform%2Fupstream%2Fcoreclr.git Expand the availability of MSILC JIT to all tests --- diff --git a/tests/runtest.cmd b/tests/runtest.cmd index 889b3c0..048f874 100644 --- a/tests/runtest.cmd +++ b/tests/runtest.cmd @@ -8,6 +8,7 @@ if /i "%1" == "x64" (set __BuildArch=x64&set __MSBuildBuildArch=x64&shift&got if /i "%1" == "debug" (set __BuildType=debug&shift&goto Arg_Loop) if /i "%1" == "release" (set __BuildType=release&shift&goto Arg_Loop) if /i "%1" == "SkipWrapperGeneration" (set __SkipWrapperGeneration=true&shift&goto Arg_Loop) +if /i "%1" == "EnableMSILC" (set __EnableMSILC=true&shift&goto Arg_Loop) if /i "%1" == "/?" (goto Usage) @@ -132,6 +133,7 @@ echo. echo BuildArch is x64 echo BuildType can be: Debug, Release echo SkipWrapperGeneration- Optional parameter this will run the same set of tests as the last time it was run +echo EnableMSILC- Optional parameter this will use MSILC JIT, an alternative JIT for testing echo CORE_ROOT The path to the runtime goto :eof diff --git a/tests/src/JIT/CodeGenBringUpTests/cs_template.proj b/tests/src/JIT/CodeGenBringUpTests/cs_template.proj index e283ed6..93788b3 100644 --- a/tests/src/JIT/CodeGenBringUpTests/cs_template.proj +++ b/tests/src/JIT/CodeGenBringUpTests/cs_template.proj @@ -21,9 +21,6 @@ - - <_CLRTestPreCommands>IF NOT "%DOMSILCTEST%"=="" set COMPLus_AltJit=*;IF NOT "%DOMSILCTEST%"=="" set COMPLus_AltJitName=MSILCJit.dll - False diff --git a/tests/src/JIT/Directed/Arrays/cs_template.proj b/tests/src/JIT/Directed/Arrays/cs_template.proj index e283ed6..93788b3 100644 --- a/tests/src/JIT/Directed/Arrays/cs_template.proj +++ b/tests/src/JIT/Directed/Arrays/cs_template.proj @@ -21,9 +21,6 @@ - - <_CLRTestPreCommands>IF NOT "%DOMSILCTEST%"=="" set COMPLus_AltJit=*;IF NOT "%DOMSILCTEST%"=="" set COMPLus_AltJitName=MSILCJit.dll - False diff --git a/tests/src/dir.props b/tests/src/dir.props index f3f8c6e..c8f86c4 100644 --- a/tests/src/dir.props +++ b/tests/src/dir.props @@ -9,5 +9,9 @@ false - + + + <_CLRTestPreCommands>IF NOT "%__EnableMSILC%"=="" set COMPLus_AltJit=*;IF NOT "%__EnableMSILC%"=="" set COMPLus_AltJitName=MSILCJit.dll + +