diff --git a/com.ibm.wala.core.tests/build.gradle b/com.ibm.wala.core.tests/build.gradle index 51eeacf07..b42b7f30c 100644 --- a/com.ibm.wala.core.tests/build.gradle +++ b/com.ibm.wala.core.tests/build.gradle @@ -23,6 +23,7 @@ dependencies { processTestResources { def testdata = project(':com.ibm.wala.core.testdata') + dependsOn testdata.compileTestJava dependsOn testdata.extractBcel dependsOn testdata.verifyJavaCup @@ -37,9 +38,9 @@ test { maxHeapSize = '800M' systemProperty 'com.ibm.wala.junit.analyzingJar', 'true' systemProperty 'com.ibm.wala.junit.profile', 'short' + classpath += files project(':com.ibm.wala.core.testdata').sourceSets.test.java.outputDir // https://github.com/liblit/WALA/issues/5 - exclude '**/DynamicCallGraphTest.class' exclude '**/PruneArrayOutOfBoundExceptionEdge.class' }