aboutsummaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorAlex Beregszaszi <alex@rtfs.hu>2017-02-08 01:40:26 +0800
committerAlex Beregszaszi <alex@rtfs.hu>2017-02-08 01:40:26 +0800
commit9c3b28e21e78519c280c076b0756413422ad5eeb (patch)
tree24632fc8c2da563096a2cf774017eb00062e6ff4 /scripts
parentf48b9e856322b9727469dd907217fe41b2589b9d (diff)
downloaddexon-solidity-9c3b28e21e78519c280c076b0756413422ad5eeb.tar
dexon-solidity-9c3b28e21e78519c280c076b0756413422ad5eeb.tar.gz
dexon-solidity-9c3b28e21e78519c280c076b0756413422ad5eeb.tar.bz2
dexon-solidity-9c3b28e21e78519c280c076b0756413422ad5eeb.tar.lz
dexon-solidity-9c3b28e21e78519c280c076b0756413422ad5eeb.tar.xz
dexon-solidity-9c3b28e21e78519c280c076b0756413422ad5eeb.tar.zst
dexon-solidity-9c3b28e21e78519c280c076b0756413422ad5eeb.zip
Fix tests on mac (wc produces whitespace)
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/tests.sh2
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