From d0333e7521d040d28717747718c3d795e2e25f2b Mon Sep 17 00:00:00 2001 From: Bengu Li Date: Sun, 22 Feb 2015 09:45:50 -0800 Subject: [PATCH] Change alternative JIT name to LLILC --- tests/runtest.cmd | 6 +++--- tests/src/dir.props | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/runtest.cmd b/tests/runtest.cmd index 5c9d887..37ab137 100644 --- a/tests/runtest.cmd +++ b/tests/runtest.cmd @@ -8,7 +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" == "EnableLLILC" (set __EnableLLILC=true&shift&goto Arg_Loop) if /i "%1" == "/?" (goto Usage) @@ -128,12 +128,12 @@ goto :eof :Usage echo. echo Usage: -echo %0 BuildArch BuildType [SkipWrapperGeneration] CORE_ROOT where: +echo %0 BuildArch BuildType [SkipWrapperGeneration] [EnableLLILC] CORE_ROOT where: 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 EnableLLILC- Optional parameter this will use LLILC JIT, an alternative JIT for testing echo CORE_ROOT The path to the runtime goto :eof diff --git a/tests/src/dir.props b/tests/src/dir.props index c8f86c4..6542e09 100644 --- a/tests/src/dir.props +++ b/tests/src/dir.props @@ -9,9 +9,9 @@ false - + - <_CLRTestPreCommands>IF NOT "%__EnableMSILC%"=="" set COMPLus_AltJit=*;IF NOT "%__EnableMSILC%"=="" set COMPLus_AltJitName=MSILCJit.dll + <_CLRTestPreCommands>IF NOT "%__EnableLLILC%"=="" set COMPLus_AltJit=*;IF NOT "%__EnableLLILC%"=="" set COMPLus_AltJitName=LLILCJit.dll -- 2.7.4