Merge pull request #8692 from ethereum/fix-missing-details-in-cmdlinetests-error-messages

Fix missing details in some error messages in cmdlineTests.sh
This commit is contained in:
Leonardo 2020-04-17 18:27:03 +02:00 committed by GitHub
commit 96ea8b3148
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -214,7 +214,7 @@ printTask "Testing unknown options..."
then
echo "Passed"
else
printError "Incorrect response to unknown options: $STDERR"
printError "Incorrect response to unknown options: $output"
exit 1
fi
)
@ -385,7 +385,7 @@ SOLTMPDIR=$(mktemp -d)
# This should fail
if [[ !("$output" =~ "No input files given") || ($result == 0) ]]
then
printError "Incorrect response to empty input arg list: $STDERR"
printError "Incorrect response to empty input arg list: $output"
exit 1
fi