summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/src/CLRTest.Execute.Bash.targets6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/src/CLRTest.Execute.Bash.targets b/tests/src/CLRTest.Execute.Bash.targets
index da86a245f8..f0543f714a 100644
--- a/tests/src/CLRTest.Execute.Bash.targets
+++ b/tests/src/CLRTest.Execute.Bash.targets
@@ -132,7 +132,7 @@ fi
<ParamText>=*</ParamText> <!-- Bash specific -->
<ParamName>debuggerFullPath</ParamName>
<Command><![CDATA[ _DebuggerFullPath="${i#*=}"
- if [ ! -f DebuggerFullPath ]
+ if [ ! -f "$_DebuggerFullPath" ]
then
echo The Debugger FullPath \"$_DebuggerFullPath\" doesn\'t exist
usage
@@ -196,10 +196,10 @@ usage()
echo "Usage: $0 $(_CLRTestParamList)"
echo
echo "Arguments:"
-@(BatchCLRTestExecutionScriptArgument -> ' echo "-%(Identity) %(ParamName)"
+@(BatchCLRTestExecutionScriptArgument -> ' echo "-%(Identity)=%(ParamName)"
echo "%(Description)"', '
')
- echo " -?,-h,--help show this message"
+ echo "-?,-h,--help show this message"
exit 1
}