diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2018-03-29 08:53:56 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-29 08:53:56 +0800 |
commit | c2ae33f8067c2ed2a70a86f9e29cce06e23af28a (patch) | |
tree | cb6a57d921d7dd45fd78ab4f5a51e71ee1ff0c28 /test | |
parent | 3bb54e8bd5ea75bd52d2eca43fd438f8e894a2de (diff) | |
parent | 8a18f22b878b86fff8e2f49a99397320180d4b22 (diff) | |
download | dexon-solidity-c2ae33f8067c2ed2a70a86f9e29cce06e23af28a.tar dexon-solidity-c2ae33f8067c2ed2a70a86f9e29cce06e23af28a.tar.gz dexon-solidity-c2ae33f8067c2ed2a70a86f9e29cce06e23af28a.tar.bz2 dexon-solidity-c2ae33f8067c2ed2a70a86f9e29cce06e23af28a.tar.lz dexon-solidity-c2ae33f8067c2ed2a70a86f9e29cce06e23af28a.tar.xz dexon-solidity-c2ae33f8067c2ed2a70a86f9e29cce06e23af28a.tar.zst dexon-solidity-c2ae33f8067c2ed2a70a86f9e29cce06e23af28a.zip |
Merge pull request #3754 from AnthonyBroadCrawford/error-on-missing-file
Error on non existing or irregular files
Diffstat (limited to 'test')
-rwxr-xr-x | test/cmdlineTests.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cmdlineTests.sh b/test/cmdlineTests.sh index 92f9569a..1137c7b0 100755 --- a/test/cmdlineTests.sh +++ b/test/cmdlineTests.sh @@ -32,7 +32,7 @@ REPO_ROOT=$(cd $(dirname "$0")/.. && pwd) echo $REPO_ROOT SOLC="$REPO_ROOT/build/solc/solc" -FULLARGS="--optimize --combined-json abi,asm,ast,bin,bin-runtime,clone-bin,compact-format,devdoc,hashes,interface,metadata,opcodes,srcmap,srcmap-runtime,userdoc" +FULLARGS="--optimize --ignore-missing --combined-json abi,asm,ast,bin,bin-runtime,clone-bin,compact-format,devdoc,hashes,interface,metadata,opcodes,srcmap,srcmap-runtime,userdoc" echo "Checking that the bug list is up to date..." "$REPO_ROOT"/scripts/update_bugs_by_version.py |