aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-06-12 22:59:51 +0800
committerGitHub <noreply@github.com>2018-06-12 22:59:51 +0800
commit2c8eca5dcfc5f961615eb1673f150d3088954a46 (patch)
tree1925dc5206efd1c3f77eb8105e4c3b4df0239bd6 /test
parentcc62d7ce6a94a53684b60b846287782734324082 (diff)
parent99c585fd8a11ff6e10e7f59632dc060fd05065a1 (diff)
downloaddexon-solidity-2c8eca5dcfc5f961615eb1673f150d3088954a46.tar
dexon-solidity-2c8eca5dcfc5f961615eb1673f150d3088954a46.tar.gz
dexon-solidity-2c8eca5dcfc5f961615eb1673f150d3088954a46.tar.bz2
dexon-solidity-2c8eca5dcfc5f961615eb1673f150d3088954a46.tar.lz
dexon-solidity-2c8eca5dcfc5f961615eb1673f150d3088954a46.tar.xz
dexon-solidity-2c8eca5dcfc5f961615eb1673f150d3088954a46.tar.zst
dexon-solidity-2c8eca5dcfc5f961615eb1673f150d3088954a46.zip
Merge pull request #4265 from ethereum/remove-std
Remove obsolete 'std' directory
Diffstat (limited to 'test')
-rwxr-xr-xtest/cmdlineTests.sh12
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)
(