/hg/icedtea7-forest/jdk: 3 new changesets

andrew at icedtea.classpath.org andrew at icedtea.classpath.org
Thu Oct 15 20:44:53 UTC 2015


changeset dbb972937b50 in /hg/icedtea7-forest/jdk
details: http://icedtea.classpath.org/hg/icedtea7-forest/jdk?cmd=changeset;node=dbb972937b50
author: andrew
date: Thu Oct 15 17:54:38 2015 +0100

	Bump to icedtea-2.7.0pre03


changeset 7d05ba7a152c in /hg/icedtea7-forest/jdk
details: http://icedtea.classpath.org/hg/icedtea7-forest/jdk?cmd=changeset;node=7d05ba7a152c
author: andrew
date: Thu Oct 15 21:42:25 2015 +0100

	Added tag icedtea-2.7.0pre03 for changeset dbb972937b50


changeset e215e6dd96e7 in /hg/icedtea7-forest/jdk
details: http://icedtea.classpath.org/hg/icedtea7-forest/jdk?cmd=changeset;node=e215e6dd96e7
author: sla
date: Fri May 29 11:05:52 2015 +0200

	8081470, PR2674: com/sun/jdi tests are failing with "Error. failed to clean up files after test" with jtreg 4.1 b12
	Reviewed-by: mgerdin, brutisso, iignatyev


diffstat:

 .hgtags                                       |  2 +-
 make/jdk_generic_profile.sh                   |  2 +-
 test/com/sun/jdi/AllLineLocations.java        |  1 -
 test/com/sun/jdi/ClassesByName.java           |  1 -
 test/com/sun/jdi/ExceptionEvents.java         |  1 -
 test/com/sun/jdi/FilterMatch.java             |  1 -
 test/com/sun/jdi/FilterNoMatch.java           |  1 -
 test/com/sun/jdi/LaunchCommandLine.java       |  1 -
 test/com/sun/jdi/ModificationWatchpoints.java |  1 -
 test/com/sun/jdi/NativeInstanceFilter.java    |  1 -
 test/com/sun/jdi/UnpreparedByName.java        |  1 -
 test/com/sun/jdi/UnpreparedClasses.java       |  1 -
 test/com/sun/jdi/Vars.java                    |  1 -
 13 files changed, 2 insertions(+), 13 deletions(-)

diffs (142 lines):

diff -r 1c8161e0903a -r e215e6dd96e7 .hgtags
--- a/.hgtags	Sun Oct 04 09:43:13 2015 +0100
+++ b/.hgtags	Fri May 29 11:05:52 2015 +0200
@@ -630,4 +630,4 @@
 15db078b2bfde69f953bcf7a69273aff495a4701 icedtea-2.7.0pre01
 6a8bf2d8048964b384b20c71bf441f113193a81b icedtea-2.7.0pre02
 66eea0d727761bfbee10784baa6941f118bc06d1 jdk7u85-b02
-
+dbb972937b50ccd7edc4534d74b91eb66fe6cf0b icedtea-2.7.0pre03
diff -r 1c8161e0903a -r e215e6dd96e7 make/jdk_generic_profile.sh
--- a/make/jdk_generic_profile.sh	Sun Oct 04 09:43:13 2015 +0100
+++ b/make/jdk_generic_profile.sh	Fri May 29 11:05:52 2015 +0200
@@ -671,7 +671,7 @@
 
 # IcedTea versioning
 export ICEDTEA_NAME="IcedTea"
-export PACKAGE_VERSION="2.7.0pre02"
+export PACKAGE_VERSION="2.7.0pre03"
 export DERIVATIVE_ID="${ICEDTEA_NAME} ${PACKAGE_VERSION}"
 echo "Building ${DERIVATIVE_ID}"
 
diff -r 1c8161e0903a -r e215e6dd96e7 test/com/sun/jdi/AllLineLocations.java
--- a/test/com/sun/jdi/AllLineLocations.java	Sun Oct 04 09:43:13 2015 +0100
+++ b/test/com/sun/jdi/AllLineLocations.java	Fri May 29 11:05:52 2015 +0200
@@ -27,7 +27,6 @@
  *  @summary Test ReferenceType.allLineLocations
  *  @author Gordon Hirsch
  *
- *  @library scaffold
  *  @run build JDIScaffold VMConnection
  *  @run compile -g RefTypes.java
  *  @run build AllLineLocations
diff -r 1c8161e0903a -r e215e6dd96e7 test/com/sun/jdi/ClassesByName.java
--- a/test/com/sun/jdi/ClassesByName.java	Sun Oct 04 09:43:13 2015 +0100
+++ b/test/com/sun/jdi/ClassesByName.java	Fri May 29 11:05:52 2015 +0200
@@ -26,7 +26,6 @@
  *  @bug 4287992
  *  @author Robert Field
  *
- *  @library scaffold
  *  @run build JDIScaffold VMConnection
  *  @run compile -g HelloWorld.java
  *  @run build ClassesByName
diff -r 1c8161e0903a -r e215e6dd96e7 test/com/sun/jdi/ExceptionEvents.java
--- a/test/com/sun/jdi/ExceptionEvents.java	Sun Oct 04 09:43:13 2015 +0100
+++ b/test/com/sun/jdi/ExceptionEvents.java	Fri May 29 11:05:52 2015 +0200
@@ -28,7 +28,6 @@
  *
  *  @author Robert Field
  *
