summaryrefslogtreecommitdiff
path: root/tests/src/CLRTest.Execute.Bash.targets
diff options
context:
space:
mode:
authorRoman Artemev <rartemev@microsoft.com>2017-05-23 15:34:53 -0700
committerRoman Artemev <rartemev@microsoft.com>2017-05-29 12:24:52 -0700
commitdf8dca2f2f3a5dd22b9db727e581a3c13fbe403a (patch)
tree3dcb2361d85e015ad21f133fe5ff85184a160594 /tests/src/CLRTest.Execute.Bash.targets
parentee454e11d0c73820dde10ab710f9d6eccd4471f1 (diff)
downloadcoreclr-df8dca2f2f3a5dd22b9db727e581a3c13fbe403a.tar.gz
coreclr-df8dca2f2f3a5dd22b9db727e581a3c13fbe403a.tar.bz2
coreclr-df8dca2f2f3a5dd22b9db727e581a3c13fbe403a.zip
Make linux test build worked
Diffstat (limited to 'tests/src/CLRTest.Execute.Bash.targets')
-rw-r--r--tests/src/CLRTest.Execute.Bash.targets8
1 files changed, 2 insertions, 6 deletions
diff --git a/tests/src/CLRTest.Execute.Bash.targets b/tests/src/CLRTest.Execute.Bash.targets
index f95408f512..a5727414b0 100644
--- a/tests/src/CLRTest.Execute.Bash.targets
+++ b/tests/src/CLRTest.Execute.Bash.targets
@@ -83,7 +83,7 @@ fi
]]></BashCLRTestEnvironmentCompatibilityCheck>
<BashCLRTestEnvironmentCompatibilityCheck Condition="'$(JitOptimizationSensitive)' == 'true'"><![CDATA[
$(BashCLRTestEnvironmentCompatibilityCheck)
-if [ \( ! -z "$COMPlus_JitStress" \) -o \( ! -z "$COMPlus_JitStressRegs" \) -o \( ! -z "$COMPlus_JITMinOpts" \) -o \( ! -z "$COMPlus_TailcallStress" \) ]
+if [[ ( ! -z "$COMPlus_JitStress" ) || ( ! -z "$COMPlus_JitStressRegs" ) || ( ! -z "$COMPlus_JITMinOpts" ) || ( ! -z "$COMPlus_TailcallStress" ) ]]
then
echo "SKIPPING EXECUTION BECAUSE ONE OR MORE OF (COMPlus_JitStress, COMPlus_JitStressRegs, COMPlus_JITMinOpts, COMPlus_TailcallStress) IS SET"
exit $(GCBashScriptExitCode)
@@ -133,7 +133,7 @@ fi
<Command><![CDATA[ export _DebuggerFullPath="${i#*=}"
if [ ! -f "$_DebuggerFullPath" ]
then
- echo The Debugger FullPath \"$_DebuggerFullPath\" doesn\'t exist
+ echo "The Debugger FullPath %5C%22${_DebuggerFullPath}%5C%22 does not exist"
usage
fi]]></Command>
<Description>Run testcases under debugger.</Description>
@@ -290,10 +290,6 @@ CLRTestExpectedExitCode=0
<!-- Raise an error if any value in _RequiredProperties is missing -->
<Error Condition=" '%(_RequiredProperties.Value)'=='' "
Text="Missing required test property [%(_RequiredProperties.Identity)]. Something isn't plumbed through correctly. Contact $(_CLRTestBuildSystemOwner)." />
- <!-- TODO: this is weird. Consider eliminating it. -->
- <GenerateParamList ArgumentItems="@(BashCLRTestExecutionScriptArgument)">
- <Output TaskParameter="ParamList" PropertyName="_CLRTestParamList"/>
- </GenerateParamList>
<PropertyGroup>
<!--
This generates the script portion to parse all of the command line arguments.