diff options
author | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2016-08-17 17:07:29 +0200 |
---|---|---|
committer | Andreas Fitzek <andreas.fitzek@iaik.tugraz.at> | 2016-08-17 17:07:29 +0200 |
commit | 7db9b6da2b44f333ba912224c2d1eddb0efb3a87 (patch) | |
tree | 9105321edc6d7f87f1ac39da22403eca7b7beb62 | |
parent | 70fd21aad5fa501051e562c04e4e419b88f83853 (diff) | |
download | pdf-as-4-7db9b6da2b44f333ba912224c2d1eddb0efb3a87.tar.gz pdf-as-4-7db9b6da2b44f333ba912224c2d1eddb0efb3a87.tar.bz2 pdf-as-4-7db9b6da2b44f333ba912224c2d1eddb0efb3a87.zip |
allow multiple test suites
-rw-r--r-- | pdf-as-tests/build.gradle | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pdf-as-tests/build.gradle b/pdf-as-tests/build.gradle index 9b14f7e2..b23b87d5 100644 --- a/pdf-as-tests/build.gradle +++ b/pdf-as-tests/build.gradle @@ -70,8 +70,7 @@ suiteDir.eachDir { File subDir -> if(dirname =="public_pdfbox1"){ classpath += sourceSets.pdfBox1.compileClasspath compileTestJava.classpath += sourceSets.pdfBox1.compileClasspath - } - if(dirname =="public_pdfbox2"){ + } else /* if(dirname =="public_pdfbox2")*/{ classpath += sourceSets.pdfBox2.compileClasspath compileTestJava.classpath += sourceSets.pdfBox2.compileClasspath } |