diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-02-08 01:40:26 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2017-02-08 01:40:26 +0800 |
commit | 9c3b28e21e78519c280c076b0756413422ad5eeb (patch) | |
tree | 24632fc8c2da563096a2cf774017eb00062e6ff4 /scripts/tests.sh | |
parent | f48b9e856322b9727469dd907217fe41b2589b9d (diff) | |
download | dexon-solidity-9c3b28e21e78519c280c076b0756413422ad5eeb.tar.gz dexon-solidity-9c3b28e21e78519c280c076b0756413422ad5eeb.tar.zst dexon-solidity-9c3b28e21e78519c280c076b0756413422ad5eeb.zip |
Fix tests on mac (wc produces whitespace)
Diffstat (limited to 'scripts/tests.sh')
-rwxr-xr-x | scripts/tests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/tests.sh b/scripts/tests.sh index f2142946..ba932da5 100755 --- a/scripts/tests.sh +++ b/scripts/tests.sh @@ -35,7 +35,7 @@ echo "Running commandline tests..." echo "Checking that StandardToken.sol, owned.sol and mortal.sol produce bytecode..." output=$("$REPO_ROOT"/build/solc/solc --bin "$REPO_ROOT"/std/*.sol 2>/dev/null | grep "ffff" | wc -l) -test "$output" = "3" +test "${output//[[:blank:]]/}" = "3" # This conditional is only needed because we don't have a working Homebrew # install for `eth` at the time of writing, so we unzip the ZIP file locally |