diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2017-01-26 22:42:34 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-26 22:42:34 +0800 |
commit | 102fd7ee5daeb7d7a7bb1254cf0ce71a23ad1220 (patch) | |
tree | 0ad00aad0ed6e5dfb382b4a7443772319ec15d34 /scripts/tests.sh | |
parent | 024061b8280d51a11d91dc3347603c9281224705 (diff) | |
parent | f610ba77a493f8a6f270c72222d34eedfb183722 (diff) | |
download | dexon-solidity-102fd7ee5daeb7d7a7bb1254cf0ce71a23ad1220.tar dexon-solidity-102fd7ee5daeb7d7a7bb1254cf0ce71a23ad1220.tar.gz dexon-solidity-102fd7ee5daeb7d7a7bb1254cf0ce71a23ad1220.tar.bz2 dexon-solidity-102fd7ee5daeb7d7a7bb1254cf0ce71a23ad1220.tar.lz dexon-solidity-102fd7ee5daeb7d7a7bb1254cf0ce71a23ad1220.tar.xz dexon-solidity-102fd7ee5daeb7d7a7bb1254cf0ce71a23ad1220.tar.zst dexon-solidity-102fd7ee5daeb7d7a7bb1254cf0ce71a23ad1220.zip |
Merge pull request #1604 from ethereum/checksums
Warn about invalid checksums of addresses.
Diffstat (limited to 'scripts/tests.sh')
-rwxr-xr-x | scripts/tests.sh | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/scripts/tests.sh b/scripts/tests.sh index dfbda734..cf18cb26 100755 --- a/scripts/tests.sh +++ b/scripts/tests.sh @@ -30,20 +30,8 @@ set -e REPO_ROOT="$(dirname "$0")"/.. - # Compile all files in std and examples. - -for f in "$REPO_ROOT"/std/*.sol -do - echo "Compiling $f..." - set +e - output=$("$REPO_ROOT"/build/solc/solc "$f" 2>&1) - failed=$? - # Remove the pre-release warning from the compiler output - output=$(echo "$output" | grep -v 'pre-release') - echo "$output" - set -e - test -z "$output" -a "$failed" -eq 0 -done +echo "Running commandline tests..." +"$REPO_ROOT/test/cmdlineTests.sh" # 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 |