Skip to content

Commit 43f44f4

Browse files
author
dlsmith
committed
DynamicJava: Updated JLBench and plt.jar.
git-svn-id: file:///tmp/test-svn/trunk@4705 fe72c1cf-3628-48e9-8b72-1c46755d3cff
1 parent b31c480 commit 43f44f4

File tree

7 files changed

+7
-5
lines changed

7 files changed

+7
-5
lines changed

dynamicjava/build.xml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@
241241
<classpath>
242242
<fileset refid="libs" />
243243
<pathelement location="lib/buildlib/junit.jar" />
244-
<pathelement location="lib/buildlib/jlbench-base-15.jar" />
244+
<pathelement location="lib/buildlib/jlbench-base.jar" />
245245
<pathelement location="classes/base" />
246246
</classpath>
247247
<compilerarg value="-Xlint" />
@@ -420,7 +420,7 @@
420420
<classpath>
421421
<pathelement location="lib/buildlib/junit.jar" />
422422
<pathelement location="lib/buildlib/plt-ant.jar" /> <!-- required for custom formatter -->
423-
<pathelement location="lib/buildlib/jlbench-base-15.jar" />
423+
<pathelement location="lib/buildlib/jlbench-base.jar" />
424424
<pathelement location="${clover-jar}" />
425425
<pathelement location="classes/test" />
426426
<pathelement location="classes/base" />
@@ -499,7 +499,7 @@
499499
<classpath>
500500
<fileset refid="libs" />
501501
<pathelement location="lib/buildlib/junit.jar" />
502-
<pathelement location="lib/buildlib/jlbench-base-15.jar" />
502+
<pathelement location="lib/buildlib/jlbench-base.jar" />
503503
</classpath>
504504
<link href="http://java.sun.com/j2se/1.5/docs/api" />
505505
<link href="http://junit.org/junit/javadoc/3.8.1" />
@@ -567,6 +567,7 @@
567567
<auxclasspath>
568568
<pathelement location="classes/lib" />
569569
<pathelement location="lib/buildlib/junit.jar" />
570+
<pathelement location="lib/buildlib/jlbench-base.jar" />
570571
</auxclasspath>
571572
</findbugs>
572573
<delete file="findbugs-excludes.xml" />
-83.8 KB
Binary file not shown.
-83.2 KB
Binary file not shown.
82.8 KB
Binary file not shown.

dynamicjava/lib/plt.jar

54.5 KB
Binary file not shown.

dynamicjava/lib/readme.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,12 @@ buildlib/*.jar: Binaries used in the build process, but that should not be part
66
VERSIONS:
77

88
asm-3.1.jar: ASM 3.1 (http://asm.objectweb.org)
9-
plt.jar: plt-20080709-2123
9+
plt.jar: plt-20090115-r4703
1010

1111
buildlib/ant-contrib.jar: ANT Contrib 1.0b3
1212
buildlib/astgen.jar: astgen-20060419-1726
1313
buildlib/cenquatasks.jar: Distributed with Clover 1.3.9
1414
buildlib/findbugs-ant.jar: FindBugs 1.3.1
15+
buildlib/jlbench-base.jar: jlbench-20090115-r4
1516
buildlib/junit.jar: JUnit 3.8.1
1617
buildlib/plt-ant.jar: plt-ant-20070212-2001

dynamicjava/src/edu/rice/cs/dynamicjava/interpreter/TopLevelTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class TopLevelTest {
3232

3333
public static Test suite() throws IOException {
3434
Iterable<String> excludes = IterUtil.asIterable(notYetSupported);
35-
ZipFile jlbenchJar = new ZipFile("lib/buildlib/jlbench-base-14.jar");
35+
ZipFile jlbenchJar = new ZipFile("lib/buildlib/jlbench-base.jar");
3636
LinkedList<Iterable<Benchmark>> benchmarks = new LinkedList<Iterable<Benchmark>>();
3737
benchmarks.add(JLBench.benchmarksForZipEntries(jlbenchJar, "edu/rice/cs/jlbench/benchmarks/java/", excludes));
3838
benchmarks.add(JLBench.benchmarksForZipEntries(jlbenchJar, "edu/rice/cs/jlbench/benchmarks/java5/", excludes));

0 commit comments

Comments
 (0)