diff options
author | chriseth <chris@ethereum.org> | 2018-11-14 16:58:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-14 16:58:42 +0800 |
commit | bf5b94587f5a6d4d631b91081608498a71362cf1 (patch) | |
tree | 52eec09708ee0b8a334d7c2abd0ff257eb28e4b5 | |
parent | 10d99fc378499fd48b3409d8ec97e33fb11937a6 (diff) | |
parent | 80fcd1aeb612b621aed4e937d50f10655dd6b1e5 (diff) | |
download | dexon-solidity-bf5b94587f5a6d4d631b91081608498a71362cf1.tar.gz dexon-solidity-bf5b94587f5a6d4d631b91081608498a71362cf1.tar.zst dexon-solidity-bf5b94587f5a6d4d631b91081608498a71362cf1.zip |
Merge pull request #5419 from ethereum/fixcmdlinetests
Fix commandline tests.
-rwxr-xr-x | test/cmdlineTests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cmdlineTests.sh b/test/cmdlineTests.sh index b0b545f3..4838d088 100755 --- a/test/cmdlineTests.sh +++ b/test/cmdlineTests.sh @@ -124,7 +124,7 @@ test_solc_file_input_failures() { set -e sed -i -e '/^Warning: This is a pre-release compiler version, please do not use it in production./d' "$stderr_path" - sed -i -e 's/ \?Consider adding "pragma .*$//' "$stderr_path" + sed -i -e 's/ Consider adding "pragma .*$//' "$stderr_path" if [[ $exitCode -eq 0 ]]; then printError "Incorrect exit code. Expected failure (non-zero) but got success (0)." |