- *  @library scaffold
  *  @run build TestScaffold VMConnection
  *  @run compile -g ExceptionEvents.java
  *
diff -r 1c8161e0903a -r e215e6dd96e7 test/com/sun/jdi/FilterMatch.java
--- a/test/com/sun/jdi/FilterMatch.java	Sun Oct 04 09:43:13 2015 +0100
+++ b/test/com/sun/jdi/FilterMatch.java	Fri May 29 11:05:52 2015 +0200
@@ -28,7 +28,6 @@
  *
  *  @author Robert Field/Jim Holmlund
  *
- *  @library scaffold
  *  @run build JDIScaffold VMConnection
  *  @run compile -g HelloWorld.java
  *  @run main/othervm FilterMatch
diff -r 1c8161e0903a -r e215e6dd96e7 test/com/sun/jdi/FilterNoMatch.java
--- a/test/com/sun/jdi/FilterNoMatch.java	Sun Oct 04 09:43:13 2015 +0100
+++ b/test/com/sun/jdi/FilterNoMatch.java	Fri May 29 11:05:52 2015 +0200
@@ -28,7 +28,6 @@
  *
  *  @author Robert Field/Jim Holmlund
  *
- *  @library scaffold
  *  @run build JDIScaffold VMConnection
  *  @run compile -g HelloWorld.java
  *  @run main/othervm FilterNoMatch
diff -r 1c8161e0903a -r e215e6dd96e7 test/com/sun/jdi/LaunchCommandLine.java
--- a/test/com/sun/jdi/LaunchCommandLine.java	Sun Oct 04 09:43:13 2015 +0100
+++ b/test/com/sun/jdi/LaunchCommandLine.java	Fri May 29 11:05:52 2015 +0200
@@ -27,7 +27,6 @@
  *  @summary Test launcher command line construction
  *  @author Gordon Hirsch
  *
- *  @library scaffold
  *  @run build JDIScaffold VMConnection
  *  @run compile -g HelloWorld.java
  *  @run build LaunchCommandLine
diff -r 1c8161e0903a -r e215e6dd96e7 test/com/sun/jdi/ModificationWatchpoints.java
--- a/test/com/sun/jdi/ModificationWatchpoints.java	Sun Oct 04 09:43:13 2015 +0100
+++ b/test/com/sun/jdi/ModificationWatchpoints.java	Fri May 29 11:05:52 2015 +0200
@@ -29,7 +29,6 @@
  *  @author Daniel Prusa (or someone in the FFJ group)
  *  @author Robert Field (modified to JDIScaffold)
  *
- *  @library scaffold
  *  @run build JDIScaffold VMConnection
  *  @run compile -g ModificationWatchpoints.java
  *  @run main/othervm ModificationWatchpoints
diff -r 1c8161e0903a -r e215e6dd96e7 test/com/sun/jdi/NativeInstanceFilter.java
--- a/test/com/sun/jdi/NativeInstanceFilter.java	Sun Oct 04 09:43:13 2015 +0100
+++ b/test/com/sun/jdi/NativeInstanceFilter.java	Fri May 29 11:05:52 2015 +0200
@@ -28,7 +28,6 @@
  *
  *  @author Keith McGuigan
  *
- *  @library scaffold
  *  @run build JDIScaffold VMConnection
  *  @compile -XDignore.symbol.file NativeInstanceFilterTarg.java
  *  @run main/othervm NativeInstanceFilter
diff -r 1c8161e0903a -r e215e6dd96e7 test/com/sun/jdi/UnpreparedByName.java
--- a/test/com/sun/jdi/UnpreparedByName.java	Sun Oct 04 09:43:13 2015 +0100
+++ b/test/com/sun/jdi/UnpreparedByName.java	Fri May 29 11:05:52 2015 +0200
@@ -28,7 +28,6 @@
  *  won't be returned by classesByName.
  *  @author Robert Field
  *
- *  @library scaffold
  *  @run build JDIScaffold VMConnection
  *  @run compile -g InnerTarg.java
  *  @run build UnpreparedByName
diff -r 1c8161e0903a -r e215e6dd96e7 test/com/sun/jdi/UnpreparedClasses.java
--- a/test/com/sun/jdi/UnpreparedClasses.java	Sun Oct 04 09:43:13 2015 +0100
+++ b/test/com/sun/jdi/UnpreparedClasses.java	Fri May 29 11:05:52 2015 +0200
@@ -28,7 +28,6 @@
  *  loaded class list are prepared classes.
  *  @author Robert Field
  *
- *  @library scaffold
  *  @run build JDIScaffold VMConnection
  *  @run compile -g InnerTarg.java
  *  @run build UnpreparedClasses
diff -r 1c8161e0903a -r e215e6dd96e7 test/com/sun/jdi/Vars.java
--- a/test/com/sun/jdi/Vars.java	Sun Oct 04 09:43:13 2015 +0100
+++ b/test/com/sun/jdi/Vars.java	Fri May 29 11:05:52 2015 +0200
@@ -27,7 +27,6 @@
  *
  *  @author Robert Field
  *
- *  @library scaffold
  *  @run build JDIScaffold VMConnection
  *  @run compile -g Vars.java
  *  @run main/othervm Vars


More information about the distro-pkg-dev mailing list