summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAditya Mandaleeka <adityamandaleeka@users.noreply.github.com>2017-03-21 12:01:53 -0700
committerGitHub <noreply@github.com>2017-03-21 12:01:53 -0700
commitfc992064a8746119a5f153279838d0cd791fced7 (patch)
treeb78635604861c44fd350608e14c06a99854066dc /tests
parentb635982b6c8dfcf5cb5d2116a155b2ae7b913b2d (diff)
parentc4adbaa01ccb897008c4ef73f29a90f89d2c0291 (diff)
downloadcoreclr-fc992064a8746119a5f153279838d0cd791fced7.tar.gz
coreclr-fc992064a8746119a5f153279838d0cd791fced7.tar.bz2
coreclr-fc992064a8746119a5f153279838d0cd791fced7.zip
Merge pull request #10254 from sdmaclea/PR-FIX-SCRIPT-ERROR
Fix script ERRORLEVEL typo
Diffstat (limited to 'tests')
-rw-r--r--tests/src/CLRTest.Execute.Bash.targets4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/CLRTest.Execute.Bash.targets b/tests/src/CLRTest.Execute.Bash.targets
index a9dafd226d..4471055e57 100644
--- a/tests/src/CLRTest.Execute.Bash.targets
+++ b/tests/src/CLRTest.Execute.Bash.targets
@@ -31,7 +31,7 @@ WARNING: When setting properties based on their current state (for example:
<![CDATA[
echo "$CORE_ROOT/ildasm" -raweh -out=$(DisassemblyName) $(InputAssemblyName)
"$CORE_ROOT/ildasm" -raweh -out=$(DisassemblyName) $(InputAssemblyName)
-_ERRORLEVEL=$?
+ERRORLEVEL=$?
if [ $ERRORLEVEL -ne 0 ]
then
echo EXECUTION OF ILDASM - FAILED $ERRORLEVEL
@@ -40,7 +40,7 @@ fi
echo "$CORE_ROOT/ilasm" -output=$(TargetAssemblyName) $(_IlasmSwitches) $(DisassemblyName)
"$CORE_ROOT/ilasm" -output=$(TargetAssemblyName) $(_IlasmSwitches) $(DisassemblyName)
-_ERRORLEVEL=$?
+ERRORLEVEL=$?
if [ $ERRORLEVEL -ne 0 ]
then
echo EXECUTION OF ILASM - FAILED $ERRORLEVEL