diff options
author | Aditya Mandaleeka <adityamandaleeka@users.noreply.github.com> | 2017-03-21 12:01:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-21 12:01:53 -0700 |
commit | fc992064a8746119a5f153279838d0cd791fced7 (patch) | |
tree | b78635604861c44fd350608e14c06a99854066dc /tests/src | |
parent | b635982b6c8dfcf5cb5d2116a155b2ae7b913b2d (diff) | |
parent | c4adbaa01ccb897008c4ef73f29a90f89d2c0291 (diff) | |
download | coreclr-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/src')
-rw-r--r-- | tests/src/CLRTest.Execute.Bash.targets | 4 |
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 |