diff options
author | androlo <androlo1980@gmail.com> | 2018-12-20 19:12:53 +0800 |
---|---|---|
committer | chriseth <chris@ethereum.org> | 2018-12-20 19:19:14 +0800 |
commit | 4487567629b74098fda23b56858a7aca89fe9fd3 (patch) | |
tree | 844af79263936bad0dc84a40048cb978dd13629d /test | |
parent | 8690898ac14d42efe1b3ee9e0ed6172e25acaba4 (diff) | |
download | dexon-solidity-4487567629b74098fda23b56858a7aca89fe9fd3.tar.gz dexon-solidity-4487567629b74098fda23b56858a7aca89fe9fd3.tar.zst dexon-solidity-4487567629b74098fda23b56858a7aca89fe9fd3.zip |
Only select directories to skip the README.
Diffstat (limited to 'test')
-rwxr-xr-x | test/cmdlineTests.sh | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/test/cmdlineTests.sh b/test/cmdlineTests.sh index ba352015..fc84d8a0 100755 --- a/test/cmdlineTests.sh +++ b/test/cmdlineTests.sh @@ -216,15 +216,12 @@ printTask "Running general commandline tests..." printTask "Compiling various other contracts and libraries..." ( cd "$REPO_ROOT"/test/compilationTests/ - for dir in * + for dir in */ do - if [ "$dir" != "README.md" ] - then - echo " - $dir" - cd "$dir" - compileFull -w *.sol */*.sol - cd .. - fi + echo " - $dir" + cd "$dir" + compileFull -w *.sol */*.sol + cd .. done ) |