try to find jar file for travis tests

This commit is contained in:
Julian Dolby 2014-03-16 22:01:02 -04:00 committed by Michael Heilmann
parent 27adad8a04
commit eb8f94c61c

View File

@ -39,7 +39,14 @@ import com.ibm.wala.util.io.TemporaryFile;
public class DynamicCallGraphTest extends WalaTestCase {
private static final URL testJarLocation = DynamicCallGraphTest.class.getClassLoader().getResource("com.ibm.wala.core.testdata_1.0.0.jar");
private static URL testJarLocation;
static {
testJarLocation = DynamicCallGraphTest.class.getClassLoader().getResource("com.ibm.wala.core.testdata_1.0.0.jar");
if (testJarLocation == null) {
testJarLocation = DynamicCallGraphTest.class.getClassLoader().getResource("com.ibm.wala.core.testdata_1.3.4-SNAPSHOT.jar");
}
assert testJarLocation != null;
}
private boolean instrumentedJarBuilt = false;