summaryrefslogtreecommitdiff
path: root/tests/src/CLRTest.Execute.Bash.targets
diff options
context:
space:
mode:
authorRoman Artemev <rartemev@microsoft.com>2017-03-08 15:37:31 -0800
committerRoman Artemev <rartemev@microsoft.com>2017-05-19 15:58:24 -0700
commitaad6903366ed6d70f218b92bfc762feb29a73773 (patch)
tree1370d2167bc6818b89a3a5b9669a23e3967751a0 /tests/src/CLRTest.Execute.Bash.targets
parent7c41871f582fedc751ee6cabd95df3fbad36d847 (diff)
downloadcoreclr-aad6903366ed6d70f218b92bfc762feb29a73773.tar.gz
coreclr-aad6903366ed6d70f218b92bfc762feb29a73773.tar.bz2
coreclr-aad6903366ed6d70f218b92bfc762feb29a73773.zip
Test build fixes for Linux
Diffstat (limited to 'tests/src/CLRTest.Execute.Bash.targets')
-rw-r--r--tests/src/CLRTest.Execute.Bash.targets9
1 files changed, 3 insertions, 6 deletions
diff --git a/tests/src/CLRTest.Execute.Bash.targets b/tests/src/CLRTest.Execute.Bash.targets
index f95408f512..34965a4efc 100644
--- a/tests/src/CLRTest.Execute.Bash.targets
+++ b/tests/src/CLRTest.Execute.Bash.targets
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
<!--
***********************************************************************************************
CLRTest.Execute.Bash.targets
@@ -83,7 +84,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 +134,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 +291,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.