diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-06-12 01:12:23 +0800 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2018-06-12 03:11:10 +0800 |
commit | 99c585fd8a11ff6e10e7f59632dc060fd05065a1 (patch) | |
tree | 712caf7b19d391588aef1f5a25b9e58efaae4546 /test | |
parent | 81c5a6e466fd360c0a4805396137fc45f7b309c8 (diff) | |
download | dexon-solidity-99c585fd8a11ff6e10e7f59632dc060fd05065a1.tar dexon-solidity-99c585fd8a11ff6e10e7f59632dc060fd05065a1.tar.gz dexon-solidity-99c585fd8a11ff6e10e7f59632dc060fd05065a1.tar.bz2 dexon-solidity-99c585fd8a11ff6e10e7f59632dc060fd05065a1.tar.lz dexon-solidity-99c585fd8a11ff6e10e7f59632dc060fd05065a1.tar.xz dexon-solidity-99c585fd8a11ff6e10e7f59632dc060fd05065a1.tar.zst dexon-solidity-99c585fd8a11ff6e10e7f59632dc060fd05065a1.zip |
Remove obsolete 'std' directory
Diffstat (limited to 'test')
-rwxr-xr-x | test/cmdlineTests.sh | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/test/cmdlineTests.sh b/test/cmdlineTests.sh index 74b6a5a7..e8ff69de 100755 --- a/test/cmdlineTests.sh +++ b/test/cmdlineTests.sh @@ -37,10 +37,6 @@ FULLARGS="--optimize --ignore-missing --combined-json abi,asm,ast,bin,bin-runtim echo "Checking that the bug list is up to date..." "$REPO_ROOT"/scripts/update_bugs_by_version.py -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//[[:blank:]]/}" = "3" - function printTask() { echo "$(tput bold)$(tput setaf 2)$1$(tput sgr0)"; } function printError() { echo "$(tput setaf 1)$1$(tput sgr0)"; } @@ -113,14 +109,6 @@ do done ) -printTask "Compiling all files in std and examples..." - -for f in "$REPO_ROOT"/std/*.sol -do - echo "$f" - compileWithoutWarning "$f" -done - printTask "Compiling all examples from the documentation..." TMPDIR=$(mktemp -d) ( |