diff options
-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 ) |