From andreas.sterbenz at sun.com Wed Aug 1 06:00:26 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Wed, 1 Aug 2007 06:00:26 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708011300.l71D0Q0J011842@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070801/e52a4498/attachment.html From David.Bristor at Sun.COM Wed Aug 1 15:00:29 2007 From: David.Bristor at Sun.COM (Dave Bristor) Date: Wed, 01 Aug 2007 15:00:29 -0700 Subject: [modules-dev] Review request for 6588155 (fixes to borken tests) Message-ID: <46B1027D.8090908@sun.com> Hi folks, This fixes the broken tests, and, at least temporarily, resolves the issue which fixing those tests revealed in JamUtils.getFile(). The changes are all very small: could someone please take a look? webrev: http://analemma.sfbay.sun.com/java/jdk/ws/libs/rev/6588155/ bugster: http://monaco.sfbay/detail.jsf?cr=6588155 Aside from the relatively straightforward fixes: * Makefile: Changed so that the mkdir's output is in the log; when first investigating the problem I wondered if perhaps the target's action had not been executed * RepositoryConfig: Now yields useful output from the InvocationTargetException. Thanks, Dave From Kumar.Srinivasan at Sun.COM Wed Aug 1 15:09:59 2007 From: Kumar.Srinivasan at Sun.COM (Kumar Srinivasan) Date: Wed, 01 Aug 2007 15:09:59 -0700 Subject: [modules-dev] Review request for 6588155 (fixes to borken tests) In-Reply-To: <46B1027D.8090908@sun.com> References: <46B1027D.8090908@sun.com> Message-ID: <46B104B7.9030102@Sun.COM> Hi Dave, Looks fine to me. However, I thought we had to handle the special characters as space in Program Files. Does that work when you call url.toURI() ? I will putback my changes after your putback. > Hi folks, > > This fixes the broken tests, and, at least temporarily, resolves the issue > which fixing those tests revealed in JamUtils.getFile(). The changes are all > very small: could someone please take a look? > > webrev: http://analemma.sfbay.sun.com/java/jdk/ws/libs/rev/6588155/ > bugster: http://monaco.sfbay/detail.jsf?cr=6588155 > > Aside from the relatively straightforward fixes: > > * Makefile: Changed so that the mkdir's output is in the log; when first > investigating the problem I wondered if perhaps the target's action had not > been executed > > > * RepositoryConfig: Now yields useful output from the InvocationTargetException. > > Thanks, > Dave > _______________________________________________ > modules-dev mailing list > modules-dev at openjdk.java.net > http://mail.openjdk.java.net/mailman/listinfo/modules-dev > -- Kumar Srinivasan Sun Microsystems, Java Software. 408-276-7586 From David.Bristor at Sun.COM Wed Aug 1 15:20:52 2007 From: David.Bristor at Sun.COM (Dave Bristor) Date: Wed, 01 Aug 2007 15:20:52 -0700 Subject: [modules-dev] Review request for 6588155 (fixes to borken tests) In-Reply-To: <46B104B7.9030102@Sun.COM> References: <46B1027D.8090908@sun.com> <46B104B7.9030102@Sun.COM> Message-ID: <46B10744.7000208@sun.com> Kumar Srinivasan wrote: > Hi Dave, > > Looks fine to me. However, I thought we had to handle the special > characters > as space in Program Files. Does that work when you call url.toURI() ? > I will putback my changes after your putback. What's in the webrev fixes the current problems: we'll likely have to apply further fixing when we figure out exactly how to go about that. This is only supposed to be enough to fix the current set of known, demonstratable problems. I talked with Alan this morning, and did some experimenting, but am not ready to provide a complete fix for the "spaces in filename" issue yet. If you want me to fix that as part of this, just let me know, though that will delay integrating this until next week. Dave > > >> Hi folks, >> >> This fixes the broken tests, and, at least temporarily, resolves the >> issue which fixing those tests revealed in JamUtils.getFile(). The >> changes are all very small: could someone please take a look? >> >> webrev: http://analemma.sfbay.sun.com/java/jdk/ws/libs/rev/6588155/ >> bugster: http://monaco.sfbay/detail.jsf?cr=6588155 >> >> Aside from the relatively straightforward fixes: >> >> * Makefile: Changed so that the mkdir's output is in the log; when >> first investigating the problem I wondered if perhaps the target's >> action had not been executed >> >> >> * RepositoryConfig: Now yields useful output from the >> InvocationTargetException. >> >> Thanks, >> Dave >> _______________________________________________ >> modules-dev mailing list >> modules-dev at openjdk.java.net >> http://mail.openjdk.java.net/mailman/listinfo/modules-dev >> > > From Andreas.Sterbenz at Sun.COM Wed Aug 1 15:30:10 2007 From: Andreas.Sterbenz at Sun.COM (Andreas Sterbenz) Date: Wed, 01 Aug 2007 15:30:10 -0700 Subject: [modules-dev] Review request for 6588155 (fixes to borken tests) In-Reply-To: <46B1027D.8090908@sun.com> References: <46B1027D.8090908@sun.com> Message-ID: <46B10972.60603@sun.com> Dave Bristor wrote: > > * RepositoryConfig: Now yields useful output from the InvocationTargetException. I am not sure about putting the entire stack trace into the exception message. That's not what it was designed for. What's wrong with chaining the cause, i.e. new IllegalArgumentException(Cannot create ...", ex.getCause()) ? Rest looks fine. Andreas. From Kumar.Srinivasan at Sun.COM Wed Aug 1 15:33:27 2007 From: Kumar.Srinivasan at Sun.COM (Kumar Srinivasan) Date: Wed, 01 Aug 2007 15:33:27 -0700 Subject: [modules-dev] Review request for 6588155 (fixes to borken tests) In-Reply-To: <46B10744.7000208@sun.com> References: <46B1027D.8090908@sun.com> <46B104B7.9030102@Sun.COM> <46B10744.7000208@sun.com> Message-ID: <46B10A37.8040004@Sun.COM> > What's in the webrev fixes the current problems: we'll likely have to apply > further fixing when we figure out exactly how to go about that. This is only > supposed to be enough to fix the current set of known, demonstratable problems. > I am wondering how the toURI method is not choking on the spaces, thats all. > I talked with Alan this morning, and did some experimenting, but am not ready > to provide a complete fix for the "spaces in filename" issue yet. > > If you want me to fix that as part of this, just let me know, though that will > delay integrating this until next week. > Nope this is fine for now. > Dave > >> >>> Hi folks, >>> >>> This fixes the broken tests, and, at least temporarily, resolves the >>> issue which fixing those tests revealed in JamUtils.getFile(). The >>> changes are all very small: could someone please take a look? >>> >>> webrev: http://analemma.sfbay.sun.com/java/jdk/ws/libs/rev/6588155/ >>> bugster: http://monaco.sfbay/detail.jsf?cr=6588155 >>> >>> Aside from the relatively straightforward fixes: >>> >>> * Makefile: Changed so that the mkdir's output is in the log; when >>> first investigating the problem I wondered if perhaps the target's >>> action had not been executed >>> >>> >>> * RepositoryConfig: Now yields useful output from the >>> InvocationTargetException. >>> >>> Thanks, >>> Dave >>> _______________________________________________ >>> modules-dev mailing list >>> modules-dev at openjdk.java.net >>> http://mail.openjdk.java.net/mailman/listinfo/modules-dev >>> >>> >> > _______________________________________________ > modules-dev mailing list > modules-dev at openjdk.java.net > http://mail.openjdk.java.net/mailman/listinfo/modules-dev > -- Kumar Srinivasan Sun Microsystems, Java Software. 408-276-7586 From Andreas.Sterbenz at Sun.COM Wed Aug 1 15:34:33 2007 From: Andreas.Sterbenz at Sun.COM (Andreas Sterbenz) Date: Wed, 01 Aug 2007 15:34:33 -0700 Subject: [modules-dev] Review request for 6588155 (fixes to borken tests) In-Reply-To: <46B10744.7000208@sun.com> References: <46B1027D.8090908@sun.com> <46B104B7.9030102@Sun.COM> <46B10744.7000208@sun.com> Message-ID: <46B10A79.7000809@sun.com> Dave Bristor wrote: > > What's in the webrev fixes the current problems: we'll likely have to apply > further fixing when we figure out exactly how to go about that. This is only > supposed to be enough to fix the current set of known, demonstratable problems. Yes, I think it is important that we get some fix in now. Andreas. From andreas.sterbenz at sun.com Thu Aug 2 06:00:28 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Thu, 2 Aug 2007 06:00:28 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708021300.l72D0Sc0009665@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070802/f710cac7/attachment.html From db13166 at pasilla.SFBay.Sun.COM Thu Aug 2 14:22:09 2007 From: db13166 at pasilla.SFBay.Sun.COM (David Bristor) Date: Thu, 2 Aug 2007 14:22:09 -0700 (PDT) Subject: [modules-dev] Code Manager notification (putback-to) Message-ID: <200708022122.l72LM9Al017474@pasilla.SFBay.Sun.COM> Event: putback-to Parent workspace: /net/shimmer.sfbay/export/home/jsr277/ws (shimmer.sfbay:/export/home/jsr277/ws) Child workspace: /data/ws/jam-check (pasilla:/data/ws/jam-check) User: db13166 Comment: 6588155 (repo) Fix failing tests: JRepoTest, RepositoryConfigTest [kumar.srinivasan, andreas.sterbenz] Files: update: src/share/classes/sun/module/JamUtils.java update: src/share/classes/sun/module/config/ModuleSystemConfig.java update: src/share/classes/sun/module/repository/RepositoryConfig.java update: src/share/lib/module/repository.properties update: make/java/module/Makefile update: test/sun/module/tools/JRepoTest.java update: test/sun/module/repository/RepositoryConfigTest.java Examined files: 7 Contents Summary: 7 update From David.Bristor at Sun.COM Thu Aug 2 14:31:34 2007 From: David.Bristor at Sun.COM (Dave Bristor) Date: Thu, 02 Aug 2007 14:31:34 -0700 Subject: [modules-dev] Review request for 6588155 (fixes to borken tests) In-Reply-To: <46B10972.60603@sun.com> References: <46B1027D.8090908@sun.com> <46B10972.60603@sun.com> Message-ID: <46B24D36.2050904@sun.com> Andreas Sterbenz wrote: > Dave Bristor wrote: >> >> * RepositoryConfig: Now yields useful output from the >> InvocationTargetException. > > I am not sure about putting the entire stack trace into the exception > message. That's not what it was designed for. What's wrong with chaining > the cause, i.e. new IllegalArgumentException(Cannot create ...", > ex.getCause()) ? I've just done the putback: FWIW, I left in the printing of the entire stack trace; I can remove it but (a) wanted to get this putback done and (b) found the stack useful in tracking down the problem. Dave > > Rest looks fine. > > Andreas. > From ksrini at baggy.SFBay.Sun.COM Thu Aug 2 15:03:27 2007 From: ksrini at baggy.SFBay.Sun.COM (Kumar Srinivasan - Java Software) Date: Thu, 2 Aug 2007 15:03:27 -0700 (PDT) Subject: [modules-dev] Code Manager notification (putback-to) Message-ID: <200708022203.l72M3RYi006944@baggy.SFBay.Sun.COM> Event: putback-to Parent workspace: /net/shimmer.sfbay/export/home/jsr277/ws (shimmer.sfbay:/export/home/jsr277/ws) Child workspace: /net/baggy.sfbay/allmine/ws-277/j2se (baggy:/net/baggy.sfbay/allmine/ws-277/j2se) User: ksrini Comment: 6580122:(launcher) Always create a URLRepository if a URL is specified [as130790,dbristor] 6580147:(launcher) Use repository.list() to determine the module name [as130790,dbristor] 6580159:(launcher) System repository should contain all modules in the base direct [as130790,dbristor] Webrev: http://analemma.sfbay.sun.com/~ksrini/webrevs/j2se-tools/jsr277-7/ Testing: * Regression tests on Solaris sparc and Windows x86 Files: update: src/share/classes/sun/module/ModuleLauncher.java update: test/java/module/basic/BasicLauncherTests.java update: test/java/module/basic/HttpRepositoryTest.java Examined files: 30 Contents Summary: 3 update 27 no action (unchanged) From jprtadm at jprt-web.SFBay.Sun.COM Thu Aug 2 16:55:50 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Thu, 2 Aug 2007 16:55:50 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - success with job 2007-08-02-212252.daemon.ws Message-ID: <200708022355.l72NtoXm012054@jprt-web.SFBay.Sun.COM> JPRT: job notification - success with job 2007-08-02-212252.daemon.ws JPRT Job ID: 2007-08-02-212252.daemon.ws JPRT System Used: sfbay JPRT Version Used: 29 July 2007 - National Lasagna Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-02-212252.daemon.ws User: daemon Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*linux_i586.*product.*' -noquickabort -email modules-dev at openjdk.java.net -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Thu-21:22:50-GMT Total time in queue: 2h 32m 59s Job started at: Thu-23:40:50-GMT Job finished at: Thu-23:55:49-GMT Job run time: 14m 59s Job state: success Job flags: Bundles: USE: jprt install 2007-08-02-212252.daemon.ws HINT: Use 'jprt rerun -comment -retest 2007-08-02-212252.daemon.ws' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): linux_i586_2.4-product success(11m 10s elapsed) Tests: linux_i586-product-c2-jvm98 success(01m 44s elapsed) linux_i586-product-c2-java/module success(02m 21s elapsed) linux_i586-product-c2-sun/module success( 45s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From jprtadm at jprt-web.SFBay.Sun.COM Thu Aug 2 17:11:07 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Thu, 2 Aug 2007 17:11:07 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - success with job 2007-08-02-220407.daemon.ws Message-ID: <200708030011.l730B73s012069@jprt-web.SFBay.Sun.COM> JPRT: job notification - success with job 2007-08-02-220407.daemon.ws JPRT Job ID: 2007-08-02-220407.daemon.ws JPRT System Used: sfbay JPRT Version Used: 29 July 2007 - National Lasagna Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-02-220407.daemon.ws User: daemon Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*linux_i586.*product.*' -noquickabort -email modules-dev at openjdk.java.net -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Thu-22:03:59-GMT Total time in queue: 2h 07m 08s Job started at: Thu-23:56:02-GMT Job finished at: Fri-00:11:07-GMT Job run time: 15m 05s Job state: success Job flags: Bundles: USE: jprt install 2007-08-02-220407.daemon.ws HINT: Use 'jprt rerun -comment -retest 2007-08-02-220407.daemon.ws' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): linux_i586_2.4-product success(11m 12s elapsed) Tests: linux_i586-product-c2-jvm98 success(01m 50s elapsed) linux_i586-product-c2-java/module success(02m 15s elapsed) linux_i586-product-c2-sun/module success( 41s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From as130790 at splendor.SFBay.Sun.COM Thu Aug 2 17:13:09 2007 From: as130790 at splendor.SFBay.Sun.COM (Andreas Sterbenz) Date: Thu, 2 Aug 2007 17:13:09 -0700 (PDT) Subject: [modules-dev] Code Manager notification (putback-to) Message-ID: <200708030013.l730D9SC025963@splendor.SFBay.Sun.COM> Event: putback-to Parent workspace: /net/shimmer.sfbay/export/home/jsr277/ws (shimmer.sfbay:/export/home/jsr277/ws) Child workspace: /net/splendor.sfbay/export/scratch/andreas/277 (splendor:/net/splendor.sfbay/export/scratch/andreas/277) User: as130790 Comment: 6581296: (spec) Add ModuleDefinition.getAnnotation() [stanley.ho, david.bristor] Webrev at: http://javaweb.sfbay/security/.net/splendor/export/scratch/andreas/277/wr/webrev.27.b/ Files: update: src/share/classes/java/module/JamsModuleDefinition.java update: src/share/classes/java/module/ModuleDefinition.java update: src/share/classes/sun/module/ModuleLauncher.java update: src/share/classes/sun/module/bootstrap/ClasspathModule.java update: src/share/classes/sun/module/core/ModuleImpl.java update: src/share/classes/sun/module/repository/RepositoryConfig.java update: test/java/module/config/DefaultImportOverridePolicy/DefaultImportOverridePolicyTest.java update: test/java/module/config/DefaultVisibilityPolicy/DefaultVisibilityPolicyTest.java update: test/java/module/config/ImportOverridePolicyFile/ImportOverridePolicyFileTest.java update: test/java/module/config/VisibilityPolicyFile/VisibilityPolicyFileTest.java update: test/java/module/modinit/RunMTest.java update: test/java/module/modinit/cl-template.java update: test/java/module/query/QueryTest.java update: test/java/module/repository/LocalRepositoryTest.java update: test/java/module/repository/URLRepositoryTest.java Examined files: 38489 Contents Summary: 15 update 38474 no action (unchanged) From jprtadm at jprt-web.SFBay.Sun.COM Thu Aug 2 17:32:02 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Thu, 2 Aug 2007 17:32:02 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - success with job 2007-08-03-001339.daemon.ws Message-ID: <200708030032.l730W2ON012084@jprt-web.SFBay.Sun.COM> JPRT: job notification - success with job 2007-08-03-001339.daemon.ws JPRT Job ID: 2007-08-03-001339.daemon.ws JPRT System Used: sfbay JPRT Version Used: 29 July 2007 - National Lasagna Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-03-001339.daemon.ws User: daemon Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*linux_i586.*product.*' -noquickabort -email modules-dev at openjdk.java.net -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Fri-00:13:31-GMT Total time in queue: 18m 31s Job started at: Fri-00:17:09-GMT Job finished at: Fri-00:32:02-GMT Job run time: 14m 53s Job state: success Job flags: Bundles: USE: jprt install 2007-08-03-001339.daemon.ws HINT: Use 'jprt rerun -comment -retest 2007-08-03-001339.daemon.ws' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): linux_i586_2.4-product success(11m 06s elapsed) Tests: linux_i586-product-c2-jvm98 success(01m 47s elapsed) linux_i586-product-c2-java/module success(02m 25s elapsed) linux_i586-product-c2-sun/module success( 45s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From jprtadm at jprt-web.SFBay.Sun.COM Thu Aug 2 17:57:10 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Thu, 2 Aug 2007 17:57:10 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - success with job 2007-08-03-003843.daemon.ws Message-ID: <200708030057.l730vAFN012102@jprt-web.SFBay.Sun.COM> JPRT: job notification - success with job 2007-08-03-003843.daemon.ws JPRT Job ID: 2007-08-03-003843.daemon.ws JPRT System Used: sfbay JPRT Version Used: 29 July 2007 - National Lasagna Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-03-003843.daemon.ws User: daemon Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*linux_i586.*product.*' -noquickabort -email modules-dev at openjdk.java.net -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Fri-00:38:34-GMT Total time in queue: 18m 36s Job started at: Fri-00:42:05-GMT Job finished at: Fri-00:57:10-GMT Job run time: 15m 05s Job state: success Job flags: Bundles: USE: jprt install 2007-08-03-003843.daemon.ws HINT: Use 'jprt rerun -comment -retest 2007-08-03-003843.daemon.ws' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): linux_i586_2.4-product success(11m 21s elapsed) Tests: linux_i586-product-c2-jvm98 success(01m 49s elapsed) linux_i586-product-c2-java/module success(02m 28s elapsed) linux_i586-product-c2-sun/module success( 46s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From stanleyh at jmodule.SFBay.Sun.COM Thu Aug 2 17:54:52 2007 From: stanleyh at jmodule.SFBay.Sun.COM (Stanley Ho) Date: Thu, 2 Aug 2007 17:54:52 -0700 (PDT) Subject: [modules-dev] Code Manager notification (putback-to) Message-ID: <200708030054.RAA01508@jmodule.SFBay.Sun.COM> A non-text attachment was scrubbed... Name: not available Type: text Size: 1942 bytes Desc: not available Url : http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070802/843112fd/attachment.ksh From jprtadm at jprt-web.SFBay.Sun.COM Thu Aug 2 18:12:29 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Thu, 2 Aug 2007 18:12:29 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - success with job 2007-08-03-005102.daemon.ws Message-ID: <200708030112.l731CTjn012117@jprt-web.SFBay.Sun.COM> JPRT: job notification - success with job 2007-08-03-005102.daemon.ws JPRT Job ID: 2007-08-03-005102.daemon.ws JPRT System Used: sfbay JPRT Version Used: 29 July 2007 - National Lasagna Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-03-005102.daemon.ws User: daemon Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*linux_i586.*product.*' -noquickabort -email modules-dev at openjdk.java.net -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Fri-00:50:54-GMT Total time in queue: 21m 20s Job started at: Fri-00:57:22-GMT Job finished at: Fri-01:12:14-GMT Job run time: 14m 52s Job state: success Job flags: Bundles: USE: jprt install 2007-08-03-005102.daemon.ws HINT: Use 'jprt rerun -comment -retest 2007-08-03-005102.daemon.ws' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): linux_i586_2.4-product success(11m 17s elapsed) Tests: linux_i586-product-c2-jvm98 success(01m 51s elapsed) linux_i586-product-c2-java/module success(02m 13s elapsed) linux_i586-product-c2-sun/module success( 34s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From as130790 at shimmer.sfbay.sun.com Thu Aug 2 17:38:31 2007 From: as130790 at shimmer.sfbay.sun.com (Andreas Sterbenz) Date: Thu, 2 Aug 2007 17:38:31 -0700 (PDT) Subject: [modules-dev] Code Manager notification (putback-to) Message-ID: <200708030038.l730cVtt009030@shimmer.sfbay.sun.com> Event: putback-to Parent workspace: /net/shimmer.sfbay/export/home/jsr277/ws (shimmer:/net/shimmer.sfbay/export/home/jsr277/ws) Child workspace: /net/shimmer.sfbay/export/home/as130790/277-merge/ws (shimmer:/net/shimmer.sfbay/export/home/as130790/277-merge/ws) User: as130790 Comment: Sync with TL Files: update: make/Makefile update: make/README-builds.html update: make/jdk_generic_profile.sh update: make/jprt.config update: make/common/Defs-linux.gmk update: make/common/Defs.gmk update: make/common/Library.gmk update: make/common/Program.gmk update: make/common/Release.gmk update: make/common/Sanity.gmk update: make/common/shared/Compiler-gcc.gmk update: make/common/shared/Platform.gmk update: make/common/shared/Sanity-Settings.gmk update: make/common/shared/Sanity.gmk update: make/java/awt/Makefile update: make/java/java/FILES_java.gmk update: make/java/redist/Makefile update: make/javax/sound/Makefile update: make/javax/sound/jsoundalsa/Makefile update: make/javax/sound/jsoundds/Makefile update: make/netbeans/README update: make/netbeans/compiler/build.xml update: make/netbeans/compiler/nbproject/project.xml update: make/sun/Makefile update: make/sun/awt/FILES_c_unix.gmk update: make/sun/awt/FILES_c_windows.gmk update: make/sun/awt/FILES_export_unix.gmk update: make/sun/awt/FILES_export_windows.gmk update: make/sun/awt/Makefile update: make/sun/awt/make.depend update: make/sun/awt/mapfile-vers update: make/sun/awt/mawt.gmk update: make/sun/dcpr/Makefile update: make/sun/font/FILES_c.gmk update: make/sun/font/Makefile update: make/sun/font/mapfile-vers update: make/sun/font/t2k/Makefile update: make/sun/font/t2k/mapfile-vers update: make/sun/jdbc/Makefile update: make/sun/xawt/Makefile update: src/closed/share/native/sun/dc/pr/dcLLFillerS.c update: src/share/classes/com/sun/imageio/plugins/png/PNGImageReader.java update: src/share/classes/com/sun/org/apache/xml/internal/security/transforms/implementations/TransformXSLT.java update: src/share/classes/com/sun/tools/javac/jvm/ClassWriter.java update: src/share/classes/com/sun/tools/javac/resources/legacy.properties update: src/share/classes/java/awt/Component.java update: src/share/classes/java/awt/DefaultKeyboardFocusManager.java update: src/share/classes/java/awt/KeyboardFocusManager.java update: src/share/classes/java/lang/Class.java update: src/share/classes/java/lang/ClassCircularityError.java update: src/share/classes/java/lang/RuntimePermission.java update: src/share/classes/java/lang/Thread.java update: src/share/classes/java/net/URL.java update: src/share/classes/java/nio/channels/spi/SelectorProvider.java update: src/share/classes/java/nio/charset/Charset.java update: src/share/classes/java/rmi/server/RMIClassLoader.java update: src/share/classes/java/security/BasicPermission.java update: src/share/classes/java/security/PermissionCollection.java update: src/share/classes/java/security/cert/PolicyNode.java update: src/share/classes/java/text/Bidi.java update: src/share/classes/java/util/Collections.java update: src/share/classes/java/util/Hashtable.java update: src/share/classes/java/util/Iterator.java update: src/share/classes/java/util/Timer.java update: src/share/classes/java/util/concurrent/CountDownLatch.java update: src/share/classes/java/util/concurrent/Semaphore.java update: src/share/classes/java/util/concurrent/SynchronousQueue.java update: src/share/classes/java/util/concurrent/locks/AbstractQueuedLongSynchronizer.java update: src/share/classes/java/util/concurrent/locks/AbstractQueuedSynchronizer.java update: src/share/classes/java/util/concurrent/locks/ReentrantLock.java update: src/share/classes/java/util/concurrent/locks/ReentrantReadWriteLock.java update: src/share/classes/javax/imageio/ImageIO.java update: src/share/classes/javax/swing/text/SimpleAttributeSet.java update: src/share/classes/javax/swing/tree/DefaultMutableTreeNode.java update: src/share/classes/sun/applet/AppletClassLoader.java update: src/share/classes/sun/awt/EmbeddedFrame.java update: src/share/classes/sun/awt/dnd/SunDropTargetContextPeer.java update: src/share/classes/sun/awt/image/ImagingLib.java update: src/share/classes/sun/font/FileFont.java update: src/share/classes/sun/font/FileFontStrike.java update: src/share/classes/sun/font/Font2D.java update: src/share/classes/sun/font/FontManager.java update: src/share/classes/sun/font/SunLayoutEngine.java update: src/share/classes/sun/font/TrueTypeFont.java update: src/share/classes/sun/font/Type1Font.java update: src/share/classes/sun/font/Type1GlyphMapper.java update: src/share/classes/sun/java2d/SunGraphics2D.java update: src/share/classes/sun/java2d/SurfaceData.java update: src/share/classes/sun/java2d/opengl/OGLMaskBlit.java update: src/share/classes/sun/java2d/opengl/OGLSurfaceData.java update: src/share/classes/sun/print/PathGraphics.java update: src/share/classes/sun/print/RasterPrinterJob.java update: src/share/classes/sun/rmi/server/Activation.java update: src/share/classes/sun/security/krb5/Config.java update: src/share/classes/sun/security/krb5/internal/KRBError.java update: src/share/classes/sun/tools/java/MethodSet.java update: src/share/classes/sun/tools/jconsole/inspector/XSheet.java update: src/share/native/sun/awt/libpng/CHANGES update: src/share/native/sun/awt/libpng/LICENSE update: src/share/native/sun/awt/libpng/README update: src/share/native/sun/awt/libpng/png.c update: src/share/native/sun/awt/libpng/png.h update: src/share/native/sun/awt/libpng/pngconf.h update: src/share/native/sun/awt/libpng/pngerror.c update: src/share/native/sun/awt/libpng/pngget.c update: src/share/native/sun/awt/libpng/pngmem.c update: src/share/native/sun/awt/libpng/pngpread.c update: src/share/native/sun/awt/libpng/pngread.c update: src/share/native/sun/awt/libpng/pngrio.c update: src/share/native/sun/awt/libpng/pngrtran.c update: src/share/native/sun/awt/libpng/pngrutil.c update: src/share/native/sun/awt/libpng/pngset.c update: src/share/native/sun/awt/libpng/pngtest.c update: src/share/native/sun/awt/libpng/pngtrans.c update: src/share/native/sun/awt/libpng/pngwio.c update: src/share/native/sun/awt/libpng/pngwrite.c update: src/share/native/sun/awt/libpng/pngwtran.c update: src/share/native/sun/awt/libpng/pngwutil.c update: src/share/native/sun/awt/medialib/awt_ImagingLib.c update: src/share/native/sun/awt/medialib/awt_ImagingLib.h update: src/share/native/sun/awt/medialib/mlib_ImageColormap.h update: src/share/native/sun/awt/medialib/mlib_image_proto.h update: src/share/native/sun/font/FontInstanceAdapter.cpp update: src/share/native/sun/font/FontInstanceAdapter.h update: src/share/native/sun/font/fontscalerdefs.h update: src/share/native/sun/font/sunFont.c update: src/share/native/sun/font/sunfontids.h update: src/share/native/sun/font/layout/SunLayoutEngine.cpp update: src/share/native/sun/java2d/opengl/OGLBlitLoops.c update: src/share/native/sun/java2d/opengl/OGLContext.c update: src/share/native/sun/java2d/opengl/OGLContext.h update: src/share/native/sun/java2d/opengl/OGLMaskBlit.c update: src/share/native/sun/java2d/opengl/OGLMaskBlit.h update: src/share/native/sun/java2d/opengl/OGLRenderQueue.c update: src/share/native/sun/java2d/opengl/OGLTextRenderer.c update: src/solaris/bin/java_md.c update: src/solaris/classes/sun/awt/X11/XChoicePeer.java update: src/solaris/classes/sun/awt/X11/XGlobalCursorManager.java update: src/solaris/classes/sun/awt/X11/XIconInfo.java update: src/solaris/classes/sun/print/UnixPrintService.java update: src/solaris/hpi/native_threads/src/sys_api_td.c update: src/solaris/native/sun/awt/awt_Mlib.c update: src/solaris/native/sun/awt/awt_Mlib.h update: src/solaris/native/sun/awt/splashscreen/splashscreen_sys.c update: src/windows/classes/sun/awt/Win32GraphicsEnvironment.java update: src/windows/classes/sun/awt/windows/WEmbeddedFrame.java update: src/windows/classes/sun/awt/windows/WPageDialogPeer.java update: src/windows/classes/sun/awt/windows/WPrintDialogPeer.java update: src/windows/classes/sun/awt/windows/WPrinterJob.java update: src/windows/classes/sun/print/Win32PrintService.java update: src/windows/classes/sun/print/Win32PrintServiceLookup.java update: src/windows/native/sun/windows/awt_Button.cpp update: src/windows/native/sun/windows/awt_Choice.cpp update: src/windows/native/sun/windows/awt_Choice.h update: src/windows/native/sun/windows/awt_Component.cpp update: src/windows/native/sun/windows/awt_Component.h update: src/windows/native/sun/windows/awt_FileDialog.cpp update: src/windows/native/sun/windows/awt_Frame.cpp update: src/windows/native/sun/windows/awt_Frame.h update: src/windows/native/sun/windows/awt_List.cpp update: src/windows/native/sun/windows/awt_MenuItem.cpp update: src/windows/native/sun/windows/awt_Mlib.cpp update: src/windows/native/sun/windows/awt_Mlib.h update: src/windows/native/sun/windows/awt_PrintControl.cpp update: src/windows/native/sun/windows/awt_PrintDialog.cpp update: src/windows/native/sun/windows/awt_PrintJob.cpp update: src/windows/native/sun/windows/awt_TextArea.cpp update: src/windows/native/sun/windows/awt_TrayIcon.cpp update: src/windows/native/sun/windows/awt_Window.cpp update: test/closed/java/awt/TrayIcon/TrayIconTest.java update: test/closed/java/awt/print/PageFormat/PageSetupDialog.java update: test/closed/java/awt/print/PrinterJob/PrintTextPane.java update: test/closed/sun/java2d/OpenGL/LargeOps.java update: test/java/awt/Focus/TranserFocusToWindow/TranserFocusToWindow.java update: test/java/awt/font/TextLayout/TestHebrewMark.java update: test/java/awt/print/PrinterJob/ImagePrinting/ClippedImages.java update: test/java/awt/regtesthelpers/Util.java update: test/java/rmi/server/RMIClassLoader/spi/ContextInsulation.java update: test/java/rmi/server/RMIClassLoader/spi/Installed.java update: test/java/util/concurrent/locks/Lock/FlakyMutex.java update: test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6216082.java update: test/sun/security/ssl/sun/net/www/protocol/https/HttpsURLConnection/B6226610.java rename from: src/closed/share/demo/applets/ImageMap/AniArea.java to: deleted_files/src/closed/share/demo/applets/ImageMap/AniArea.java rename from: src/closed/share/demo/applets/ImageMap/ButtonFilter.java to: deleted_files/src/closed/share/demo/applets/ImageMap/ButtonFilter.java rename from: src/closed/share/demo/applets/ImageMap/ClickArea.java to: deleted_files/src/closed/share/demo/applets/ImageMap/ClickArea.java rename from: src/closed/share/demo/applets/ImageMap/DelayedSoundArea.java to: deleted_files/src/closed/share/demo/applets/ImageMap/DelayedSoundArea.java rename from: src/closed/share/demo/applets/ImageMap/HighlightArea.java to: deleted_files/src/closed/share/demo/applets/ImageMap/HighlightArea.java rename from: src/closed/share/demo/applets/ImageMap/HighlightFilter.java to: deleted_files/src/closed/share/demo/applets/ImageMap/HighlightFilter.java rename from: src/closed/share/demo/applets/ImageMap/HrefButtonArea.java to: deleted_files/src/closed/share/demo/applets/ImageMap/HrefButtonArea.java rename from: src/closed/share/demo/applets/ImageMap/ImageMap.java to: deleted_files/src/closed/share/demo/applets/ImageMap/ImageMap.java rename from: src/closed/share/demo/applets/ImageMap/ImageMapArea.java to: deleted_files/src/closed/share/demo/applets/ImageMap/ImageMapArea.java rename from: src/closed/share/demo/applets/ImageMap/LinkArea.java to: deleted_files/src/closed/share/demo/applets/ImageMap/LinkArea.java rename from: src/closed/share/demo/applets/ImageMap/NameArea.java to: deleted_files/src/closed/share/demo/applets/ImageMap/NameArea.java rename from: src/closed/share/demo/applets/ImageMap/RoundButtonFilter.java to: deleted_files/src/closed/share/demo/applets/ImageMap/RoundButtonFilter.java rename from: src/closed/share/demo/applets/ImageMap/RoundHrefButtonArea.java to: deleted_files/src/closed/share/demo/applets/ImageMap/RoundHrefButtonArea.java rename from: src/closed/share/demo/applets/ImageMap/SoundArea.java to: deleted_files/src/closed/share/demo/applets/ImageMap/SoundArea.java rename from: src/closed/share/demo/applets/ImageMap/TickerArea.java to: deleted_files/src/closed/share/demo/applets/ImageMap/TickerArea.java rename from: src/closed/share/demo/applets/ImageMap/example1.html to: deleted_files/src/closed/share/demo/applets/ImageMap/example1.html rename from: src/closed/share/demo/applets/ImageMap/imagemapcheat.html to: deleted_files/src/closed/share/demo/applets/ImageMap/imagemapcheat.html rename from: src/closed/share/demo/applets/ImageMap/sources.html to: deleted_files/src/closed/share/demo/applets/ImageMap/sources.html rename from: src/closed/share/demo/applets/ImageMap/audio/chirp1.au to: deleted_files/src/closed/share/demo/applets/ImageMap/audio/chirp1.au rename from: src/closed/share/demo/applets/ImageMap/audio/hi.au to: deleted_files/src/closed/share/demo/applets/ImageMap/audio/hi.au rename from: src/closed/share/demo/applets/ImageMap/images/jim.graham.gif to: deleted_files/src/closed/share/demo/applets/ImageMap/images/jim.graham.gif rename from: src/share/native/sun/font/layout/SunLayoutEngine.h to: deleted_files/src/share/native/sun/font/layout/SunLayoutEngine.h rename from: test/closed/com/sun/image/codec/jpeg/APP0.java to: deleted_files/test/closed/com/sun/image/codec/jpeg/APP0.java rename from: test/closed/com/sun/image/codec/jpeg/EncoderExceptionTest.java to: deleted_files/test/closed/com/sun/image/codec/jpeg/EncoderExceptionTest.java rename from: test/closed/com/sun/image/codec/jpeg/InfiniteReadingLoop.java to: deleted_files/test/closed/com/sun/image/codec/jpeg/InfiniteReadingLoop.java rename from: test/closed/com/sun/image/codec/jpeg/JPEGDataTest.java to: deleted_files/test/closed/com/sun/image/codec/jpeg/JPEGDataTest.java rename from: test/closed/com/sun/image/codec/jpeg/JPEGDefaultEncodeParam.java to: deleted_files/test/closed/com/sun/image/codec/jpeg/JPEGDefaultEncodeParam.java rename from: test/closed/com/sun/image/codec/jpeg/JPEGMultithread.java to: deleted_files/test/closed/com/sun/image/codec/jpeg/JPEGMultithread.java rename from: test/closed/com/sun/image/codec/jpeg/JPEGSubraster.java to: deleted_files/test/closed/com/sun/image/codec/jpeg/JPEGSubraster.java rename from: test/closed/com/sun/image/codec/jpeg/Kaat_good.jpg to: deleted_files/test/closed/com/sun/image/codec/jpeg/Kaat_good.jpg rename from: test/closed/com/sun/image/codec/jpeg/corrupt.jpg to: deleted_files/test/closed/com/sun/image/codec/jpeg/corrupt.jpg rename from: test/closed/java/awt/PrintJob/BadPrinterTest/BadPrinterTest.html to: deleted_files/test/closed/java/awt/PrintJob/BadPrinterTest/BadPrinterTest.html rename from: test/closed/java/awt/PrintJob/BadPrinterTest/BadPrinterTest.java to: deleted_files/test/closed/java/awt/PrintJob/BadPrinterTest/BadPrinterTest.java rename from: test/closed/java/awt/PrintJob/ConstrainedPrintingTest/ConstrainedPrintingTest.html to: deleted_files/test/closed/java/awt/PrintJob/ConstrainedPrintingTest/ConstrainedPrintingTest.html rename from: test/closed/java/awt/PrintJob/EdgeTest/EdgeTest.html to: deleted_files/test/closed/java/awt/PrintJob/EdgeTest/EdgeTest.html rename from: test/closed/java/awt/PrintJob/MultipleEnd/MultipleEnd.html to: deleted_files/test/closed/java/awt/PrintJob/MultipleEnd/MultipleEnd.html rename from: test/closed/java/awt/PrintJob/PageSetupDlgBlockingTest/PageSetupDlgBlockingTest.html to: deleted_files/test/closed/java/awt/PrintJob/PageSetupDlgBlockingTest/PageSetupDlgBlockingTest.html rename from: test/closed/java/awt/PrintJob/PrintArcTest/PrintArcTest.html to: deleted_files/test/closed/java/awt/PrintJob/PrintArcTest/PrintArcTest.html rename from: test/closed/java/awt/PrintJob/PrintCheckboxTest/PrintCheckboxManualTest.html to: deleted_files/test/closed/java/awt/PrintJob/PrintCheckboxTest/PrintCheckboxManualTest.html rename from: test/closed/java/awt/PrintJob/QuoteAndBackslashTest/QuoteAndBackslashTest.html to: deleted_files/test/closed/java/awt/PrintJob/QuoteAndBackslashTest/QuoteAndBackslashTest.html rename from: test/closed/java/awt/PrintJob/RoundedRectTest/RoundedRectTest.html to: deleted_files/test/closed/java/awt/PrintJob/RoundedRectTest/RoundedRectTest.html rename from: test/closed/java/awt/font/CreateFont/arialbd.ttf to: deleted_files/test/closed/java/awt/font/CreateFont/arialbd.ttf rename from: test/closed/java/awt/font/CreateFont/lucon.ttf to: deleted_files/test/closed/java/awt/font/CreateFont/lucon.ttf create: make/common/BinaryPlugs.gmk create: make/sun/font/mapfile-vers.openjdk create: make/tools/freetypecheck/Makefile create: make/tools/freetypecheck/freetypecheck.c create: src/closed/share/classes/sun/font/T2KFontScaler.java create: src/closed/share/doc/openjdk/binary-plugs/LICENSE update: src/closed/share/native/sun/font/GeneralPath.cpp rename from: src/share/native/sun/font/GeneralPath.cpp to: src/closed/share/native/sun/font/GeneralPath.cpp update: src/closed/share/native/sun/font/GeneralPath.h rename from: src/share/native/sun/font/GeneralPath.h to: src/closed/share/native/sun/font/GeneralPath.h update: src/closed/share/native/sun/font/scalerMethods.c rename from: src/share/native/sun/font/scalerMethods.c to: src/closed/share/native/sun/font/scalerMethods.c update: src/closed/share/native/sun/font/sunt2kscaler.h rename from: src/share/native/sun/font/sunt2kscaler.h to: src/closed/share/native/sun/font/sunt2kscaler.h update: src/closed/share/native/sun/font/t2kScalerMethods.cpp rename from: src/share/native/sun/font/t2kScalerMethods.cpp to: src/closed/share/native/sun/font/t2kScalerMethods.cpp create: src/share/classes/sun/font/FontManagerNativeLibrary.java create: src/share/classes/sun/font/FontScaler.java create: src/share/classes/sun/font/FontScalerException.java create: src/share/classes/sun/font/FreetypeFontScaler.java create: src/share/classes/sun/font/NullFontScaler.java create: src/share/classes/sun/java2d/pipe/BufferedMaskBlit.java create: src/share/native/sun/awt/libpng/pnggccrd.c create: src/share/native/sun/awt/libpng/pngvcrd.c create: src/share/native/sun/font/fontscaler.h create: src/share/native/sun/font/freetypeScaler.c create: src/share/native/sun/java2d/pipe/BufferedMaskBlit.c update: test/java/awt/FullScreen/UninitializedDisplayModeChangeTest/UninitializedDisplayModeChangeTest.java rename from: test/closed/java/awt/FullScreen/UninitializedDisplayModeChangeTest/UninitializedDisplayModeChangeTest.java to: test/java/awt/FullScreen/UninitializedDisplayModeChangeTest/UninitializedDisplayModeChangeTest.java update: test/java/awt/PrintJob/ConstrainedPrintingTest/ConstrainedPrintingTest.java rename from: test/closed/java/awt/PrintJob/ConstrainedPrintingTest/ConstrainedPrintingTest.java to: test/java/awt/PrintJob/ConstrainedPrintingTest/ConstrainedPrintingTest.java update: test/java/awt/PrintJob/EdgeTest/EdgeTest.java rename from: test/closed/java/awt/PrintJob/EdgeTest/EdgeTest.java to: test/java/awt/PrintJob/EdgeTest/EdgeTest.java update: test/java/awt/PrintJob/MultipleEnd/MultipleEnd.java rename from: test/closed/java/awt/PrintJob/MultipleEnd/MultipleEnd.java to: test/java/awt/PrintJob/MultipleEnd/MultipleEnd.java update: test/java/awt/PrintJob/PageSetupDlgBlockingTest/PageSetupDlgBlockingTest.java rename from: test/closed/java/awt/PrintJob/PageSetupDlgBlockingTest/PageSetupDlgBlockingTest.java to: test/java/awt/PrintJob/PageSetupDlgBlockingTest/PageSetupDlgBlockingTest.java update: test/java/awt/PrintJob/PrintArcTest/PrintArcTest.java rename from: test/closed/java/awt/PrintJob/PrintArcTest/PrintArcTest.java to: test/java/awt/PrintJob/PrintArcTest/PrintArcTest.java update: test/java/awt/PrintJob/PrintCheckboxTest/PrintCheckboxManualTest.java rename from: test/closed/java/awt/PrintJob/PrintCheckboxTest/PrintCheckboxManualTest.java to: test/java/awt/PrintJob/PrintCheckboxTest/PrintCheckboxManualTest.java update: test/java/awt/PrintJob/QuoteAndBackslashTest/QuoteAndBackslashTest.java rename from: test/closed/java/awt/PrintJob/QuoteAndBackslashTest/QuoteAndBackslashTest.java to: test/java/awt/PrintJob/QuoteAndBackslashTest/QuoteAndBackslashTest.java update: test/java/awt/PrintJob/RoundedRectTest/RoundedRectTest.java rename from: test/closed/java/awt/PrintJob/RoundedRectTest/RoundedRectTest.java to: test/java/awt/PrintJob/RoundedRectTest/RoundedRectTest.java create: test/closed/javax/xml/crypto/dsig/Transform/SecureXSLT.java create: test/closed/javax/xml/crypto/dsig/Transform/signature1.xml create: test/closed/javax/xml/crypto/dsig/Transform/signature2.xml create: test/closed/javax/xml/crypto/dsig/Transform/signature3.xml create: test/java/awt/Choice/NonFocusablePopupMenuTest/NonFocusablePopupMenuTest.html create: test/java/awt/Choice/NonFocusablePopupMenuTest/NonFocusablePopupMenuTest.java create: test/java/awt/Choice/UnfocusableToplevel/UnfocusableToplevel.java create: test/java/awt/Focus/RequestFocusAndHideTest/RequestFocusAndHideTest.java create: test/java/awt/Frame/UnfocusableMaximizedFrameResizablity/UnfocusableMaximizedFrameResizablity.java create: test/java/awt/Graphics/LCDTextAndGraphicsState.java create: test/java/awt/Graphics/TextAAHintsTest.java create: test/java/awt/Multiscreen/UpdateGCTest/UpdateGCTest.java create: test/java/awt/event/KeyEvent/CorrectTime/CorrectTime.java create: test/java/awt/event/MouseEvent/EventTimeInFuture/EventTimeInFuture.java create: test/java/awt/font/Rotate/TestTransform.java create: test/java/awt/image/mlib/MlibOpsTest.java create: test/java/awt/image/mlib/mlib.security.policy create: test/java/awt/print/PrinterJob/ImagePrinting/PrintARGBImage.java create: test/java/awt/print/PrinterJob/PageFormatChange.java create: test/java/awt/print/PrinterJob/PageRanges.java create: test/java/awt/print/PrinterJob/SameService.java create: test/java/lang/Class/TypeCheckMicroBenchmark.java create: test/java/util/Collections/EmptyIterator.java create: test/java/util/Timer/Args.java create: test/javax/imageio/plugins/png/ShortHistogramTest.java create: test/javax/print/attribute/CollateAttr.java create: test/javax/print/attribute/PSCopiesFlavorTest.java create: test/sun/security/krb5/PAData.java create: test/sun/security/krb5/ParseConfig.java create: test/sun/security/krb5/krb5.conf create: test/tools/javac/6520152/T.java create: test/tools/javac/6520152/T6520152.java Examined files: 38538 Contents Summary: 49 create 196 update 38293 no action (unchanged) Names Summary: 57 renamed 43 update parent's name history From jprtadm at jprt-web.SFBay.Sun.COM Fri Aug 3 05:33:51 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Fri, 3 Aug 2007 05:33:51 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - success with job 2007-08-03-111318.as130790.ws Message-ID: <200708031233.l73CXpTb012435@jprt-web.SFBay.Sun.COM> JPRT: job notification - success with job 2007-08-03-111318.as130790.ws JPRT Job ID: 2007-08-03-111318.as130790.ws JPRT System Used: sfbay JPRT Version Used: 29 July 2007 - National Lasagna Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-03-111318.as130790.ws User: as130790 Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*product.*' -noquickabort -email modules-dev at openjdk.java.net -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Fri-11:13:09-GMT Total time in queue: 1h 20m 41s Job started at: Fri-11:21:13-GMT Job finished at: Fri-12:33:50-GMT Job run time: 1h 12m 37s Job state: success Job flags: Bundles: USE: jprt install 2007-08-03-111318.as130790.ws HINT: Use 'jprt rerun -comment -retest 2007-08-03-111318.as130790.ws' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): solaris_sparc_5.8-product success(24m 54s elapsed) solaris_sparcv9_5.8-product success(26m 07s elapsed) solaris_i586_5.8-product success(52m 27s elapsed) solaris_x64_5.10-product success(09m 55s elapsed) linux_i586_2.4-product success(11m 41s elapsed) linux_x64_2.4-product success(13m 00s elapsed) windows_i586_5-product success(38m 00s elapsed) windows_x64_5.2-product success(44m 09s elapsed) Tests: solaris_sparc-product-c2-jvm98 success(03m 18s elapsed) solaris_sparcv9-product-c2-jvm98 success(02m 51s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-jvm98 success(02m 55s elapsed) solaris_x64-product-c2-jvm98 success(01m 49s elapsed) linux_i586-product-c2-jvm98 success(01m 54s elapsed) linux_x64-product-c2-jvm98 success(01m 42s elapsed) windows_i586-product-c2-jvm98 success(03m 07s elapsed) windows_x64-product-c2-jvm98 success(01m 57s elapsed) solaris_sparc-product-c2-java/module success(03m 28s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_sparcv9-product-c2-java/module success(04m 12s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-java/module success(09m 51s elapsed) solaris_x64-product-c2-java/module success(01m 48s elapsed) linux_i586-product-c2-java/module success(02m 16s elapsed) linux_x64-product-c2-java/module success(01m 39s elapsed) windows_i586-product-c2-java/module success(05m 57s elapsed) windows_x64-product-c2-java/module success(04m 32s elapsed) solaris_sparc-product-c2-sun/module success( 30s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_sparcv9-product-c2-sun/module success( 30s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-sun/module success(08m 00s elapsed) solaris_x64-product-c2-sun/module success( 18s elapsed) linux_i586-product-c2-sun/module success( 55s elapsed) linux_x64-product-c2-sun/module success( 16s elapsed) windows_i586-product-c2-sun/module success(03m 07s elapsed) windows_x64-product-c2-sun/module success(02m 36s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From andreas.sterbenz at sun.com Fri Aug 3 06:20:06 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Fri, 3 Aug 2007 06:20:06 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708031320.l73DK6o9001573@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070803/a3dfa009/attachment.html From andreas.sterbenz at sun.com Mon Aug 6 06:00:11 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Mon, 6 Aug 2007 06:00:11 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708061300.l76D0B7b022055@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070806/b3f30006/attachment.html From andreas.sterbenz at sun.com Tue Aug 7 08:00:32 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Tue, 7 Aug 2007 08:00:32 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708071500.l77F0WmS001649@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070807/a05e02b4/attachment.html From David.Bristor at Sun.COM Tue Aug 7 14:05:18 2007 From: David.Bristor at Sun.COM (Dave Bristor) Date: Tue, 07 Aug 2007 14:05:18 -0700 Subject: [modules-dev] [Fwd: Review request: 6563535, URLRepository.install] Message-ID: <46B8DE8E.9010409@sun.com> Hi folks, Here's the notice I sent earlier: haven't received any feedback yet. I sent this when JPRT wasn't running tests: all tests were then passing on Solaris; I've got a x-platform jprt job running right now on the rest. Please note: when I did this work, platform & architecture were not available from a module definition, so use of them is still not implemented: I will do that as a separate task. OTOH, if anyone feels strongly, I could do it now. Thanks, Dave -------- Original Message -------- Subject: [modules-dev] Review request: 6563535, URLRepository.install Date: Tue, 24 Jul 2007 17:24:27 -0700 From: Dave Bristor To: modules-dev at openjdk.java.net Hi folks, This one allows URLRepository.install() to succeed on URLRepositories created with a file: URL. The review is ever-so-slightly preliminary; I've tested on solaris-x86 but want to test on Windows also and will do so tomorrow. bugster: http://monaco.sfbay/detail.jsf?cr=6563535 webrev: http://javaweb.sfbay/java/jdk/ws/libs/rev/6563535/ URLRepositoryTest is changed to verify that install() yields exceptions as expected. URLRepoBuilder is changed so that it can build a single JAM, which is used by URLRepoInstallTest; most of the changes are code movement. URLRepository is changed for implementation of install() and uninstall(). Note also that, when a repository is initialized, if it is file-based and repository-metadata.xml does not exist, it gets created. URLRepoInstallTest verifies that install works. It is a very basic test; there are several error conditions that would be hard to check and so that's not done now. Thanks, Dave _______________________________________________ modules-dev mailing list modules-dev at openjdk.java.net http://mail.openjdk.java.net/mailman/listinfo/modules-dev From andreas.sterbenz at sun.com Wed Aug 8 06:00:09 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Wed, 8 Aug 2007 06:00:09 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708081300.l78D09wM005927@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070808/346410b3/attachment.html From andreas.sterbenz at sun.com Thu Aug 9 06:00:27 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Thu, 9 Aug 2007 06:00:27 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708091300.l79D0RXn021307@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070809/14f2f733/attachment.html From David.Bristor at Sun.COM Thu Aug 9 08:34:29 2007 From: David.Bristor at Sun.COM (David Bristor) Date: Thu, 09 Aug 2007 08:34:29 -0700 Subject: [modules-dev] [Fwd: [Fwd: Review request: 6563535, URLRepository.install]] Message-ID: <46BB3405.5050208@sun.com> Hi folks, Testing via JPRT found one problem on windows which has been fixed. I've received one short comment so far: any more? Kumar, did my feedback on your comment make sense or does the issue remain unresolved? Thanks, Dave -------- Original Message -------- Subject: [modules-dev] [Fwd: Review request: 6563535, URLRepository.install] Date: Tue, 07 Aug 2007 14:05:18 -0700 From: Dave Bristor To: modules-dev at openjdk.java.net Hi folks, Here's the notice I sent earlier: haven't received any feedback yet. I sent this when JPRT wasn't running tests: all tests were then passing on Solaris; I've got a x-platform jprt job running right now on the rest. Please note: when I did this work, platform & architecture were not available from a module definition, so use of them is still not implemented: I will do that as a separate task. OTOH, if anyone feels strongly, I could do it now. Thanks, Dave -------- Original Message -------- Subject: [modules-dev] Review request: 6563535, URLRepository.install Date: Tue, 24 Jul 2007 17:24:27 -0700 From: Dave Bristor To: modules-dev at openjdk.java.net Hi folks, This one allows URLRepository.install() to succeed on URLRepositories created with a file: URL. The review is ever-so-slightly preliminary; I've tested on solaris-x86 but want to test on Windows also and will do so tomorrow. bugster: http://monaco.sfbay/detail.jsf?cr=6563535 webrev: http://javaweb.sfbay/java/jdk/ws/libs/rev/6563535/ URLRepositoryTest is changed to verify that install() yields exceptions as expected. URLRepoBuilder is changed so that it can build a single JAM, which is used by URLRepoInstallTest; most of the changes are code movement. URLRepository is changed for implementation of install() and uninstall(). Note also that, when a repository is initialized, if it is file-based and repository-metadata.xml does not exist, it gets created. URLRepoInstallTest verifies that install works. It is a very basic test; there are several error conditions that would be hard to check and so that's not done now. Thanks, Dave _______________________________________________ modules-dev mailing list modules-dev at openjdk.java.net http://mail.openjdk.java.net/mailman/listinfo/modules-dev _______________________________________________ modules-dev mailing list modules-dev at openjdk.java.net http://mail.openjdk.java.net/mailman/listinfo/modules-dev From Kumar.Srinivasan at Sun.COM Thu Aug 9 08:40:50 2007 From: Kumar.Srinivasan at Sun.COM (Kumar Srinivasan) Date: Thu, 09 Aug 2007 08:40:50 -0700 Subject: [modules-dev] [Fwd: [Fwd: Review request: 6563535, URLRepository.install]] In-Reply-To: <46BB3405.5050208@sun.com> References: <46BB3405.5050208@sun.com> Message-ID: <46BB3582.4040603@Sun.COM> > Kumar, did my feedback on your comment make sense or does the issue remain > unresolved? > Yep, need I need to get my vision checked too. Affirmative wrt. your response. > Thanks, > Dave > > -------- Original Message -------- > Subject: [modules-dev] [Fwd: Review request: 6563535, URLRepository.install] > Date: Tue, 07 Aug 2007 14:05:18 -0700 > From: Dave Bristor > To: modules-dev at openjdk.java.net > > Hi folks, > > Here's the notice I sent earlier: haven't received any feedback yet. I sent > this when JPRT wasn't running tests: all tests were then passing on Solaris; > I've got a x-platform jprt job running right now on the rest. > > Please note: when I did this work, platform & architecture were not available > from a module definition, so use of them is still not implemented: I will do > that as a separate task. OTOH, if anyone feels strongly, I could do it now. > > Thanks, > Dave > > -------- Original Message -------- > Subject: [modules-dev] Review request: 6563535, URLRepository.install > Date: Tue, 24 Jul 2007 17:24:27 -0700 > From: Dave Bristor > To: modules-dev at openjdk.java.net > > Hi folks, > > This one allows URLRepository.install() to succeed on URLRepositories created > with a file: URL. > > The review is ever-so-slightly preliminary; I've tested on solaris-x86 but > want to test on Windows also and will do so tomorrow. > > > bugster: http://monaco.sfbay/detail.jsf?cr=6563535 > webrev: http://javaweb.sfbay/java/jdk/ws/libs/rev/6563535/ > > > URLRepositoryTest is changed to verify that install() yields exceptions as > expected. > > URLRepoBuilder is changed so that it can build a single JAM, which is used by > URLRepoInstallTest; most of the changes are code movement. > > URLRepository is changed for implementation of install() and uninstall(). > Note also that, when a repository is initialized, if it is file-based and > repository-metadata.xml does not exist, it gets created. > > URLRepoInstallTest verifies that install works. It is a very basic test; > there are several error conditions that would be hard to check and so that's > not done now. > > Thanks, > Dave > _______________________________________________ > modules-dev mailing list > modules-dev at openjdk.java.net > http://mail.openjdk.java.net/mailman/listinfo/modules-dev > _______________________________________________ > modules-dev mailing list > modules-dev at openjdk.java.net > http://mail.openjdk.java.net/mailman/listinfo/modules-dev > > _______________________________________________ > modules-dev mailing list > modules-dev at openjdk.java.net > http://mail.openjdk.java.net/mailman/listinfo/modules-dev > -- Kumar Srinivasan Sun Microsystems, Java Software. 408-276-7586 From db13166 at pasilla.SFBay.Sun.COM Thu Aug 9 13:27:46 2007 From: db13166 at pasilla.SFBay.Sun.COM (David Bristor) Date: Thu, 9 Aug 2007 13:27:46 -0700 (PDT) Subject: [modules-dev] Code Manager notification (putback-to) Message-ID: <200708092027.l79KRkJV024045@pasilla.SFBay.Sun.COM> Event: putback-to Parent workspace: /net/shimmer.sfbay/export/home/jsr277/ws (shimmer.sfbay:/export/home/jsr277/ws) Child workspace: /data/ws/jam-install (pasilla:/data/ws/jam-install) User: db13166 Comment: 6563535 (repo) URLRepository.install() should allow file: protocol to install a module [kumar.srinivasan] Files: update: src/share/classes/sun/module/repository/URLRepository.java update: src/share/classes/sun/module/repository/RepositoryContents.java update: test/java/module/repository/URLRepoBuilder.java update: test/java/module/repository/URLRepositoryTest.java create: test/java/module/repository/URLRepoInstallTest.java Examined files: 5 Contents Summary: 1 create 4 update Names Summary: 1 update parent's name history 1 update children's name history From jprtadm at jprt-web.SFBay.Sun.COM Thu Aug 9 14:15:26 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Thu, 9 Aug 2007 14:15:26 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - success with job 2007-08-09-202803.daemon.ws Message-ID: <200708092115.l79LFQv7016658@jprt-web.SFBay.Sun.COM> JPRT: job notification - success with job 2007-08-09-202803.daemon.ws JPRT Job ID: 2007-08-09-202803.daemon.ws JPRT System Used: sfbay JPRT Version Used: 29 July 2007 - National Lasagna Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-09-202803.daemon.ws User: daemon Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*linux_i586.*product.*' -noquickabort -email modules-dev at openjdk.java.net -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Thu-20:27:50-GMT Total time in queue: 47m 36s Job started at: Thu-20:59:02-GMT Job finished at: Thu-21:15:26-GMT Job run time: 16m 24s Job state: success Job flags: Bundles: USE: jprt install 2007-08-09-202803.daemon.ws HINT: Use 'jprt rerun -comment -retest 2007-08-09-202803.daemon.ws' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): linux_i586_2.4-product success(12m 20s elapsed) Tests: linux_i586-product-c2-jvm98 success(01m 50s elapsed) linux_i586-product-c2-java/module success(02m 47s elapsed) linux_i586-product-c2-sun/module success(01m 02s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From as130790 at shimmer.sfbay.sun.com Thu Aug 9 16:13:33 2007 From: as130790 at shimmer.sfbay.sun.com (Andreas Sterbenz) Date: Thu, 9 Aug 2007 16:13:33 -0700 (PDT) Subject: [modules-dev] Code Manager notification (putback-to) Message-ID: <200708092313.l79NDX15021750@shimmer.sfbay.sun.com> Event: putback-to Parent workspace: /net/shimmer.sfbay/export/home/jsr277/ws (shimmer:/net/shimmer.sfbay/export/home/jsr277/ws) Child workspace: /net/shimmer.sfbay/export/home/as130790/277-merge/ws (shimmer:/net/shimmer.sfbay/export/home/as130790/277-merge/ws) User: as130790 Comment: Sync with TL Files: update: make/java/java/FILES_java.gmk update: make/tools/GenerateCurrencyData/GenerateCurrencyData.java update: src/share/classes/com/sun/tools/javac/code/Symtab.java update: src/share/classes/com/sun/tools/javac/code/Type.java update: src/share/classes/com/sun/tools/javac/code/Types.java update: src/share/classes/com/sun/tools/javac/comp/Enter.java update: src/share/classes/com/sun/tools/javac/jvm/ClassReader.java update: src/share/classes/com/sun/tools/javac/util/JavacFileManager.java update: src/share/classes/com/sun/tools/javac/util/Paths.java update: src/share/classes/java/lang/Thread.java update: src/share/classes/java/lang/ThreadGroup.java update: src/share/classes/java/util/CurrencyData.properties update: src/share/classes/javax/jws/HandlerChain.java update: src/share/classes/javax/jws/Oneway.java update: src/share/classes/javax/jws/WebMethod.java update: src/share/classes/javax/jws/WebParam.java update: src/share/classes/javax/jws/WebResult.java update: src/share/classes/javax/jws/WebService.java update: src/share/classes/javax/jws/soap/InitParam.java update: src/share/classes/javax/jws/soap/SOAPBinding.java update: src/share/classes/javax/jws/soap/SOAPMessageHandler.java update: src/share/classes/javax/jws/soap/SOAPMessageHandlers.java update: src/share/classes/sun/text/resources/FormatData_de_CH.java update: src/share/classes/sun/text/resources/FormatData_en_AU.java update: src/share/classes/sun/text/resources/FormatData_en_NZ.java update: src/share/classes/sun/text/resources/FormatData_en_ZA.java update: src/share/classes/sun/text/resources/FormatData_fr.java update: src/share/classes/sun/text/resources/FormatData_fr_BE.java update: src/share/classes/sun/text/resources/FormatData_fr_CA.java update: src/share/classes/sun/text/resources/FormatData_fr_CH.java update: src/share/classes/sun/text/resources/FormatData_is_IS.java update: src/share/classes/sun/text/resources/FormatData_nl.java update: src/share/classes/sun/text/resources/FormatData_tr.java update: src/share/classes/sun/text/resources/FormatData_tr_TR.java update: src/share/classes/sun/util/resources/CalendarData_sk.properties update: src/share/classes/sun/util/resources/CurrencyNames.properties update: src/share/classes/sun/util/resources/CurrencyNames_ar_SD.properties update: src/share/classes/sun/util/resources/CurrencyNames_es_VE.properties update: src/share/classes/sun/util/resources/LocaleNames_da.properties update: src/share/classes/sun/util/resources/LocaleNames_de.properties update: src/share/classes/sun/util/resources/LocaleNames_es.properties update: src/share/classes/sun/util/resources/LocaleNames_fi.properties update: src/share/classes/sun/util/resources/LocaleNames_fr.properties update: src/share/classes/sun/util/resources/LocaleNames_it.properties update: src/share/classes/sun/util/resources/LocaleNames_ja.properties update: src/share/classes/sun/util/resources/LocaleNames_ko.properties update: src/share/classes/sun/util/resources/LocaleNames_sv.properties update: src/share/classes/sun/util/resources/LocaleNames_zh.properties update: src/share/classes/sun/util/resources/LocaleNames_zh_TW.properties update: test/closed/java/text/Format/NumberFormat/NumberRegression.java update: test/java/util/Currency/CurrencyTest.java update: test/java/util/Currency/ValidateISO4217.java update: test/java/util/Currency/tablea1.txt update: test/sun/text/resources/LocaleData update: test/sun/text/resources/LocaleDataTest.java update: test/sun/util/resources/Locale/Bug4429024.java update: test/sun/util/resources/Locale/Bug4965260.java rename from: test/closed/com/sun/javadoc/testPackagePageInJar/TestPackageInJar.java to: deleted_files/test/closed/com/sun/javadoc/testPackagePageInJar/TestPackageInJar.java rename from: test/closed/com/sun/javadoc/testPackagePageInJar/server.jar to: deleted_files/test/closed/com/sun/javadoc/testPackagePageInJar/server.jar rename from: test/closed/com/sun/javadoc/testPackagePageInJar/src/org/cougaar/Version.java to: deleted_files/test/closed/com/sun/javadoc/testPackagePageInJar/src/org/cougaar/Version.java rename from: test/closed/com/sun/javadoc/testRefactoring/TestRefactoring.java to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/TestRefactoring.java rename from: test/closed/com/sun/javadoc/testRefactoring/expected_output.txt to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/expected_output.txt rename from: test/closed/com/sun/javadoc/testRefactoring/explainations_of_differences.txt to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/explainations_of_differences.txt rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/allclasses-frame.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/allclasses-frame.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/allclasses-noframe.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/allclasses-noframe.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/constant-values.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/constant-values.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/deprecated-list.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/deprecated-list.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/help-doc.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/help-doc.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/index-all.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/index-all.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/index.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/index.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/overview-frame.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/overview-frame.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/overview-summary.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/overview-summary.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/overview-tree.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/overview-tree.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/package-list to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/package-list rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/packages.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/packages.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/serialized-form.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/serialized-form.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/stylesheet.css to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/stylesheet.css rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/AbstractClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/AbstractClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Class1.AbstractNestedInterface.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Class1.AbstractNestedInterface.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Class1.NestedClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Class1.NestedClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Class1.NestedInterface.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Class1.NestedInterface.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Class1.NestedProtectedClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Class1.NestedProtectedClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Class1.NestedStaticClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Class1.NestedStaticClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Class1.NestedStaticProtectedClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Class1.NestedStaticProtectedClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Class1.ProtectedNestedInterface.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Class1.ProtectedNestedInterface.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Class1.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Class1.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/DeprecatedClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/DeprecatedClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Error1.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Error1.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Exception1.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Exception1.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/ExceptionSubClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/ExceptionSubClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/FinalClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/FinalClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Interface1.NestedInterface.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Interface1.NestedInterface.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Interface1.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Interface1.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Interface2.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/Interface2.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/MIFStyles.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/MIFStyles.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/SerializableClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/SerializableClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/SubClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/SubClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/SubClassOfNestedClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/SubClassOfNestedClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/SubInterface.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/SubInterface.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/SubInterfaceOfTwoInterfaces.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/SubInterfaceOfTwoInterfaces.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/package-frame.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/package-frame.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/package-summary.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/package-summary.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/package-tree.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/package-tree.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/package-use.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/package-use.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/AbstractClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/AbstractClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Class1.AbstractNestedInterface.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Class1.AbstractNestedInterface.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Class1.NestedClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Class1.NestedClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Class1.NestedInterface.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Class1.NestedInterface.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Class1.NestedProtectedClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Class1.NestedProtectedClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Class1.NestedStaticClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Class1.NestedStaticClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Class1.NestedStaticProtectedClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Class1.NestedStaticProtectedClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Class1.ProtectedNestedInterface.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Class1.ProtectedNestedInterface.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Class1.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Class1.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/DeprecatedClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/DeprecatedClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Error1.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Error1.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Exception1.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Exception1.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/ExceptionSubClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/ExceptionSubClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/FinalClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/FinalClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Interface1.NestedInterface.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Interface1.NestedInterface.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Interface1.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Interface1.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Interface2.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/Interface2.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/MIFStyles.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/MIFStyles.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/SerializableClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/SerializableClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/SubClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/SubClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/SubClassOfNestedClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/SubClassOfNestedClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/SubInterface.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/SubInterface.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/SubInterfaceOfTwoInterfaces.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/class-use/SubInterfaceOfTwoInterfaces.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/doc-files/Class1-example.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/doc-files/Class1-example.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/doc-files/network.gif to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/doc-files/network.gif rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/doc-files/package-intro.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/doc-files/package-intro.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/subpackage/SubPackageClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/subpackage/SubPackageClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/subpackage/package-frame.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/subpackage/package-frame.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/subpackage/package-summary.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/subpackage/package-summary.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/subpackage/package-tree.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/subpackage/package-tree.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/subpackage/package-use.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/subpackage/package-use.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/subpackage/class-use/SubPackageClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package1/subpackage/class-use/SubPackageClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package2/ClassInPackage2.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package2/ClassInPackage2.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package2/CrossPackageSubClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package2/CrossPackageSubClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package2/package-frame.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package2/package-frame.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package2/package-summary.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package2/package-summary.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package2/package-tree.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package2/package-tree.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package2/package-use.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package2/package-use.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package2/class-use/ClassInPackage2.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package2/class-use/ClassInPackage2.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package2/class-use/CrossPackageSubClass.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package2/class-use/CrossPackageSubClass.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package2/doc-files/TextArea-1.gif to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package2/doc-files/TextArea-1.gif rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/com/package2/doc-files/package-intro.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/com/package2/doc-files/package-intro.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/doc-files/appendix.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/doc-files/appendix.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/doc-files/colophon.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/doc-files/colophon.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/doc-files/conclusion.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/doc-files/conclusion.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/doc-files/design.fm to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/doc-files/design.fm rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/doc-files/goals.mif to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/doc-files/goals.mif rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/doc-files/introduction.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/doc-files/introduction.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/doc-files/network.gif to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/doc-files/network.gif rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/doc-files/preface.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/doc-files/preface.html rename from: test/closed/com/sun/javadoc/testRefactoring/mantis/resources/inherit.gif to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/mantis/resources/inherit.gif rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/overview.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/overview.html rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/AbstractClass.java to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/AbstractClass.java rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/Class1.java to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/Class1.java rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/DeprecatedClass.java to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/DeprecatedClass.java rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/Error1.java to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/Error1.java rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/Exception1.java to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/Exception1.java rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/ExceptionSubClass.java to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/ExceptionSubClass.java rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/FinalClass.java to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/FinalClass.java rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/Interface1.java to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/Interface1.java rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/Interface2.java to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/Interface2.java rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/MIFStyles.java to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/MIFStyles.java rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/PackagePrivateClass.java to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/PackagePrivateClass.java rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/SerializableClass.java to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/SerializableClass.java rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/SubClass.java to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/SubClass.java rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/SubClassOfNestedClass.java to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/SubClassOfNestedClass.java rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/SubInterface.java to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/SubInterface.java rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/SubInterfaceOfTwoInterfaces.java to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/SubInterfaceOfTwoInterfaces.java rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/package.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/package.html rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/doc-files/Class1-example.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/doc-files/Class1-example.html rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/doc-files/network.gif to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/doc-files/network.gif rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/doc-files/package-intro.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/doc-files/package-intro.html rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/subpackage/SubPackageClass.java to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package1/subpackage/SubPackageClass.java rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package2/ClassInPackage2.java to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package2/ClassInPackage2.java rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package2/CrossPackageSubClass.java to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package2/CrossPackageSubClass.java rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package2/package.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package2/package.html rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package2/doc-files/TextArea-1.gif to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package2/doc-files/TextArea-1.gif rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package2/doc-files/package-intro.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/com/package2/doc-files/package-intro.html rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/doc-files/appendix.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/doc-files/appendix.html rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/doc-files/colophon.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/doc-files/colophon.html rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/doc-files/conclusion.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/doc-files/conclusion.html rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/doc-files/design.fm to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/doc-files/design.fm rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/doc-files/goals.mif to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/doc-files/goals.mif rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/doc-files/introduction.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/doc-files/introduction.html rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/doc-files/network.gif to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/doc-files/network.gif rename from: test/closed/com/sun/javadoc/testRefactoring/sample-src/doc-files/preface.html to: deleted_files/test/closed/com/sun/javadoc/testRefactoring/sample-src/doc-files/preface.html create: src/share/classes/com/sun/tools/javac/zip/ZipFileIndex.java create: src/share/classes/com/sun/tools/javac/zip/ZipFileIndexEntry.java update: test/tools/apt/Basics/Aggregate.java rename from: test/closed/tools/apt/Basics/Aggregate.java to: test/tools/apt/Basics/Aggregate.java update: test/tools/apt/Basics/ClassAnnotations.java rename from: test/closed/tools/apt/Basics/ClassAnnotations.java to: test/tools/apt/Basics/ClassAnnotations.java update: test/tools/apt/Basics/FreshnessApf.java rename from: test/closed/tools/apt/Basics/FreshnessApf.java to: test/tools/apt/Basics/FreshnessApf.java update: test/tools/apt/Basics/GenClass.java rename from: test/closed/tools/apt/Basics/GenClass.java to: test/tools/apt/Basics/GenClass.java update: test/tools/apt/Basics/Indirect.java rename from: test/closed/tools/apt/Basics/Indirect.java to: test/tools/apt/Basics/Indirect.java update: test/tools/apt/Basics/Lacuna.java rename from: test/closed/tools/apt/Basics/Lacuna.java to: test/tools/apt/Basics/Lacuna.java update: test/tools/apt/Basics/MethodAnnotations.java rename from: test/closed/tools/apt/Basics/MethodAnnotations.java to: test/tools/apt/Basics/MethodAnnotations.java update: test/tools/apt/Basics/Milk.java rename from: test/closed/tools/apt/Basics/Milk.java to: test/tools/apt/Basics/Milk.java update: test/tools/apt/Basics/MisMatch.java rename from: test/closed/tools/apt/Basics/MisMatch.java to: test/tools/apt/Basics/MisMatch.java update: test/tools/apt/Basics/Misc.java rename from: test/closed/tools/apt/Basics/Misc.java to: test/tools/apt/Basics/Misc.java update: test/tools/apt/Basics/MyMarker.java rename from: test/closed/tools/apt/Basics/MyMarker.java to: test/tools/apt/Basics/MyMarker.java update: test/tools/apt/Basics/MySimple.java rename from: test/closed/tools/apt/Basics/MySimple.java to: test/tools/apt/Basics/MySimple.java update: test/tools/apt/Basics/NestedClassAnnotations.java rename from: test/closed/tools/apt/Basics/NestedClassAnnotations.java to: test/tools/apt/Basics/NestedClassAnnotations.java update: test/tools/apt/Basics/NullAPF.java rename from: test/closed/tools/apt/Basics/NullAPF.java to: test/tools/apt/Basics/NullAPF.java update: test/tools/apt/Basics/ParameterAnnotations.java rename from: test/closed/tools/apt/Basics/ParameterAnnotations.java to: test/tools/apt/Basics/ParameterAnnotations.java update: test/tools/apt/Basics/StaticFieldAnnotations.java rename from: test/closed/tools/apt/Basics/StaticFieldAnnotations.java to: test/tools/apt/Basics/StaticFieldAnnotations.java update: test/tools/apt/Basics/StaticMethodAnnotations.java rename from: test/closed/tools/apt/Basics/StaticMethodAnnotations.java to: test/tools/apt/Basics/StaticMethodAnnotations.java update: test/tools/apt/Basics/TestGetPackageApf.java rename from: test/closed/tools/apt/Basics/TestGetPackageApf.java to: test/tools/apt/Basics/TestGetPackageApf.java update: test/tools/apt/Basics/TestGetTypeDeclarationApf.java rename from: test/closed/tools/apt/Basics/TestGetTypeDeclarationApf.java to: test/tools/apt/Basics/TestGetTypeDeclarationApf.java rename from: test/closed/tools/apt/Basics/apt.sh to: test/tools/apt/Basics/apt.sh rename from: test/closed/tools/apt/Basics/com.sun.mirror.apt.AnnotationProcessorFactory to: test/tools/apt/Basics/com.sun.mirror.apt.AnnotationProcessorFactory rename from: test/closed/tools/apt/Basics/golden.txt to: test/tools/apt/Basics/golden.txt rename from: test/closed/tools/apt/Basics/goldenAggregate.txt to: test/tools/apt/Basics/goldenAggregate.txt rename from: test/closed/tools/apt/Basics/print.sh to: test/tools/apt/Basics/print.sh update: test/tools/apt/Basics/annot/AnnotMarker.java rename from: test/closed/tools/apt/Basics/annot/AnnotMarker.java to: test/tools/apt/Basics/annot/AnnotMarker.java update: test/tools/apt/Basics/annot/AnnotShangri_la.java rename from: test/closed/tools/apt/Basics/annot/AnnotShangri_la.java to: test/tools/apt/Basics/annot/AnnotShangri_la.java update: test/tools/apt/Basics/annot/AnnotSimple.java rename from: test/closed/tools/apt/Basics/annot/AnnotSimple.java to: test/tools/apt/Basics/annot/AnnotSimple.java update: test/tools/apt/Basics/annot/annot2/AnnotMarker2.java rename from: test/closed/tools/apt/Basics/annot/annot2/AnnotMarker2.java to: test/tools/apt/Basics/annot/annot2/AnnotMarker2.java update: test/tools/apt/Basics/annot/annot2/AnnotSimple2.java rename from: test/closed/tools/apt/Basics/annot/annot2/AnnotSimple2.java to: test/tools/apt/Basics/annot/annot2/AnnotSimple2.java update: test/tools/apt/Basics/foo/bar/Baz.java rename from: test/closed/tools/apt/Basics/foo/bar/Baz.java to: test/tools/apt/Basics/foo/bar/Baz.java update: test/tools/apt/Basics/foo/bar/Quux.java rename from: test/closed/tools/apt/Basics/foo/bar/Quux.java to: test/tools/apt/Basics/foo/bar/Quux.java update: test/tools/apt/Basics/p1/p2.java rename from: test/closed/tools/apt/Basics/p1/p2.java to: test/tools/apt/Basics/p1/p2.java update: test/tools/apt/Basics/p1/p2/C1.java rename from: test/closed/tools/apt/Basics/p1/p2/C1.java to: test/tools/apt/Basics/p1/p2/C1.java update: test/tools/apt/Compile/ClassDeclApf.java rename from: test/closed/tools/apt/Compile/ClassDeclApf.java to: test/tools/apt/Compile/ClassDeclApf.java update: test/tools/apt/Compile/ClassDeclApf2.java rename from: test/closed/tools/apt/Compile/ClassDeclApf2.java to: test/tools/apt/Compile/ClassDeclApf2.java update: test/tools/apt/Compile/Dummy1.java rename from: test/closed/tools/apt/Compile/Dummy1.java to: test/tools/apt/Compile/Dummy1.java update: test/tools/apt/Compile/ErrorAPF.java rename from: test/closed/tools/apt/Compile/ErrorAPF.java to: test/tools/apt/Compile/ErrorAPF.java update: test/tools/apt/Compile/HelloAnnotation.java rename from: test/closed/tools/apt/Compile/HelloAnnotation.java to: test/tools/apt/Compile/HelloAnnotation.java update: test/tools/apt/Compile/HelloWorld.java rename from: test/closed/tools/apt/Compile/HelloWorld.java to: test/tools/apt/Compile/HelloWorld.java update: test/tools/apt/Compile/Round1Apf.java rename from: test/closed/tools/apt/Compile/Round1Apf.java to: test/tools/apt/Compile/Round1Apf.java update: test/tools/apt/Compile/Round2Apf.java rename from: test/closed/tools/apt/Compile/Round2Apf.java to: test/tools/apt/Compile/Round2Apf.java update: test/tools/apt/Compile/Round3Apf.java rename from: test/closed/tools/apt/Compile/Round3Apf.java to: test/tools/apt/Compile/Round3Apf.java update: test/tools/apt/Compile/Round4Apf.java rename from: test/closed/tools/apt/Compile/Round4Apf.java to: test/tools/apt/Compile/Round4Apf.java update: test/tools/apt/Compile/Rounds.java rename from: test/closed/tools/apt/Compile/Rounds.java to: test/tools/apt/Compile/Rounds.java update: test/tools/apt/Compile/StaticApf.java rename from: test/closed/tools/apt/Compile/StaticApf.java to: test/tools/apt/Compile/StaticApf.java update: test/tools/apt/Compile/WarnAPF.java rename from: test/closed/tools/apt/Compile/WarnAPF.java to: test/tools/apt/Compile/WarnAPF.java update: test/tools/apt/Compile/WrappedStaticApf.java rename from: test/closed/tools/apt/Compile/WrappedStaticApf.java to: test/tools/apt/Compile/WrappedStaticApf.java rename from: test/closed/tools/apt/Compile/compile.sh to: test/tools/apt/Compile/compile.sh update: test/tools/apt/Compile/golden.txt rename from: test/closed/tools/apt/Compile/golden.txt to: test/tools/apt/Compile/golden.txt rename from: test/closed/tools/apt/Compile/goldenFactory.txt to: test/tools/apt/Compile/goldenFactory.txt update: test/tools/apt/Compile/goldenWarn.txt rename from: test/closed/tools/apt/Compile/goldenWarn.txt to: test/tools/apt/Compile/goldenWarn.txt rename from: test/closed/tools/apt/Compile/servicesRound1 to: test/tools/apt/Compile/servicesRound1 rename from: test/closed/tools/apt/Compile/servicesRound2 to: test/tools/apt/Compile/servicesRound2 rename from: test/closed/tools/apt/Compile/servicesRound3 to: test/tools/apt/Compile/servicesRound3 rename from: test/closed/tools/apt/Compile/servicesRound4 to: test/tools/apt/Compile/servicesRound4 rename from: test/closed/tools/apt/Compile/servicesStaticApf to: test/tools/apt/Compile/servicesStaticApf update: test/tools/apt/Compile/src/AhOneClass.java rename from: test/closed/tools/apt/Compile/src/AhOneClass.java to: test/tools/apt/Compile/src/AhOneClass.java update: test/tools/apt/Compile/src/AndAhTwoClass.java rename from: test/closed/tools/apt/Compile/src/AndAhTwoClass.java to: test/tools/apt/Compile/src/AndAhTwoClass.java update: test/tools/apt/Compile/src/Round1Class.java rename from: test/closed/tools/apt/Compile/src/Round1Class.java to: test/tools/apt/Compile/src/Round1Class.java update: test/tools/apt/Discovery/Dee.java rename from: test/closed/tools/apt/Discovery/Dee.java to: test/tools/apt/Discovery/Dee.java update: test/tools/apt/Discovery/Dum.java rename from: test/closed/tools/apt/Discovery/Dum.java to: test/tools/apt/Discovery/Dum.java update: test/tools/apt/Discovery/Empty.java rename from: test/closed/tools/apt/Discovery/Empty.java to: test/tools/apt/Discovery/Empty.java update: test/tools/apt/Discovery/PhantomTouch.java rename from: test/closed/tools/apt/Discovery/PhantomTouch.java to: test/tools/apt/Discovery/PhantomTouch.java update: test/tools/apt/Discovery/PhantomUpdate.java rename from: test/closed/tools/apt/Discovery/PhantomUpdate.java to: test/tools/apt/Discovery/PhantomUpdate.java update: test/tools/apt/Discovery/Touch.java rename from: test/closed/tools/apt/Discovery/Touch.java to: test/tools/apt/Discovery/Touch.java rename from: test/closed/tools/apt/Discovery/discovery.sh to: test/tools/apt/Discovery/discovery.sh rename from: test/closed/tools/apt/Discovery/servicesBadTouch to: test/tools/apt/Discovery/servicesBadTouch rename from: test/closed/tools/apt/Discovery/servicesPhantomTouch to: test/tools/apt/Discovery/servicesPhantomTouch rename from: test/closed/tools/apt/Discovery/servicesTouch to: test/tools/apt/Discovery/servicesTouch rename from: test/closed/tools/apt/Discovery/servicesTweedle to: test/tools/apt/Discovery/servicesTweedle update: test/tools/apt/Misc/Marked.java rename from: test/closed/tools/apt/Misc/Marked.java to: test/tools/apt/Misc/Marked.java update: test/tools/apt/Misc/Marker.java rename from: test/closed/tools/apt/Misc/Marker.java to: test/tools/apt/Misc/Marker.java update: test/tools/apt/Misc/Misc.java rename from: test/closed/tools/apt/Misc/Misc.java to: test/tools/apt/Misc/Misc.java rename from: test/closed/tools/apt/Misc/misc.sh to: test/tools/apt/Misc/misc.sh rename from: test/closed/tools/apt/Misc/servicesMisc to: test/tools/apt/Misc/servicesMisc update: test/tools/apt/Options/Marked.java rename from: test/closed/tools/apt/Options/Marked.java to: test/tools/apt/Options/Marked.java update: test/tools/apt/Options/Marker.java rename from: test/closed/tools/apt/Options/Marker.java to: test/tools/apt/Options/Marker.java update: test/tools/apt/Options/OptionChecker.java rename from: test/closed/tools/apt/Options/OptionChecker.java to: test/tools/apt/Options/OptionChecker.java rename from: test/closed/tools/apt/Options/options.sh to: test/tools/apt/Options/options.sh rename from: test/closed/tools/apt/Options/servicesOptions to: test/tools/apt/Options/servicesOptions rename from: test/closed/tools/apt/verifyVariables.sh to: test/tools/apt/verifyVariables.sh update: test/tools/apt/Scanners/Counter.java rename from: test/closed/tools/apt/Scanners/Counter.java to: test/tools/apt/Scanners/Counter.java update: test/tools/apt/Scanners/MemberOrderApf.java rename from: test/closed/tools/apt/Scanners/MemberOrderApf.java to: test/tools/apt/Scanners/MemberOrderApf.java update: test/tools/apt/Scanners/Order.java rename from: test/closed/tools/apt/Scanners/Order.java to: test/tools/apt/Scanners/Order.java update: test/tools/apt/Scanners/Scanner.java rename from: test/closed/tools/apt/Scanners/Scanner.java to: test/tools/apt/Scanners/Scanner.java update: test/tools/apt/Scanners/TestEnum.java rename from: test/closed/tools/apt/Scanners/TestEnum.java to: test/tools/apt/Scanners/TestEnum.java update: test/tools/apt/Scanners/VisitOrder.java rename from: test/closed/tools/apt/Scanners/VisitOrder.java to: test/tools/apt/Scanners/VisitOrder.java rename from: test/closed/tools/apt/Scanners/scanner.sh to: test/tools/apt/Scanners/scanner.sh rename from: test/closed/tools/apt/Scanners/servicesScanner to: test/tools/apt/Scanners/servicesScanner update: test/tools/apt/lib/Ignore.java rename from: test/closed/tools/apt/lib/Ignore.java to: test/tools/apt/lib/Ignore.java update: test/tools/apt/lib/Test.java rename from: test/closed/tools/apt/lib/Test.java to: test/tools/apt/lib/Test.java update: test/tools/apt/lib/TestProcessor.java rename from: test/closed/tools/apt/lib/TestProcessor.java to: test/tools/apt/lib/TestProcessor.java update: test/tools/apt/lib/TestProcessorFactory.java rename from: test/closed/tools/apt/lib/TestProcessorFactory.java to: test/tools/apt/lib/TestProcessorFactory.java update: test/tools/apt/lib/Tester.java rename from: test/closed/tools/apt/lib/Tester.java to: test/tools/apt/lib/Tester.java update: test/tools/apt/mirror/declaration/AnnoMirror.java rename from: test/closed/tools/apt/mirror/declaration/AnnoMirror.java to: test/tools/apt/mirror/declaration/AnnoMirror.java update: test/tools/apt/mirror/declaration/AnnoTypeDecl.java rename from: test/closed/tools/apt/mirror/declaration/AnnoTypeDecl.java to: test/tools/apt/mirror/declaration/AnnoTypeDecl.java update: test/tools/apt/mirror/declaration/AnnoTypeElemDecl.java rename from: test/closed/tools/apt/mirror/declaration/AnnoTypeElemDecl.java to: test/tools/apt/mirror/declaration/AnnoTypeElemDecl.java update: test/tools/apt/mirror/declaration/AnnoVal.java rename from: test/closed/tools/apt/mirror/declaration/AnnoVal.java to: test/tools/apt/mirror/declaration/AnnoVal.java update: test/tools/apt/mirror/declaration/ClassDecl.java rename from: test/closed/tools/apt/mirror/declaration/ClassDecl.java to: test/tools/apt/mirror/declaration/ClassDecl.java update: test/tools/apt/mirror/declaration/ConstExpr.java rename from: test/closed/tools/apt/mirror/declaration/ConstExpr.java to: test/tools/apt/mirror/declaration/ConstExpr.java update: test/tools/apt/mirror/declaration/ConstructorDecl.java rename from: test/closed/tools/apt/mirror/declaration/ConstructorDecl.java to: test/tools/apt/mirror/declaration/ConstructorDecl.java update: test/tools/apt/mirror/declaration/EnumDecl.java rename from: test/closed/tools/apt/mirror/declaration/EnumDecl.java to: test/tools/apt/mirror/declaration/EnumDecl.java update: test/tools/apt/mirror/declaration/FieldDecl.java rename from: test/closed/tools/apt/mirror/declaration/FieldDecl.java to: test/tools/apt/mirror/declaration/FieldDecl.java update: test/tools/apt/mirror/declaration/GetAnno.java rename from: test/closed/tools/apt/mirror/declaration/GetAnno.java to: test/tools/apt/mirror/declaration/GetAnno.java update: test/tools/apt/mirror/declaration/InterfaceDecl.java rename from: test/closed/tools/apt/mirror/declaration/InterfaceDecl.java to: test/tools/apt/mirror/declaration/InterfaceDecl.java update: test/tools/apt/mirror/declaration/MethodDecl.java rename from: test/closed/tools/apt/mirror/declaration/MethodDecl.java to: test/tools/apt/mirror/declaration/MethodDecl.java update: test/tools/apt/mirror/declaration/PackageDecl.java rename from: test/closed/tools/apt/mirror/declaration/PackageDecl.java to: test/tools/apt/mirror/declaration/PackageDecl.java update: test/tools/apt/mirror/declaration/ParameterDecl.java rename from: test/closed/tools/apt/mirror/declaration/ParameterDecl.java to: test/tools/apt/mirror/declaration/ParameterDecl.java update: test/tools/apt/mirror/declaration/pkg1/AClass.java rename from: test/closed/tools/apt/mirror/declaration/pkg1/AClass.java to: test/tools/apt/mirror/declaration/pkg1/AClass.java update: test/tools/apt/mirror/declaration/pkg1/AnAnnoType.java rename from: test/closed/tools/apt/mirror/declaration/pkg1/AnAnnoType.java to: test/tools/apt/mirror/declaration/pkg1/AnAnnoType.java update: test/tools/apt/mirror/declaration/pkg1/AnEnum.java rename from: test/closed/tools/apt/mirror/declaration/pkg1/AnEnum.java to: test/tools/apt/mirror/declaration/pkg1/AnEnum.java update: test/tools/apt/mirror/declaration/pkg1/AnInterface.java rename from: test/closed/tools/apt/mirror/declaration/pkg1/AnInterface.java to: test/tools/apt/mirror/declaration/pkg1/AnInterface.java update: test/tools/apt/mirror/declaration/pkg1/package-info.java rename from: test/closed/tools/apt/mirror/declaration/pkg1/package-info.java to: test/tools/apt/mirror/declaration/pkg1/package-info.java update: test/tools/apt/mirror/declaration/pkg1/pkg2/AnInterface.java rename from: test/closed/tools/apt/mirror/declaration/pkg1/pkg2/AnInterface.java to: test/tools/apt/mirror/declaration/pkg1/pkg2/AnInterface.java rename from: test/closed/tools/apt/mirror/declaration/pkg1/pkg2/package.html to: test/tools/apt/mirror/declaration/pkg1/pkg2/package.html update: test/tools/apt/mirror/type/AnnoTyp.java rename from: test/closed/tools/apt/mirror/type/AnnoTyp.java to: test/tools/apt/mirror/type/AnnoTyp.java update: test/tools/apt/mirror/type/ArrayTyp.java rename from: test/closed/tools/apt/mirror/type/ArrayTyp.java to: test/tools/apt/mirror/type/ArrayTyp.java update: test/tools/apt/mirror/type/ClassTyp.java rename from: test/closed/tools/apt/mirror/type/ClassTyp.java to: test/tools/apt/mirror/type/ClassTyp.java update: test/tools/apt/mirror/type/EnumTyp.java rename from: test/closed/tools/apt/mirror/type/EnumTyp.java to: test/tools/apt/mirror/type/EnumTyp.java update: test/tools/apt/mirror/type/InterfaceTyp.java rename from: test/closed/tools/apt/mirror/type/InterfaceTyp.java to: test/tools/apt/mirror/type/InterfaceTyp.java update: test/tools/apt/mirror/type/PrimitiveTyp.java rename from: test/closed/tools/apt/mirror/type/PrimitiveTyp.java to: test/tools/apt/mirror/type/PrimitiveTyp.java update: test/tools/apt/mirror/type/TypeVar.java rename from: test/closed/tools/apt/mirror/type/TypeVar.java to: test/tools/apt/mirror/type/TypeVar.java update: test/tools/apt/mirror/type/WildcardTyp.java rename from: test/closed/tools/apt/mirror/type/WildcardTyp.java to: test/tools/apt/mirror/type/WildcardTyp.java update: test/tools/apt/mirror/util/Overrides.java rename from: test/closed/tools/apt/mirror/util/Overrides.java to: test/tools/apt/mirror/util/Overrides.java update: test/tools/apt/mirror/util/TypeCreation.java rename from: test/closed/tools/apt/mirror/util/TypeCreation.java to: test/tools/apt/mirror/util/TypeCreation.java update: test/tools/javah/6257087/foo.java rename from: test/closed/tools/javah/6257087/foo.java to: test/tools/javah/6257087/foo.java rename from: test/closed/tools/javah/6257087/foo.sh to: test/tools/javah/6257087/foo.sh rename from: test/closed/tools/javah/6257087/foo_bar.h to: test/tools/javah/6257087/foo_bar.h rename from: test/closed/tools/javah/ConstMacroTest.sh to: test/tools/javah/ConstMacroTest.sh update: test/tools/javah/MissingParamClassException.java rename from: test/closed/tools/javah/MissingParamClassException.java to: test/tools/javah/MissingParamClassException.java rename from: test/closed/tools/javah/MissingParamClassTest.sh to: test/tools/javah/MissingParamClassTest.sh update: test/tools/javah/ParamClassTest.java rename from: test/closed/tools/javah/ParamClassTest.java to: test/tools/javah/ParamClassTest.java rename from: test/closed/tools/javah/ReadOldClass.sh to: test/tools/javah/ReadOldClass.sh update: test/tools/javah/SubClassConsts.java rename from: test/closed/tools/javah/SubClassConsts.java to: test/tools/javah/SubClassConsts.java rename from: test/closed/tools/javah/SubClassConsts.out to: test/tools/javah/SubClassConsts.out rename from: test/closed/tools/javah/SubClassConsts.win to: test/tools/javah/SubClassConsts.win update: test/tools/javah/SuperClassConsts.java rename from: test/closed/tools/javah/SuperClassConsts.java to: test/tools/javah/SuperClassConsts.java update: test/tools/javap/ExtPath.java rename from: test/closed/tools/javap/ExtPath.java to: test/tools/javap/ExtPath.java update: test/tools/javap/NotPackagePrivateInterface.java rename from: test/closed/tools/javap/NotPackagePrivateInterface.java to: test/tools/javap/NotPackagePrivateInterface.java rename from: test/closed/tools/javap/PublicInterfaceTest.sh to: test/tools/javap/PublicInterfaceTest.sh rename from: test/closed/tools/javap/pathsep.sh to: test/tools/javap/pathsep.sh update: test/tools/javap/stackmap/T6271292.java rename from: test/closed/tools/javap/stackmap/T6271292.java to: test/tools/javap/stackmap/T6271292.java rename from: test/closed/tools/javap/stackmap/T6271292.out to: test/tools/javap/stackmap/T6271292.out rename from: test/closed/tools/javap/stackmap/T6271292.sh to: test/tools/javap/stackmap/T6271292.sh create: test/sun/util/resources/Locale/Bug6275682.java create: test/tools/javac/6589361/T6589361.java Examined files: 38543 Contents Summary: 4 create 165 update 38374 no action (unchanged) Names Summary: 277 renamed 169 update parent's name history From jprtadm at jprt-web.SFBay.Sun.COM Thu Aug 9 21:59:15 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Thu, 9 Aug 2007 21:59:15 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - success with job 2007-08-09-231601.daemon.jsr277-putback Message-ID: <200708100459.l7A4xFrv017026@jprt-web.SFBay.Sun.COM> JPRT: job notification - success with job 2007-08-09-231601.daemon.jsr277-putback JPRT Job ID: 2007-08-09-231601.daemon.jsr277-putback JPRT System Used: sfbay JPRT Version Used: 29 July 2007 - National Lasagna Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-09-231601.daemon.jsr277-putback User: daemon Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*linux_i586.*product.*' -noquickabort -email modules-dev at openjdk.java.net -id jsr277-putback Job submitted at: Thu-23:15:47-GMT Total time in queue: 5h 43m 28s Job started at: Fri-04:43:47-GMT Job finished at: Fri-04:59:15-GMT Job run time: 15m 28s Job state: success Job flags: Bundles: USE: jprt install 2007-08-09-231601.daemon.jsr277-putback HINT: Use 'jprt rerun -comment -retest 2007-08-09-231601.daemon.jsr277-putback' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): linux_i586_2.4-product success(12m 02s elapsed) Tests: linux_i586-product-c2-jvm98 success(01m 55s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From jprtadm at jprt-web.SFBay.Sun.COM Thu Aug 9 22:14:36 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Thu, 9 Aug 2007 22:14:36 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - success with job 2007-08-09-232346.daemon.jsr277-putback Message-ID: <200708100514.l7A5Ea9r017043@jprt-web.SFBay.Sun.COM> JPRT: job notification - success with job 2007-08-09-232346.daemon.jsr277-putback JPRT Job ID: 2007-08-09-232346.daemon.jsr277-putback JPRT System Used: sfbay JPRT Version Used: 29 July 2007 - National Lasagna Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-09-232346.daemon.jsr277-putback User: daemon Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*linux_i586.*product.*' -noquickabort -email modules-dev at openjdk.java.net -id jsr277-putback -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Thu-23:23:33-GMT Total time in queue: 5h 51m 03s Job started at: Fri-04:59:28-GMT Job finished at: Fri-05:14:36-GMT Job run time: 15m 08s Job state: success Job flags: Bundles: USE: jprt install 2007-08-09-232346.daemon.jsr277-putback HINT: Use 'jprt rerun -comment -retest 2007-08-09-232346.daemon.jsr277-putback' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): linux_i586_2.4-product success(11m 18s elapsed) Tests: linux_i586-product-c2-jvm98 success(01m 58s elapsed) linux_i586-product-c2-java/module success(01m 44s elapsed) linux_i586-product-c2-sun/module success( 46s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From andreas.sterbenz at sun.com Fri Aug 10 06:00:25 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Fri, 10 Aug 2007 06:00:25 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708101300.l7AD0Pmw013731@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070810/9c86ad88/attachment.html From db13166 at pasilla.SFBay.Sun.COM Fri Aug 10 09:17:02 2007 From: db13166 at pasilla.SFBay.Sun.COM (David Bristor) Date: Fri, 10 Aug 2007 09:17:02 -0700 (PDT) Subject: [modules-dev] Code Manager notification (putback-to) Message-ID: <200708101617.l7AGH2W3017354@pasilla.SFBay.Sun.COM> Event: putback-to Parent workspace: /net/shimmer.sfbay/export/home/jsr277/ws (shimmer.sfbay:/export/home/jsr277/ws) Child workspace: /java/tl/libs/bristor/jam-crights (jano2.SFBay.Sun.COM:/export2/tl/libs/bristor/jam-crights) User: db13166 Comment: 6575310 Some files have incorrect or missing file header [andreas.sterbenz] Files: update: src/share/classes/java/module/annotation/ResourceModuleConstraint.java update: test/java/module/basic/Utils.java update: test/java/module/basic/BasicLauncherTests.java update: test/java/module/version/VersionConstraintTest.java update: test/java/module/version/VersionTest.java update: test/java/module/query/QueryTest.java update: test/java/module/config/DefaultVisibilityPolicy/DefaultVisibilityPolicyTest.java update: test/java/module/config/VisibilityPolicyFile/VisibilityPolicyFileTest.java update: test/java/module/config/DefaultImportOverridePolicy/DefaultImportOverridePolicyTest.java update: test/java/module/config/ImportOverridePolicyFile/ImportOverridePolicyFileTest.java update: test/sun/module/repository/ModuleInfoXMLReaderTest.java Examined files: 11 Contents Summary: 11 update From jprtadm at jprt-web.SFBay.Sun.COM Fri Aug 10 09:53:03 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Fri, 10 Aug 2007 09:53:03 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - success with job 2007-08-10-111319.as130790.jsr277-nightly Message-ID: <200708101653.l7AGr31t021451@jprt-web.SFBay.Sun.COM> JPRT: job notification - success with job 2007-08-10-111319.as130790.jsr277-nightly JPRT Job ID: 2007-08-10-111319.as130790.jsr277-nightly JPRT System Used: sfbay JPRT Version Used: 29 July 2007 - National Lasagna Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-10-111319.as130790.jsr277-nightly User: as130790 Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*product.*' -noquickabort -email modules-dev at openjdk.java.net -id jsr277-nightly -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Fri-11:13:06-GMT Total time in queue: 5h 39m 57s Job started at: Fri-15:31:58-GMT Job finished at: Fri-16:53:03-GMT Job run time: 1h 21m 05s Job state: success Job flags: Bundles: USE: jprt install 2007-08-10-111319.as130790.jsr277-nightly HINT: Use 'jprt rerun -comment -retest 2007-08-10-111319.as130790.jsr277-nightly' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): solaris_sparc_5.8-product success(25m 07s elapsed) solaris_sparcv9_5.8-product success(26m 24s elapsed) solaris_i586_5.8-product success(52m 43s elapsed) solaris_x64_5.10-product success(10m 03s elapsed) linux_i586_2.4-product success(11m 23s elapsed) linux_x64_2.4-product success(13m 18s elapsed) windows_i586_5-product success(36m 49s elapsed) windows_x64_5.2-product success(44m 15s elapsed) Tests: solaris_sparc-product-c2-jvm98 success(03m 18s elapsed) solaris_sparcv9-product-c2-jvm98 success(02m 50s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-jvm98 success(02m 43s elapsed) solaris_x64-product-c2-jvm98 success(01m 56s elapsed) linux_i586-product-c2-jvm98 success(01m 58s elapsed) linux_x64-product-c2-jvm98 success(01m 43s elapsed) windows_i586-product-c2-jvm98 success(03m 10s elapsed) windows_x64-product-c2-jvm98 success(01m 50s elapsed) solaris_sparc-product-c2-java/module success(01m 31s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_sparcv9-product-c2-java/module success(01m 36s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-java/module success(09m 25s elapsed) solaris_x64-product-c2-java/module success(01m 00s elapsed) linux_i586-product-c2-java/module success(01m 49s elapsed) linux_x64-product-c2-java/module success(01m 07s elapsed) windows_i586-product-c2-java/module success(05m 30s elapsed) windows_x64-product-c2-java/module success(04m 02s elapsed) solaris_sparc-product-c2-sun/module success( 36s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_sparcv9-product-c2-sun/module success( 35s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-sun/module success(07m 32s elapsed) solaris_x64-product-c2-sun/module success( 18s elapsed) linux_i586-product-c2-sun/module success( 42s elapsed) linux_x64-product-c2-sun/module success( 21s elapsed) windows_i586-product-c2-sun/module success(03m 16s elapsed) windows_x64-product-c2-sun/module success(02m 29s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From jprtadm at jprt-web.SFBay.Sun.COM Fri Aug 10 10:08:46 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Fri, 10 Aug 2007 10:08:46 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - success with job 2007-08-10-161720.daemon.jsr277-putback Message-ID: <200708101708.l7AH8kp8021467@jprt-web.SFBay.Sun.COM> JPRT: job notification - success with job 2007-08-10-161720.daemon.jsr277-putback JPRT Job ID: 2007-08-10-161720.daemon.jsr277-putback JPRT System Used: sfbay JPRT Version Used: 29 July 2007 - National Lasagna Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-10-161720.daemon.jsr277-putback User: daemon Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*linux_i586.*product.*' -noquickabort -email modules-dev at openjdk.java.net -id jsr277-putback -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Fri-16:17:06-GMT Total time in queue: 51m 39s Job started at: Fri-16:53:15-GMT Job finished at: Fri-17:08:45-GMT Job run time: 15m 30s Job state: success Job flags: Bundles: USE: jprt install 2007-08-10-161720.daemon.jsr277-putback HINT: Use 'jprt rerun -comment -retest 2007-08-10-161720.daemon.jsr277-putback' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): linux_i586_2.4-product success(11m 38s elapsed) Tests: linux_i586-product-c2-jvm98 success(01m 56s elapsed) linux_i586-product-c2-java/module success(01m 34s elapsed) linux_i586-product-c2-sun/module success( 44s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From mcconnell at dpml.net Fri Aug 10 10:20:24 2007 From: mcconnell at dpml.net (Stephen J. McConnell) Date: Sat, 11 Aug 2007 02:50:24 +0930 Subject: [modules-dev] Binary downloads ... (was RE: JPRT: job notification - success with job2007-08-10-111319.as130790.jsr277-nightly) In-Reply-To: <200708101653.l7AGr31t021451@jprt-web.SFBay.Sun.COM> References: <200708101653.l7AGr31t021451@jprt-web.SFBay.Sun.COM> Message-ID: <00ad01c7db72$bdb0e530$0301a8c0@julia> It would be a real plus if the builds listed below were made available for download. I really want to get into some early evaluation/feedback on the modules content but building from source at this time is not a realistic option. Is this subject (periodic public downloads of module binaries) under consideration? If so, can anyone provide a qualified timeframe? If not, what are the possible actions that I could take to change the status-quo? Cheers, Steve. -----Original Message----- From: modules-dev-bounces at openjdk.java.net [mailto:modules-dev-bounces at openjdk.java.net] On Behalf Of JPRT Administrator Sent: Saturday, 11 August 2007 2:23 AM To: modules-dev at openjdk.java.net Cc: jprt-notify at sun.com Subject: [modules-dev] JPRT: job notification - success with job2007-08-10-111319.as130790.jsr277-nightly JPRT: job notification - success with job 2007-08-10-111319.as130790.jsr277-nightly JPRT Job ID: 2007-08-10-111319.as130790.jsr277-nightly JPRT System Used: sfbay JPRT Version Used: 29 July 2007 - National Lasagna Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-10-111319.as130790.jsr 277-nightly User: as130790 Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*product.*' -noquickabort -email modules-dev at openjdk.java.net -id jsr277-nightly -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Fri-11:13:06-GMT Total time in queue: 5h 39m 57s Job started at: Fri-15:31:58-GMT Job finished at: Fri-16:53:03-GMT Job run time: 1h 21m 05s Job state: success Job flags: Bundles: USE: jprt install 2007-08-10-111319.as130790.jsr277-nightly HINT: Use 'jprt rerun -comment -retest 2007-08-10-111319.as130790.jsr277-nightly' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): solaris_sparc_5.8-product success(25m 07s elapsed) solaris_sparcv9_5.8-product success(26m 24s elapsed) solaris_i586_5.8-product success(52m 43s elapsed) solaris_x64_5.10-product success(10m 03s elapsed) linux_i586_2.4-product success(11m 23s elapsed) linux_x64_2.4-product success(13m 18s elapsed) windows_i586_5-product success(36m 49s elapsed) windows_x64_5.2-product success(44m 15s elapsed) Tests: solaris_sparc-product-c2-jvm98 success(03m 18s elapsed) solaris_sparcv9-product-c2-jvm98 success(02m 50s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-jvm98 success(02m 43s elapsed) solaris_x64-product-c2-jvm98 success(01m 56s elapsed) linux_i586-product-c2-jvm98 success(01m 58s elapsed) linux_x64-product-c2-jvm98 success(01m 43s elapsed) windows_i586-product-c2-jvm98 success(03m 10s elapsed) windows_x64-product-c2-jvm98 success(01m 50s elapsed) solaris_sparc-product-c2-java/module success(01m 31s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_sparcv9-product-c2-java/module success(01m 36s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-java/module success(09m 25s elapsed) solaris_x64-product-c2-java/module success(01m 00s elapsed) linux_i586-product-c2-java/module success(01m 49s elapsed) linux_x64-product-c2-java/module success(01m 07s elapsed) windows_i586-product-c2-java/module success(05m 30s elapsed) windows_x64-product-c2-java/module success(04m 02s elapsed) solaris_sparc-product-c2-sun/module success( 36s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_sparcv9-product-c2-sun/module success( 35s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-sun/module success(07m 32s elapsed) solaris_x64-product-c2-sun/module success( 18s elapsed) linux_i586-product-c2-sun/module success( 42s elapsed) linux_x64-product-c2-sun/module success( 21s elapsed) windows_i586-product-c2-sun/module success(03m 16s elapsed) windows_x64-product-c2-sun/module success(02m 29s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. _______________________________________________ modules-dev mailing list modules-dev at openjdk.java.net http://mail.openjdk.java.net/mailman/listinfo/modules-dev From David.Bristor at Sun.COM Fri Aug 10 18:59:43 2007 From: David.Bristor at Sun.COM (Dave Bristor) Date: Fri, 10 Aug 2007 18:59:43 -0700 Subject: [modules-dev] Review request: 6589789, JRepo support for module install, uninstall Message-ID: <46BD180F.9050605@sun.com> Building on top of 6563535 which I checked in this week, here is support for installing and uninstalling modules using JRepo. The usage becomes: Usage: jrepo , where command is follows one of the patterns below list [-v] [-p] [-r repositoryLocation] moduleName install [-v] -r repositoryLocation jamFile | jamURL uninstall [-v] [-f | -i] -r repositoryLocation moduleName [moduleVersion] [modulePlatformBinding] webrev: http://analemma.sfbay.sun.com/java/jdk/ws/libs/rev/6589789/ bugster: http://monaco.sfbay/detail.jsf?cr=6589789 A test is included; all tests pass on Solaris and Windows and I'm firing up a JPRT run just now... Some comments on the changes: ExpandedJamRepository now removes files, as well as in-memory contents: this effectively fixes 6574242 as well, which when this 5689789 is integrated, I will close. This removal of files was necessary for uninstall to work in the tests. Most of the individual tests are on a LocalRepository. A few are added on a URLRepository to be sure this works also. Here's some sample output from using uninstall with -i (interactive): % jrepo list -v -r repo Repository file:/data/ws/jam-install/test/sun/module/tools/repo/ Name Version Platform Arch Modified Filename JRepoModuleA 1.0 SunOS x86 8/9/07 4:20 PM /data/ws/jam-install/test/sun/module/tools/repo/JRepoModuleA-1.0.jam-expanded JRepoModuleB 1.0 SunOS x86 8/10/07 3:40 PM /data/ws/jam-install/test/sun/module/tools/repo/JRepoModuleB-1.0.jam-expanded JRepoModuleB 2.0 SunOS x86 8/10/07 6:50 PM /data/ws/jam-install/test/sun/module/tools/repo/JRepoModuleB-2.0.jam-expanded % % jrepo uninstall -v -i -r repo JRepoModuleB Multiple matches for module found. Choose one of the below by index: 0 JRepoModuleB 1.0 SunOS x86 8/10/07 3:40 PM /data/ws/jam-install/test/sun/module/tools/repo/JRepoModuleB-1.0.jam-expanded 1 JRepoModuleB 2.0 SunOS x86 8/10/07 6:50 PM /data/ws/jam-install/test/sun/module/tools/repo/JRepoModuleB-2.0.jam-expanded Index? 0 Uninstalled JRepoModuleB 1.0 SunOS x86 8/10/07 3:40 PM /data/ws/jam-install/test/sun/module/tools/repo/JRepoModuleB-1.0.jam-expanded If the user types any value outside the range of the indexes shown, they get: Invalid input ; try again and the listing and prompting are repeated. Thanks, Dave From jprtadm at jprt-web.SFBay.Sun.COM Sat Aug 11 05:43:33 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Sat, 11 Aug 2007 05:43:33 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - success with job 2007-08-11-111322.as130790.jsr277-nightly Message-ID: <200708111243.l7BChXmi000628@jprt-web.SFBay.Sun.COM> JPRT: job notification - success with job 2007-08-11-111322.as130790.jsr277-nightly JPRT Job ID: 2007-08-11-111322.as130790.jsr277-nightly JPRT System Used: sfbay JPRT Version Used: 29 July 2007 - National Lasagna Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-11-111322.as130790.jsr277-nightly User: as130790 Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*product.*' -noquickabort -email modules-dev at openjdk.java.net -id jsr277-nightly -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Sat-11:13:10-GMT Total time in queue: 1h 30m 23s Job started at: Sat-11:31:07-GMT Job finished at: Sat-12:43:33-GMT Job run time: 1h 12m 26s Job state: success Job flags: Bundles: USE: jprt install 2007-08-11-111322.as130790.jsr277-nightly HINT: Use 'jprt rerun -comment -retest 2007-08-11-111322.as130790.jsr277-nightly' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): solaris_sparc_5.8-product success(25m 13s elapsed) solaris_sparcv9_5.8-product success(26m 22s elapsed) solaris_i586_5.8-product success(52m 25s elapsed) solaris_x64_5.10-product success(10m 02s elapsed) linux_i586_2.4-product success(11m 53s elapsed) linux_x64_2.4-product success(13m 12s elapsed) windows_i586_5-product success(37m 57s elapsed) windows_x64_5.2-product success(44m 13s elapsed) Tests: solaris_sparc-product-c2-jvm98 success(03m 21s elapsed) solaris_sparcv9-product-c2-jvm98 success(02m 51s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-jvm98 success(02m 42s elapsed) solaris_x64-product-c2-jvm98 success(01m 47s elapsed) linux_i586-product-c2-jvm98 success(01m 53s elapsed) linux_x64-product-c2-jvm98 success(01m 37s elapsed) windows_i586-product-c2-jvm98 success(03m 12s elapsed) windows_x64-product-c2-jvm98 success(01m 53s elapsed) solaris_sparc-product-c2-java/module success(01m 27s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_sparcv9-product-c2-java/module success(01m 32s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-java/module success(09m 28s elapsed) solaris_x64-product-c2-java/module success(01m 00s elapsed) linux_i586-product-c2-java/module success(01m 36s elapsed) linux_x64-product-c2-java/module success(01m 23s elapsed) windows_i586-product-c2-java/module success(04m 25s elapsed) windows_x64-product-c2-java/module success(03m 51s elapsed) solaris_sparc-product-c2-sun/module success( 34s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_sparcv9-product-c2-sun/module success( 34s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-sun/module success(07m 20s elapsed) solaris_x64-product-c2-sun/module success( 19s elapsed) linux_i586-product-c2-sun/module success( 46s elapsed) linux_x64-product-c2-sun/module success( 19s elapsed) windows_i586-product-c2-sun/module success(03m 12s elapsed) windows_x64-product-c2-sun/module success(02m 30s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From Andreas.Sterbenz at Sun.COM Mon Aug 13 02:40:27 2007 From: Andreas.Sterbenz at Sun.COM (Andreas Sterbenz) Date: Mon, 13 Aug 2007 02:40:27 -0700 Subject: [modules-dev] Binary downloads ... (was RE: JPRT: job notification - success with job2007-08-10-111319.as130790.jsr277-nightly) In-Reply-To: <00ad01c7db72$bdb0e530$0301a8c0@julia> References: <200708101653.l7AGr31t021451@jprt-web.SFBay.Sun.COM> <00ad01c7db72$bdb0e530$0301a8c0@julia> Message-ID: <46C0270B.2090104@sun.com> Stephen J. McConnell wrote: > It would be a real plus if the builds listed below were made available for > download. I really want to get into some early evaluation/feedback on the > modules content but building from source at this time is not a realistic > option. > > Is this subject (periodic public downloads of module binaries) under > consideration? If so, can anyone provide a qualified timeframe? If not, > what are the possible actions that I could take to change the status-quo? It's great to hear that you want to try out Modules. Early feedback and testing is important, but with significant pieces still missing (such as JSR 294 support and the various open bugs and RFEs), we have been focusing on making progress there. By the time we get to the point where the project is complete enough to allow for more realistic testing, I expect we will have binaries available as well. I cannot commit to a date, but fall should certainly capture it. Remember that we are still quite early in the JDK 7 development cycle and that there will plenty of time for feedback. Right now, the Modules source drops are more in the spirit of open development and to allow OpenJDK developers outside Sun to connect with the project. Andreas. From andreas.sterbenz at sun.com Mon Aug 13 06:00:12 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Mon, 13 Aug 2007 06:00:12 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708131300.l7DD0C2X027863@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070813/33071bb8/attachment.html From andreas.sterbenz at sun.com Tue Aug 14 06:00:26 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Tue, 14 Aug 2007 06:00:26 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708141300.l7ED0QPo022135@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070814/f654db4a/attachment.html From Stanley.Ho at Sun.COM Tue Aug 14 13:51:25 2007 From: Stanley.Ho at Sun.COM (Stanley M. Ho) Date: Tue, 14 Aug 2007 13:51:25 -0700 Subject: [modules-dev] [Fwd: [Fwd: Review request: 6563535, URLRepository.install]] In-Reply-To: <46BB3405.5050208@sun.com> References: <46BB3405.5050208@sun.com> Message-ID: <46C215CD.90102@sun.com> Hi Dave, Looks good. Several comments: - src/share/classes/sun/module/repository/URLRepository.java 563 if (!(srcJamFileName.endsWith(".jam") || srcJamFileName.endsWith(".jam.pack.gz"))) { Should also support .jar. 630 // Refuse to install if comparable module is already installed. 631 // XXX Use platform, arch when available from metadata. 632 List defns = findModuleDefinitions( 633 Query.and(Query.name(moduleName), Query.version(moduleVersion))); findModuleDefinitions() will not return platform specific module definitions, and this logic will reject installation of platform specific modules that do not match the running platform. What you want to check is probably the list of ModuleArchiveInfo instead. 657 FileOutputStream fos = new FileOutputStream(destMDFile); Use BufferedOutputStream. 688 contents.put(mai, installedMD); If exception is thrown in the try/catch block, the contents will be updated incorrectly. Even contents is updated again in the catch block, there is still a small window that contents does not represent the correct information. Instead, this should be updated in a finally block. 717 ModuleDefinition md = contents.get(mai); 718 if (md == null) { 719 rc = false; If the module definition is platform specific but does not match the current platform, the above logic won't allow it to be removed from the repository. 748 System.err.println("### jamFile: " + jamFile.getCanonicalPath()); Remove. 752 * them. If any rename or deletion fails, undo whatever can be 753 * undone. */ If writeRepositoryMetadata in 773 throws exception, it is unclear if the unwinding will be done properly. 805 private void writeRepositoryMetadata(ModuleArchiveInfo mai) throws IOException { It never uses specified mai when writing the metadata. - Stanley From as130790 at shimmer.sfbay.sun.com Tue Aug 14 16:23:32 2007 From: as130790 at shimmer.sfbay.sun.com (Andreas Sterbenz) Date: Tue, 14 Aug 2007 16:23:32 -0700 (PDT) Subject: [modules-dev] Code Manager notification (putback-to) Message-ID: <200708142323.l7ENNWQv019669@shimmer.sfbay.sun.com> Event: putback-to Parent workspace: /net/shimmer.sfbay/export/home/jsr277/ws (shimmer:/net/shimmer.sfbay/export/home/jsr277/ws) Child workspace: /net/shimmer.sfbay/export/home/as130790/277-merge/ws (shimmer:/net/shimmer.sfbay/export/home/as130790/277-merge/ws) User: as130790 Comment: Sync with TL Files: update: make/sun/javac/javac/FILES_java.gmk update: src/closed/share/lib/security/cacerts.internal update: src/share/classes/com/sun/javadoc/AnnotationDesc.java update: src/share/classes/com/sun/javadoc/AnnotationTypeDoc.java update: src/share/classes/com/sun/javadoc/AnnotationTypeElementDoc.java update: src/share/classes/com/sun/javadoc/AnnotationValue.java update: src/share/classes/com/sun/javadoc/ParameterizedType.java update: src/share/classes/com/sun/javadoc/TypeVariable.java update: src/share/classes/com/sun/javadoc/WildcardType.java update: src/share/classes/com/sun/mirror/apt/AnnotationProcessor.java update: src/share/classes/com/sun/mirror/apt/AnnotationProcessorEnvironment.java update: src/share/classes/com/sun/mirror/apt/AnnotationProcessorFactory.java update: src/share/classes/com/sun/mirror/apt/AnnotationProcessorListener.java update: src/share/classes/com/sun/mirror/apt/Filer.java update: src/share/classes/com/sun/mirror/apt/Messager.java update: src/share/classes/com/sun/mirror/apt/RoundCompleteEvent.java update: src/share/classes/com/sun/mirror/apt/RoundCompleteListener.java update: src/share/classes/com/sun/mirror/apt/RoundState.java update: src/share/classes/com/sun/mirror/declaration/AnnotationMirror.java update: src/share/classes/com/sun/mirror/declaration/AnnotationTypeDeclaration.java update: src/share/classes/com/sun/mirror/declaration/AnnotationTypeElementDeclaration.java update: src/share/classes/com/sun/mirror/declaration/AnnotationValue.java update: src/share/classes/com/sun/mirror/declaration/ClassDeclaration.java update: src/share/classes/com/sun/mirror/declaration/ConstructorDeclaration.java update: src/share/classes/com/sun/mirror/declaration/Declaration.java update: src/share/classes/com/sun/mirror/declaration/EnumConstantDeclaration.java update: src/share/classes/com/sun/mirror/declaration/EnumDeclaration.java update: src/share/classes/com/sun/mirror/declaration/ExecutableDeclaration.java update: src/share/classes/com/sun/mirror/declaration/FieldDeclaration.java update: src/share/classes/com/sun/mirror/declaration/InterfaceDeclaration.java update: src/share/classes/com/sun/mirror/declaration/MemberDeclaration.java update: src/share/classes/com/sun/mirror/declaration/MethodDeclaration.java update: src/share/classes/com/sun/mirror/declaration/PackageDeclaration.java update: src/share/classes/com/sun/mirror/declaration/ParameterDeclaration.java update: src/share/classes/com/sun/mirror/declaration/TypeDeclaration.java update: src/share/classes/com/sun/mirror/declaration/TypeParameterDeclaration.java update: src/share/classes/com/sun/mirror/type/AnnotationType.java update: src/share/classes/com/sun/mirror/type/ArrayType.java update: src/share/classes/com/sun/mirror/type/ClassType.java update: src/share/classes/com/sun/mirror/type/DeclaredType.java update: src/share/classes/com/sun/mirror/type/EnumType.java update: src/share/classes/com/sun/mirror/type/InterfaceType.java update: src/share/classes/com/sun/mirror/type/PrimitiveType.java update: src/share/classes/com/sun/mirror/type/ReferenceType.java update: src/share/classes/com/sun/mirror/type/TypeMirror.java update: src/share/classes/com/sun/mirror/type/TypeVariable.java update: src/share/classes/com/sun/mirror/type/VoidType.java update: src/share/classes/com/sun/mirror/type/WildcardType.java update: src/share/classes/com/sun/mirror/util/DeclarationFilter.java update: src/share/classes/com/sun/mirror/util/DeclarationScanner.java update: src/share/classes/com/sun/mirror/util/DeclarationVisitor.java update: src/share/classes/com/sun/mirror/util/DeclarationVisitors.java update: src/share/classes/com/sun/mirror/util/Declarations.java update: src/share/classes/com/sun/mirror/util/SimpleDeclarationVisitor.java update: src/share/classes/com/sun/mirror/util/SimpleTypeVisitor.java update: src/share/classes/com/sun/mirror/util/SourceOrderDeclScanner.java update: src/share/classes/com/sun/mirror/util/SourcePosition.java update: src/share/classes/com/sun/mirror/util/TypeVisitor.java update: src/share/classes/com/sun/mirror/util/Types.java update: src/share/classes/com/sun/tools/doclets/formats/html/resources/standard.properties update: src/share/classes/com/sun/tools/doclets/formats/html/resources/standard_ja.properties update: src/share/classes/com/sun/tools/doclets/formats/html/resources/standard_zh_CN.properties update: src/share/classes/com/sun/tools/doclets/internal/toolkit/resources/doclets.properties update: src/share/classes/com/sun/tools/doclets/internal/toolkit/resources/doclets_ja.properties update: src/share/classes/com/sun/tools/doclets/internal/toolkit/resources/doclets_zh_CN.properties update: src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/CodeTaglet.java update: src/share/classes/com/sun/tools/doclets/internal/toolkit/taglets/LiteralTaglet.java update: src/share/classes/com/sun/tools/javac/Launcher.java update: src/share/classes/com/sun/tools/javac/Main.java update: src/share/classes/com/sun/tools/javac/Server.java update: src/share/classes/com/sun/tools/javac/api/JavacTool.java update: src/share/classes/com/sun/tools/javac/api/WrappingJavaFileManager.java update: src/share/classes/com/sun/tools/javac/code/Attribute.java update: src/share/classes/com/sun/tools/javac/code/BoundKind.java update: src/share/classes/com/sun/tools/javac/code/Flags.java update: src/share/classes/com/sun/tools/javac/code/Kinds.java update: src/share/classes/com/sun/tools/javac/code/Lint.java update: src/share/classes/com/sun/tools/javac/code/Scope.java update: src/share/classes/com/sun/tools/javac/code/Source.java update: src/share/classes/com/sun/tools/javac/code/Symbol.java update: src/share/classes/com/sun/tools/javac/code/Symtab.java update: src/share/classes/com/sun/tools/javac/code/Type.java update: src/share/classes/com/sun/tools/javac/code/TypeTags.java update: src/share/classes/com/sun/tools/javac/code/Types.java update: src/share/classes/com/sun/tools/javac/comp/Annotate.java update: src/share/classes/com/sun/tools/javac/comp/Attr.java update: src/share/classes/com/sun/tools/javac/comp/AttrContext.java update: src/share/classes/com/sun/tools/javac/comp/AttrContextEnv.java update: src/share/classes/com/sun/tools/javac/comp/Check.java update: src/share/classes/com/sun/tools/javac/comp/ConstFold.java update: src/share/classes/com/sun/tools/javac/comp/Enter.java update: src/share/classes/com/sun/tools/javac/comp/Env.java update: src/share/classes/com/sun/tools/javac/comp/Flow.java update: src/share/classes/com/sun/tools/javac/comp/Infer.java update: src/share/classes/com/sun/tools/javac/comp/Lower.java update: src/share/classes/com/sun/tools/javac/comp/MemberEnter.java update: src/share/classes/com/sun/tools/javac/comp/Resolve.java update: src/share/classes/com/sun/tools/javac/comp/Todo.java update: src/share/classes/com/sun/tools/javac/comp/TransTypes.java update: src/share/classes/com/sun/tools/javac/jvm/ByteCodes.java update: src/share/classes/com/sun/tools/javac/jvm/CRTFlags.java update: src/share/classes/com/sun/tools/javac/jvm/CRTable.java update: src/share/classes/com/sun/tools/javac/jvm/ClassFile.java update: src/share/classes/com/sun/tools/javac/jvm/ClassReader.java update: src/share/classes/com/sun/tools/javac/jvm/ClassWriter.java update: src/share/classes/com/sun/tools/javac/jvm/Code.java update: src/share/classes/com/sun/tools/javac/jvm/Gen.java update: src/share/classes/com/sun/tools/javac/jvm/Items.java update: src/share/classes/com/sun/tools/javac/jvm/Pool.java update: src/share/classes/com/sun/tools/javac/jvm/Target.java update: src/share/classes/com/sun/tools/javac/jvm/UninitializedType.java update: src/share/classes/com/sun/tools/javac/main/CommandLine.java update: src/share/classes/com/sun/tools/javac/main/JavaCompiler.java update: src/share/classes/com/sun/tools/javac/main/JavacOption.java update: src/share/classes/com/sun/tools/javac/main/Main.java update: src/share/classes/com/sun/tools/javac/main/OptionName.java update: src/share/classes/com/sun/tools/javac/main/RecognizedOptions.java update: src/share/classes/com/sun/tools/javac/model/FilteredMemberList.java update: src/share/classes/com/sun/tools/javac/model/JavacElements.java update: src/share/classes/com/sun/tools/javac/model/JavacSourcePosition.java update: src/share/classes/com/sun/tools/javac/model/JavacTypes.java update: src/share/classes/com/sun/tools/javac/parser/EndPosParser.java update: src/share/classes/com/sun/tools/javac/parser/Keywords.java update: src/share/classes/com/sun/tools/javac/parser/Lexer.java update: src/share/classes/com/sun/tools/javac/parser/Parser.java update: src/share/classes/com/sun/tools/javac/parser/Scanner.java update: src/share/classes/com/sun/tools/javac/parser/Token.java update: src/share/classes/com/sun/tools/javac/processing/AnnotationProcessingError.java update: src/share/classes/com/sun/tools/javac/processing/JavacFiler.java update: src/share/classes/com/sun/tools/javac/processing/JavacMessager.java update: src/share/classes/com/sun/tools/javac/processing/JavacProcessingEnvironment.java update: src/share/classes/com/sun/tools/javac/processing/JavacRoundEnvironment.java update: src/share/classes/com/sun/tools/javac/processing/PrintingProcessor.java update: src/share/classes/com/sun/tools/javac/tree/JCTree.java update: src/share/classes/com/sun/tools/javac/tree/Pretty.java update: src/share/classes/com/sun/tools/javac/tree/TreeInfo.java update: src/share/classes/com/sun/tools/javac/tree/TreeMaker.java update: src/share/classes/com/sun/tools/javac/tree/TreeScanner.java update: src/share/classes/com/sun/tools/javac/tree/TreeTranslator.java update: src/share/classes/com/sun/tools/javac/util/Abort.java update: src/share/classes/com/sun/tools/javac/util/BaseFileObject.java update: src/share/classes/com/sun/tools/javac/util/Bits.java update: src/share/classes/com/sun/tools/javac/util/ByteBuffer.java update: src/share/classes/com/sun/tools/javac/util/ClientCodeException.java update: src/share/classes/com/sun/tools/javac/util/Constants.java update: src/share/classes/com/sun/tools/javac/util/Context.java update: src/share/classes/com/sun/tools/javac/util/Convert.java update: src/share/classes/com/sun/tools/javac/util/DiagnosticFormatter.java update: src/share/classes/com/sun/tools/javac/util/FatalError.java update: src/share/classes/com/sun/tools/javac/util/JCDiagnostic.java update: src/share/classes/com/sun/tools/javac/util/JavacFileManager.java update: src/share/classes/com/sun/tools/javac/util/LayoutCharacters.java update: src/share/classes/com/sun/tools/javac/util/List.java update: src/share/classes/com/sun/tools/javac/util/ListBuffer.java update: src/share/classes/com/sun/tools/javac/util/Log.java update: src/share/classes/com/sun/tools/javac/util/MandatoryWarningHandler.java update: src/share/classes/com/sun/tools/javac/util/Messages.java update: src/share/classes/com/sun/tools/javac/util/Name.java update: src/share/classes/com/sun/tools/javac/util/Old199.java update: src/share/classes/com/sun/tools/javac/util/Options.java update: src/share/classes/com/sun/tools/javac/util/Pair.java update: src/share/classes/com/sun/tools/javac/util/Paths.java update: src/share/classes/com/sun/tools/javac/util/Position.java update: src/share/classes/com/sun/tools/javac/util/PropagatedException.java update: src/share/classes/com/sun/tools/javac/util/Warner.java update: src/share/classes/com/sun/tools/javac/zip/ZipFileIndex.java update: src/share/classes/com/sun/tools/javadoc/AbstractTypeImpl.java update: src/share/classes/com/sun/tools/javadoc/AnnotationDescImpl.java update: src/share/classes/com/sun/tools/javadoc/AnnotationTypeDocImpl.java update: src/share/classes/com/sun/tools/javadoc/AnnotationTypeElementDocImpl.java update: src/share/classes/com/sun/tools/javadoc/AnnotationValueImpl.java update: src/share/classes/com/sun/tools/javadoc/JavadocClassReader.java update: src/share/classes/com/sun/tools/javadoc/ModifierFilter.java update: src/share/classes/com/sun/tools/javadoc/ParameterizedTypeImpl.java update: src/share/classes/com/sun/tools/javadoc/TypeVariableImpl.java update: src/share/classes/com/sun/tools/javadoc/WildcardTypeImpl.java update: src/share/classes/java/lang/String.java update: src/share/classes/java/net/HttpURLConnection.java update: src/share/classes/java/net/InetAddress.java update: src/share/classes/java/net/ProxySelector.java update: src/share/classes/java/net/package.html update: src/share/classes/java/security/AccessControlContext.java update: src/share/classes/java/util/Collections.java update: src/share/classes/java/util/EnumSet.java update: src/share/classes/java/util/concurrent/ExecutorCompletionService.java update: src/share/classes/javax/annotation/processing/AbstractProcessor.java update: src/share/classes/javax/annotation/processing/Completion.java update: src/share/classes/javax/annotation/processing/Completions.java update: src/share/classes/javax/annotation/processing/Filer.java update: src/share/classes/javax/annotation/processing/FilerException.java update: src/share/classes/javax/annotation/processing/Messager.java update: src/share/classes/javax/annotation/processing/ProcessingEnvironment.java update: src/share/classes/javax/annotation/processing/Processor.java update: src/share/classes/javax/annotation/processing/RoundEnvironment.java update: src/share/classes/javax/annotation/processing/SupportedAnnotationTypes.java update: src/share/classes/javax/annotation/processing/SupportedOptions.java update: src/share/classes/javax/annotation/processing/SupportedSourceVersion.java update: src/share/classes/javax/annotation/processing/package-info.java update: src/share/classes/javax/lang/model/SourceVersion.java update: src/share/classes/javax/lang/model/package-info.java update: src/share/classes/javax/lang/model/element/AnnotationMirror.java update: src/share/classes/javax/lang/model/element/AnnotationValue.java update: src/share/classes/javax/lang/model/element/AnnotationValueVisitor.java update: src/share/classes/javax/lang/model/element/Element.java update: src/share/classes/javax/lang/model/element/ElementKind.java update: src/share/classes/javax/lang/model/element/ElementVisitor.java update: src/share/classes/javax/lang/model/element/ExecutableElement.java update: src/share/classes/javax/lang/model/element/Modifier.java update: src/share/classes/javax/lang/model/element/Name.java update: src/share/classes/javax/lang/model/element/NestingKind.java update: src/share/classes/javax/lang/model/element/PackageElement.java update: src/share/classes/javax/lang/model/element/TypeElement.java update: src/share/classes/javax/lang/model/element/TypeParameterElement.java update: src/share/classes/javax/lang/model/element/UnknownAnnotationValueException.java update: src/share/classes/javax/lang/model/element/UnknownElementException.java update: src/share/classes/javax/lang/model/element/VariableElement.java update: src/share/classes/javax/lang/model/element/package-info.java update: src/share/classes/javax/lang/model/type/ArrayType.java update: src/share/classes/javax/lang/model/type/DeclaredType.java update: src/share/classes/javax/lang/model/type/ErrorType.java update: src/share/classes/javax/lang/model/type/ExecutableType.java update: src/share/classes/javax/lang/model/type/MirroredTypeException.java update: src/share/classes/javax/lang/model/type/MirroredTypesException.java update: src/share/classes/javax/lang/model/type/NoType.java update: src/share/classes/javax/lang/model/type/NullType.java update: src/share/classes/javax/lang/model/type/PrimitiveType.java update: src/share/classes/javax/lang/model/type/ReferenceType.java update: src/share/classes/javax/lang/model/type/TypeKind.java update: src/share/classes/javax/lang/model/type/TypeMirror.java update: src/share/classes/javax/lang/model/type/TypeVariable.java update: src/share/classes/javax/lang/model/type/TypeVisitor.java update: src/share/classes/javax/lang/model/type/UnknownTypeException.java update: src/share/classes/javax/lang/model/type/WildcardType.java update: src/share/classes/javax/lang/model/type/package-info.java update: src/share/classes/javax/lang/model/util/AbstractAnnotationValueVisitor6.java update: src/share/classes/javax/lang/model/util/AbstractElementVisitor6.java update: src/share/classes/javax/lang/model/util/AbstractTypeVisitor6.java update: src/share/classes/javax/lang/model/util/ElementFilter.java update: src/share/classes/javax/lang/model/util/ElementKindVisitor6.java update: src/share/classes/javax/lang/model/util/ElementScanner6.java update: src/share/classes/javax/lang/model/util/Elements.java update: src/share/classes/javax/lang/model/util/SimpleAnnotationValueVisitor6.java update: src/share/classes/javax/lang/model/util/SimpleElementVisitor6.java update: src/share/classes/javax/lang/model/util/SimpleTypeVisitor6.java update: src/share/classes/javax/lang/model/util/TypeKindVisitor6.java update: src/share/classes/javax/lang/model/util/Types.java update: src/share/classes/javax/lang/model/util/package-info.java update: src/share/classes/sun/net/www/protocol/http/NegotiateAuthentication.java update: src/share/classes/sun/security/jgss/GSSUtil.java update: src/share/classes/sun/security/jgss/krb5/Krb5Context.java update: src/share/classes/sun/security/jgss/krb5/Krb5Util.java update: src/share/classes/sun/security/jgss/wrapper/NativeGSSFactory.java update: src/share/classes/sun/security/provider/PolicyFile.java update: src/share/native/java/util/zip/zip_util.c update: src/share/native/java/util/zip/zip_util.h update: src/solaris/native/java/net/Inet4AddressImpl.c update: src/solaris/native/java/net/Inet6AddressImpl.c update: src/windows/native/java/net/Inet4AddressImpl.c update: src/windows/native/java/net/Inet6AddressImpl.c update: test/com/sun/javadoc/AccessAsciiArt/AccessAsciiArt.java update: test/com/sun/javadoc/JavascriptWinTitle/JavascriptWinTitle.java update: test/com/sun/javadoc/MetaTag/MetaTag.java update: test/com/sun/javadoc/PackagesHeader/PackagesHeader.java update: test/com/sun/javadoc/_template/Template.java update: test/com/sun/javadoc/_template/TemplateComplete.java update: test/com/sun/javadoc/dupThrowsTags/TestDupThrowsTags.java update: test/com/sun/javadoc/testAbsLinkPath/TestAbsLinkPath.java update: test/com/sun/javadoc/testAnnotationTypes/TestAnnotationTypes.java update: test/com/sun/javadoc/testBackSlashInLink/TestBackSlashInLink.java update: test/com/sun/javadoc/testBadSourceFile/TestBadSourceFile.java update: test/com/sun/javadoc/testBaseClass/TestBaseClass.java update: test/com/sun/javadoc/testBreakIterator/TestBreakIterator.java update: test/com/sun/javadoc/testCRLineSeparator/TestCRLineSeparator.java update: test/com/sun/javadoc/testClassCrossReferences/TestClassCrossReferences.java update: test/com/sun/javadoc/testClassTree/TestClassTree.java update: test/com/sun/javadoc/testCmndLineClass/TestCmndLineClass.java update: test/com/sun/javadoc/testConstantValuesPage/TestConstantValuesPage.java update: test/com/sun/javadoc/testConstructorIndent/TestConstructorIndent.java update: test/com/sun/javadoc/testDeprecatedDocs/TestDeprecatedDocs.java update: test/com/sun/javadoc/testDocErrorReporter/TestDocErrorReporter.java update: test/com/sun/javadoc/testDocFileDir/TestDocFileDir.java update: test/com/sun/javadoc/testDocRootInlineTag/TestDocRootInlineTag.java update: test/com/sun/javadoc/testDupParamWarn/TestDupParamWarn.java update: test/com/sun/javadoc/testEmptyClass/TestEmptyClass.java update: test/com/sun/javadoc/testEnclosingClass/TestEnclosingClass.java update: test/com/sun/javadoc/testEncoding/TestEncoding.java update: test/com/sun/javadoc/testExternalOverridenMethod/TestExternalOverridenMethod.java update: test/com/sun/javadoc/testGroupOption/TestGroupOption.java update: test/com/sun/javadoc/testHeadings/TestHeadings.java update: test/com/sun/javadoc/testHelpOption/TestHelpOption.java update: test/com/sun/javadoc/testHiddenMembers/TestHiddenMembers.java update: test/com/sun/javadoc/testHref/TestHref.java update: test/com/sun/javadoc/testHrefInDocComment/TestHrefInDocComment.java update: test/com/sun/javadoc/testHtmlComments/TestHtmlComments.java update: test/com/sun/javadoc/testIndex/TestIndex.java update: test/com/sun/javadoc/testInlineLinkLabel/TestInlineLinkLabel.java update: test/com/sun/javadoc/testInterface/TestInterface.java update: test/com/sun/javadoc/testJavascript/TestJavascript.java update: test/com/sun/javadoc/testLeadingSpaces/LeadingSpaces.java update: test/com/sun/javadoc/testLegacyTaglet/TestLegacyTaglet.java update: test/com/sun/javadoc/testLinkOption/TestBadLinkOption.java update: test/com/sun/javadoc/testLinkOption/TestLinkOption.java update: test/com/sun/javadoc/testLinkOption/TestNewLineInLink.java update: test/com/sun/javadoc/testLinkTaglet/TestLinkTaglet.java update: test/com/sun/javadoc/testLinkToSerialForm/TestLinkToSerialForm.java update: test/com/sun/javadoc/testMemberInheritence/TestMemberInheritence.java update: test/com/sun/javadoc/testMemberSummary/TestMemberSummary.java update: test/com/sun/javadoc/testModifier/TestModifier.java update: test/com/sun/javadoc/testNavagation/TestNavagation.java update: test/com/sun/javadoc/testNestedInlineTag/TestNestedInlineTag.java update: test/com/sun/javadoc/testNewLanguageFeatures/TestNewLanguageFeatures.java update: test/com/sun/javadoc/testNoPackagesFile/TestNoPackagesFile.java update: test/com/sun/javadoc/testNotifications/TestNotifications.java update: test/com/sun/javadoc/testOverridenMethods/TestMultiInheritence.java update: test/com/sun/javadoc/testOverridenMethods/TestOverridenMethodDocCopy.java update: test/com/sun/javadoc/testOverridenMethods/TestOverridenPrivateMethods.java update: test/com/sun/javadoc/testOverridenMethods/TestOverridenPrivateMethodsWithPackageFlag.java update: test/com/sun/javadoc/testOverridenMethods/TestOverridenPrivateMethodsWithPrivateFlag.java update: test/com/sun/javadoc/testPackagePage/TestPackagePage.java update: test/com/sun/javadoc/testParamTaglet/TestParamTaglet.java update: test/com/sun/javadoc/testPrivateClasses/TestPrivateClasses.java update: test/com/sun/javadoc/testRecurseSubPackages/TestRecurseSubPackages.java update: test/com/sun/javadoc/testRelativeLinks/TestRelativeLinks.java update: test/com/sun/javadoc/testReturnTag/TestReturnTag.java update: test/com/sun/javadoc/testSerialVersionUID/TestSerialVersionUID.java update: test/com/sun/javadoc/testSerializedForm/TestSerializedForm.java update: test/com/sun/javadoc/testSimpleTag/TestSimpleTag.java update: test/com/sun/javadoc/testSimpleTagExclude/TestSimpleTagExclude.java update: test/com/sun/javadoc/testStylesheet/TestStylesheet.java update: test/com/sun/javadoc/testSummaryHeading/TestSummaryHeading.java update: test/com/sun/javadoc/testSuperclassInSerialForm/TestSuperClassInSerialForm.java update: test/com/sun/javadoc/testSupplementary/TestSupplementary.java update: test/com/sun/javadoc/testTagHolderMethod/TestTagHolderMethod.java update: test/com/sun/javadoc/testTagInheritence/TestTagInheritence.java update: test/com/sun/javadoc/testTagMisuse/TestTagMisuse.java update: test/com/sun/javadoc/testTaglets/TestTaglets.java update: test/com/sun/javadoc/testThrowsHead/TestThrowsHead.java update: test/com/sun/javadoc/testThrowsInheritence/TestThrowsTagInheritence.java update: test/com/sun/javadoc/testThrowsTag/TestThrowsTag.java update: test/com/sun/javadoc/testTitleInHref/TestTitleInHref.java update: test/com/sun/javadoc/testTopOption/TestTopOption.java update: test/com/sun/javadoc/testTypeParams/TestTypeParameters.java update: test/com/sun/javadoc/testUnnamedPackage/TestUnnamedPackage.java update: test/com/sun/javadoc/testUseOption/TestUseOption.java update: test/com/sun/javadoc/testValueTag/TestValueTag.java update: test/com/sun/javadoc/testWarnBadParamNames/TestWarnBadParamNames.java update: test/com/sun/javadoc/testWarnings/TestWarnings.java update: test/java/lang/String/Supplementary.java update: test/java/util/Arrays/Correct.java update: test/tools/apt/Basics/Misc.java update: test/tools/apt/Basics/apt.sh update: test/tools/apt/Basics/print.sh update: test/tools/apt/Compile/compile.sh update: test/tools/apt/Discovery/discovery.sh update: test/tools/apt/Misc/misc.sh update: test/tools/apt/Options/options.sh update: test/tools/apt/Scanners/scanner.sh update: test/tools/apt/lib/Ignore.java update: test/tools/apt/lib/Test.java update: test/tools/apt/lib/TestProcessor.java update: test/tools/apt/lib/TestProcessorFactory.java update: test/tools/apt/lib/Tester.java update: test/tools/apt/mirror/declaration/AnnoMirror.java update: test/tools/apt/mirror/declaration/AnnoTypeDecl.java update: test/tools/apt/mirror/declaration/AnnoTypeElemDecl.java update: test/tools/apt/mirror/declaration/AnnoVal.java update: test/tools/apt/mirror/declaration/ClassDecl.java update: test/tools/apt/mirror/declaration/ConstExpr.java update: test/tools/apt/mirror/declaration/ConstructorDecl.java update: test/tools/apt/mirror/declaration/EnumDecl.java update: test/tools/apt/mirror/declaration/FieldDecl.java update: test/tools/apt/mirror/declaration/GetAnno.java update: test/tools/apt/mirror/declaration/InterfaceDecl.java update: test/tools/apt/mirror/declaration/MethodDecl.java update: test/tools/apt/mirror/declaration/PackageDecl.java update: test/tools/apt/mirror/declaration/ParameterDecl.java update: test/tools/apt/mirror/declaration/pkg1/pkg2/AnInterface.java update: test/tools/apt/mirror/declaration/pkg1/pkg2/package.html update: test/tools/apt/mirror/type/AnnoTyp.java update: test/tools/apt/mirror/type/ArrayTyp.java update: test/tools/apt/mirror/type/ClassTyp.java update: test/tools/apt/mirror/type/EnumTyp.java update: test/tools/apt/mirror/type/InterfaceTyp.java update: test/tools/apt/mirror/type/PrimitiveTyp.java update: test/tools/apt/mirror/type/TypeVar.java update: test/tools/apt/mirror/type/WildcardTyp.java update: test/tools/apt/mirror/util/Overrides.java update: test/tools/apt/mirror/util/TypeCreation.java update: test/tools/javac/4980495/static/Test.java update: test/tools/javac/4980495/std/Test.java update: test/tools/javac/5045412/Bar.java update: test/tools/javac/6257443/T6257443.java update: test/tools/javac/6330920/T6330920.java update: test/tools/javac/6330997/T6330997.java update: test/tools/javac/6341866/T6341866.java update: test/tools/javac/6342411/T6342411.java update: test/tools/javac/6394683/T6394683.java update: test/tools/javac/6400383/T6400383.java update: test/tools/javac/6402516/CheckClass.java update: test/tools/javac/6402516/CheckIsAccessible.java update: test/tools/javac/6402516/CheckLocalElements.java update: test/tools/javac/6402516/CheckMethod.java update: test/tools/javac/6410653/T6410653.java update: test/tools/javac/6440583/T6440583.java update: test/tools/javac/6457284/T6457284.java update: test/tools/javac/6464451/BigFinally.java update: test/tools/javac/6464451/DeepNestedFinally.java update: test/tools/javac/6464451/ManyExitsInTry.java update: test/tools/javac/6491592/T6491592.java update: test/tools/javac/6520152/T6520152.java update: test/tools/javac/6547131/T.java update: test/tools/javac/AccessMethods/AccessMethodsLHS.java update: test/tools/javac/AccessMethods/BitwiseAssignment.java update: test/tools/javac/AccessMethods/ChainedAssignment.java update: test/tools/javac/AccessMethods/ConstructorAccess.java update: test/tools/javac/AccessMethods/InternalHandshake.java update: test/tools/javac/AccessMethods/LateAddition.java update: test/tools/javac/AccessMethods/UplevelPrivateConstants.java update: test/tools/javac/AnonymousProtect/AnonymousProtect.java update: test/tools/javac/BadOptimization/DeadCode1.java update: test/tools/javac/BadOptimization/DeadCode2.java update: test/tools/javac/BadOptimization/DeadCode3.java update: test/tools/javac/BadOptimization/DeadCode4.java update: test/tools/javac/BadOptimization/DeadCode5.java update: test/tools/javac/BadOptimization/DeadCode6.java update: test/tools/javac/BadOptimization/Switch1.java update: test/tools/javac/BadOptimization/Switch2.java update: test/tools/javac/ClassCycle/ClassCycle1a.java update: test/tools/javac/ClassCycle/ClassCycle1b.java update: test/tools/javac/ClassCycle/ClassCycle2a.java update: test/tools/javac/ClassCycle/ClassCycle2b.java update: test/tools/javac/ClassCycle/ClassCycle3a.java update: test/tools/javac/ClassCycle/ClassCycle3b.java update: test/tools/javac/ClassFileModifiers/ClassModifiers.java update: test/tools/javac/ClassFileModifiers/MemberModifiers.java update: test/tools/javac/ClassLiterals/ClassLiteralHelperContext.java update: test/tools/javac/ClassLiterals/InitializeOuter.java update: test/tools/javac/ClassLiterals/InitializeTarget.java update: test/tools/javac/ClassLiterals/InnerClassLiterals.java update: test/tools/javac/ClassLiterals/LiteralInterfaceImpl.java update: test/tools/javac/ClassLiterals/LiteralInterface_1.java update: test/tools/javac/ClassLiterals/LiteralInterface_2.java update: test/tools/javac/ClassLiterals/LiteralInterface_3.java update: test/tools/javac/ClassLiterals/evalinit/ClassLiteralEvalInit.java update: test/tools/javac/ClassLiterals/evalinit/java/lang/Integer.java update: test/tools/javac/ClassLiterals/p1/C.java update: test/tools/javac/ClassLiterals/p1/SuperClass.java update: test/tools/javac/ClassModifiers/InterfaceAndInnerClsCtor.java update: test/tools/javac/ClassPathTest/ClassPathTest.sh update: test/tools/javac/ClassPathTest/ClassPathTest1.java update: test/tools/javac/ClassPathTest/ClassPathTest2.java update: test/tools/javac/ClassPathTest/ClassPathTest3.java update: test/tools/javac/ClassPathTest/bar/pkg/ClassPathTestAux2.java update: test/tools/javac/ClassPathTest/foo/pkg/ClassPathTestAux1.java update: test/tools/javac/ClassPathTest/pkg/ClassPathTestAux3.java update: test/tools/javac/ConstantValues/ConstValInit.java update: test/tools/javac/ConstantValues/ConstValInlining.java update: test/tools/javac/CyclicInheritance6/Main.java update: test/tools/javac/CyclicScoping/CyclicScoping_1.java update: test/tools/javac/CyclicScoping/CyclicScoping_2.java update: test/tools/javac/DefiniteAssignment/DefAssignBoolean/DefAssignBoolean_1.java update: test/tools/javac/DefiniteAssignment/DefAssignBoolean/DefAssignBoolean_10.java update: test/tools/javac/DefiniteAssignment/DefAssignBoolean/DefAssignBoolean_11.java update: test/tools/javac/DefiniteAssignment/DefAssignBoolean/DefAssignBoolean_12.java update: test/tools/javac/DefiniteAssignment/DefAssignBoolean/DefAssignBoolean_13.java update: test/tools/javac/DefiniteAssignment/DefAssignBoolean/DefAssignBoolean_14.java update: test/tools/javac/DefiniteAssignment/DefAssignBoolean/DefAssignBoolean_15.java update: test/tools/javac/DefiniteAssignment/DefAssignBoolean/DefAssignBoolean_16.java update: test/tools/javac/DefiniteAssignment/DefAssignBoolean/DefAssignBoolean_2.java update: test/tools/javac/DefiniteAssignment/DefAssignBoolean/DefAssignBoolean_3.java update: test/tools/javac/DefiniteAssignment/DefAssignBoolean/DefAssignBoolean_4.java update: test/tools/javac/DefiniteAssignment/DefAssignBoolean/DefAssignBoolean_5.java update: test/tools/javac/DefiniteAssignment/DefAssignBoolean/DefAssignBoolean_6.java update: test/tools/javac/DefiniteAssignment/DefAssignBoolean/DefAssignBoolean_7.java update: test/tools/javac/DefiniteAssignment/DefAssignBoolean/DefAssignBoolean_8.java update: test/tools/javac/DefiniteAssignment/DefAssignBoolean/DefAssignBoolean_9.java update: test/tools/javac/DefiniteAssignment/DefAssignBoolean/DefAssignCond.java update: test/tools/javac/DefiniteAssignment/DefAssignBoolean/DefAssignConstantBoolean.java update: test/tools/javac/DefiniteAssignment/ConstantInfiniteWhile.java update: test/tools/javac/DefiniteAssignment/DABlock.java update: test/tools/javac/DefiniteAssignment/DALoop1.java update: test/tools/javac/DefiniteAssignment/DASwitch.java update: test/tools/javac/DefiniteAssignment/DUAssert.java update: test/tools/javac/DefiniteAssignment/DUBeforeDefined1.java update: test/tools/javac/DefiniteAssignment/DUBeforeDefined2.java update: test/tools/javac/DefiniteAssignment/DUParam1.java update: test/tools/javac/DefiniteAssignment/DUParam2.java update: test/tools/javac/DefiniteAssignment/DUSwitch.java update: test/tools/javac/DefiniteAssignment/DUSwitch2.java update: test/tools/javac/DefiniteAssignment/DUTry.java update: test/tools/javac/DefiniteAssignment/DefAssignAfterIf_1.java update: test/tools/javac/DefiniteAssignment/DefAssignAfterIf_2.java update: test/tools/javac/DefiniteAssignment/DefAssignAfterThis_1.java update: test/tools/javac/DefiniteAssignment/DefAssignAfterThis_2.java update: test/tools/javac/DefiniteAssignment/DefAssignAfterTry1.java update: test/tools/javac/DefiniteAssignment/DefAssignAfterTry2.java update: test/tools/javac/DefiniteAssignment/DefAssignAfterTry3.java update: test/tools/javac/DefiniteAssignment/DefAssignNestedArg.java update: test/tools/javac/DefiniteAssignment/T4704365.java update: test/tools/javac/DefiniteAssignment/T4717164.java update: test/tools/javac/DefiniteAssignment/T4717165.java update: test/tools/javac/DefiniteAssignment/T4718134.java update: test/tools/javac/DefiniteAssignment/T4718142.java update: test/tools/javac/DefiniteAssignment/T4718142a.java update: test/tools/javac/DefiniteAssignment/T4718708.java update: test/tools/javac/DefiniteAssignment/T4720379.java update: test/tools/javac/DefiniteAssignment/T4720751.java update: test/tools/javac/DefiniteAssignment/T4721062a.java update: test/tools/javac/DefiniteAssignment/T4721062b.java update: test/tools/javac/DefiniteAssignment/T4721076.java update: test/tools/javac/DefiniteAssignment/T4721998.java update: test/tools/javac/DefiniteAssignment/T4725725.java update: test/tools/javac/DefiniteAssignment/ThrowBeforeTryFinally.java update: test/tools/javac/DefiniteAssignment/UncaughtException.java update: test/tools/javac/ExtDirs/ExtDirs.sh update: test/tools/javac/ExtendsAccess/ExtendsAccess.java update: test/tools/javac/ExtendsAccess/p/ExtendsAccess.java update: test/tools/javac/FloatingPointChanges/BadConstructorModifiers.java update: test/tools/javac/FloatingPointChanges/Test.java update: test/tools/javac/ForwardReference/ForwardReference_2.java update: test/tools/javac/ForwardReference/ForwardReference_4.java update: test/tools/javac/ForwardReference/ForwardReference_5.java update: test/tools/javac/ForwardReference/UseBeforeDeclaration.java update: test/tools/javac/HiddenAbstractMethod/Test update: test/tools/javac/ImportCycle/Dummy.java update: test/tools/javac/ImportCycle/foo/Bottom.java update: test/tools/javac/ImportCycle/foo/Bottom2.java update: test/tools/javac/ImportCycle/foo/Middle.java update: test/tools/javac/ImportCycle/foo/Middle2.java update: test/tools/javac/ImportCycle/foo/Top.java update: test/tools/javac/ImportCycle/foo/Top2.java update: test/tools/javac/ImportPackagePrivateInner/Dummy.java update: test/tools/javac/ImportPackagePrivateInner/foo/Accessee.java update: test/tools/javac/ImportPackagePrivateInner/foo/Accessor.java update: test/tools/javac/ImportUnnamed/Dummy.java update: test/tools/javac/InnerClassesAttribute/Test.java update: test/tools/javac/NameClash/One.java update: test/tools/javac/NonAmbiguousField/Test update: test/tools/javac/OverrideChecks/InconsistentReturn.java update: test/tools/javac/OverrideChecks/InterfaceImplements.java update: test/tools/javac/OverrideChecks/InterfaceOverride.java update: test/tools/javac/OverrideChecks/Private.java update: test/tools/javac/OverrideChecks/StaticOverride.java update: test/tools/javac/OverrideChecks/T4720356a.java update: test/tools/javac/OverrideChecks/T4720359a.java update: test/tools/javac/OverrideChecks/T4721069.java update: test/tools/javac/OverrideChecks/T6326485.java update: test/tools/javac/OverrideChecks/T6399361.java update: test/tools/javac/OverrideChecks/ThrowsConflict.java update: test/tools/javac/PackageClassAmbiguity/Bad.java update: test/tools/javac/PackageClassClash/PackageClassClash.java update: test/tools/javac/Paths/CompileClose.java update: test/tools/javac/Paths/Diagnostics.sh update: test/tools/javac/Paths/Help.sh update: test/tools/javac/Paths/MineField.sh update: test/tools/javac/Paths/Util.sh update: test/tools/javac/Paths/wcMineField.sh update: test/tools/javac/ProtectedInnerClass/ProtectedInnerClass.sh update: test/tools/javac/ProtectedInnerClass/ProtectedInnerClass_2.java update: test/tools/javac/ProtectedInnerClass/p1/ProtectedInnerClass1.java update: test/tools/javac/ProtectedInnerClass/p2/ProtectedInnerClass2.java update: test/tools/javac/ProtectedInnerClass/p2/ProtectedInnerClass3.java update: test/tools/javac/QualifiedAccess/QualifiedAccess_1.java update: test/tools/javac/QualifiedAccess/QualifiedAccess_2.java update: test/tools/javac/QualifiedAccess/QualifiedAccess_3.java update: test/tools/javac/QualifiedAccess/QualifiedAccess_4.java update: test/tools/javac/QualifiedAccess/pack1/P1.java update: test/tools/javac/QualifiedAccess/pack1/P2.java update: test/tools/javac/5005368.java update: test/tools/javac/AbstractOverride.java update: test/tools/javac/AddReferenceThis.java update: test/tools/javac/Ambig3.java update: test/tools/javac/AnonClsInIntf.java update: test/tools/javac/AnonInnerException_1.java update: test/tools/javac/AnonInnerException_2.java update: test/tools/javac/AnonInnerException_3.java update: test/tools/javac/AnonStaticMember_1.java update: test/tools/javac/AnonStaticMember_2.java update: test/tools/javac/AnonStaticMember_3.java update: test/tools/javac/AnonymousConstructorExceptions.java update: test/tools/javac/AnonymousNull.java update: test/tools/javac/AnonymousType.java update: test/tools/javac/ArrayCast.java update: test/tools/javac/ArrayCloneCodeGen.java update: test/tools/javac/BadAnnotation.java update: test/tools/javac/BadBreak.java update: test/tools/javac/BadCovar.java update: test/tools/javac/BadHexConstant.java update: test/tools/javac/BoolArray.java update: test/tools/javac/BoundClassError.java update: test/tools/javac/BreakAcrossClass.java update: test/tools/javac/Capture.java update: test/tools/javac/CaptureInSubtype.java update: test/tools/javac/CascadedInnerNewInstance.java update: test/tools/javac/CastInterface2Array.java update: test/tools/javac/ClassIsAbstract.java update: test/tools/javac/ClassLit.java update: test/tools/javac/ClassToTypeParm.java update: test/tools/javac/CloneableProblem.java update: test/tools/javac/Closure1.java update: test/tools/javac/Closure2.java update: test/tools/javac/Closure3.java update: test/tools/javac/Closure4.java update: test/tools/javac/Closure5.java update: test/tools/javac/Closure6.java update: test/tools/javac/CompoundBox.java update: test/tools/javac/ConditionalArgTypes_1.java update: test/tools/javac/ConditionalArgTypes_2.java update: test/tools/javac/ConditionalClass.java update: test/tools/javac/ConditionalInline.java update: test/tools/javac/ConditionalWithVoid.java update: test/tools/javac/ConstBoolAppend.java update: test/tools/javac/ConstCharAppend.java update: test/tools/javac/CyclicInheritance.java update: test/tools/javac/CyclicInheritance2.java update: test/tools/javac/CyclicInheritance4.java update: test/tools/javac/DeadInnerClass.java update: test/tools/javac/DeclarationStatementInline.java update: test/tools/javac/DeepStringConcat.java update: test/tools/javac/DepParam.java update: test/tools/javac/Digits.java update: test/tools/javac/DivByZero.java update: test/tools/javac/DuplicateClass.java update: test/tools/javac/DuplicateClass2.java update: test/tools/javac/DuplicateImport.java update: test/tools/javac/EOI.java update: test/tools/javac/EarlyAssert.java update: test/tools/javac/EmptyArray.java update: test/tools/javac/EmptyBreak.java update: test/tools/javac/EmptyDocComments.java update: test/tools/javac/EmptySwitch.java update: test/tools/javac/EnclosingAccessCheck.java update: test/tools/javac/Enum1.java update: test/tools/javac/ExceptionalFinally.java update: test/tools/javac/ExceptionalFinally2.java update: test/tools/javac/ExprQualifiedType.java update: test/tools/javac/ExtendArray.java update: test/tools/javac/ExtendsScope.java update: test/tools/javac/ExtraneousEquals.java update: test/tools/javac/FaultySignature.java update: test/tools/javac/FinalInitializer.java update: test/tools/javac/FinalInitializer_2.java update: test/tools/javac/FinalIntConcatenation.java update: test/tools/javac/FinalThisReference.java update: test/tools/javac/FinallyWarn.java update: test/tools/javac/FlatnameClash.java update: test/tools/javac/FlatnameClash2.java update: test/tools/javac/FoldConditional.java update: test/tools/javac/GoodCovar.java update: test/tools/javac/HexFloatLiterals.java update: test/tools/javac/HexThree.java update: test/tools/javac/IllDefinedOrderOfInit.java update: test/tools/javac/IllegalAnnotation.java update: test/tools/javac/IllegallyOptimizedException.java update: test/tools/javac/ImplicitToString.java update: test/tools/javac/InconsistentInheritedSignature.java update: test/tools/javac/InconsistentStack.java update: test/tools/javac/Increment.java update: test/tools/javac/InheritedPrivateImpl.java update: test/tools/javac/InitializerCompletion_1.java update: test/tools/javac/InitializerCompletion_2.java update: test/tools/javac/InitializerCompletion_3.java update: test/tools/javac/InitializerCompletion_4.java update: test/tools/javac/InnerMemberRegression.java update: test/tools/javac/InnerMethSig.java update: test/tools/javac/InnerNamedConstant_1.java update: test/tools/javac/InnerNamedConstant_2.java update: test/tools/javac/InnerTruth.java update: test/tools/javac/InstanceInitException_1.java update: test/tools/javac/InstanceInitException_2.java update: test/tools/javac/InterfaceAssert.java update: test/tools/javac/InterfaceFieldParsing_1.java update: test/tools/javac/InterfaceInInner.java update: test/tools/javac/InterfaceMemberClassModifiers.java update: test/tools/javac/InterfaceObjectIncompatibility.java update: test/tools/javac/InterfaceObjectInheritance.java update: test/tools/javac/InterfaceOverrideCheck.java update: test/tools/javac/InterfaceOverrideObject.java update: test/tools/javac/InvalidIntfCast.java update: test/tools/javac/JsrRet.java update: test/tools/javac/LabelHiding_1.java update: test/tools/javac/LabeledDeclaration.java update: test/tools/javac/LocalClasses_1.java update: test/tools/javac/LocalClasses_2.java update: test/tools/javac/ManyMembers2.java update: test/tools/javac/MemberTypeInheritance.java update: test/tools/javac/MissingInclude.java update: test/tools/javac/NameCollision.java update: test/tools/javac/NameCollision2.java update: test/tools/javac/NestedDuplicateLabels.java update: test/tools/javac/NestedFinallyReturn.java update: test/tools/javac/NestedInnerClassNames.java update: test/tools/javac/NewGeneric.java update: test/tools/javac/NoClass.java update: test/tools/javac/NoNoClassDefFoundErrorError.java update: test/tools/javac/NonStaticFieldExpr1.java update: test/tools/javac/NonStaticFieldExpr2.java update: test/tools/javac/NonStaticFieldExpr3.java update: test/tools/javac/NonStaticFieldExpr4c.java update: test/tools/javac/NonStaticFinalVar.java update: test/tools/javac/Null2DArray.java update: test/tools/javac/NullQualifiedNew.java update: test/tools/javac/NullQualifiedNew2.java update: test/tools/javac/NullQualifiedSuper1.java update: test/tools/javac/NullQualifiedSuper2.java update: test/tools/javac/NullStaticQualifier.java update: test/tools/javac/Object1.java update: test/tools/javac/Object2.java update: test/tools/javac/ObjectIncompatibleInterface.java update: test/tools/javac/ObjectMethodRefFromInterface.java update: test/tools/javac/OuterParameter_1.java update: test/tools/javac/OverridePosition.java update: test/tools/javac/Parens1.java update: test/tools/javac/Parens2.java update: test/tools/javac/Parens3.java update: test/tools/javac/Parens4.java update: test/tools/javac/ParseConditional.java update: test/tools/javac/PrivateLocalConstructor.java update: test/tools/javac/PrivateUplevelConstant.java update: test/tools/javac/QualifiedConstant.java update: test/tools/javac/QualifiedNew.java update: test/tools/javac/QualifiedNewScope.java update: test/tools/javac/QualifiedOuterThis.java update: test/tools/javac/QualifiedOuterThis2.java update: test/tools/javac/QualifiedThisAndSuper_1.java update: test/tools/javac/QualifiedThisAndSuper_2.java update: test/tools/javac/QualifiedThisAndSuper_3.java update: test/tools/javac/QualifiedThisExactMatch.java update: test/tools/javac/RawCrash.java update: test/tools/javac/ReturnAfterIfThenElse.java update: test/tools/javac/SerialWarn.java update: test/tools/javac/ShiftExpressionTest.java update: test/tools/javac/Source5.java update: test/tools/javac/StandaloneQualifiedSuper.java update: test/tools/javac/StaticBlockScope.java update: test/tools/javac/StoreClass.java update: test/tools/javac/StrictAbstract.java update: test/tools/javac/StringAppendAccessMethodOnLHS.java update: test/tools/javac/StringConversion.java update: test/tools/javac/SuperField.java update: test/tools/javac/SuperMeth.java update: test/tools/javac/SuperMethodResolve.java update: test/tools/javac/SuperNew.java update: test/tools/javac/SuperNew2.java update: test/tools/javac/SuperNew3.java update: test/tools/javac/SuperNew4.java update: test/tools/javac/SuperclassConstructorException.java update: test/tools/javac/SwitchFence.java update: test/tools/javac/SwitchScope.java update: test/tools/javac/SynchronizedClass.java update: test/tools/javac/SynthName1.java update: test/tools/javac/SynthName2.java update: test/tools/javac/T4906100.java update: test/tools/javac/T5048776.java update: test/tools/javac/T5092545.java update: test/tools/javac/T5105890.java update: test/tools/javac/T6214885.java update: test/tools/javac/T6224167.java update: test/tools/javac/T6227617.java update: test/tools/javac/T6230128.java update: test/tools/javac/T6231847.java update: test/tools/javac/T6232928.java update: test/tools/javac/T6234077.java update: test/tools/javac/T6238612.java update: test/tools/javac/T6241723.java update: test/tools/javac/T6245591.java update: test/tools/javac/T6247324.java update: test/tools/javac/T6265400.java update: test/tools/javac/T6266772.java update: test/tools/javac/T6306967.java update: test/tools/javac/T6341023.java update: test/tools/javac/T6358024.java update: test/tools/javac/T6358166.java update: test/tools/javac/T6358168.java update: test/tools/javac/T6361619.java update: test/tools/javac/T6366196.java update: test/tools/javac/T6370653.java update: test/tools/javac/T6379327.java update: test/tools/javac/T6394563.java update: test/tools/javac/T6395974.java update: test/tools/javac/T6397286.java update: test/tools/javac/T6404756.java update: test/tools/javac/T6406771.java update: test/tools/javac/T6407066.java update: test/tools/javac/T6407257.java update: test/tools/javac/T6410706.java update: test/tools/javac/T6413876.java update: test/tools/javac/T6423583.java update: test/tools/javac/ThrowNull.java update: test/tools/javac/ThrowsIntersection_1.java update: test/tools/javac/ThrowsIntersection_2.java update: test/tools/javac/ThrowsIntersection_3.java update: test/tools/javac/ThrowsIntersection_4.java update: test/tools/javac/TryInInstanceInit.java update: test/tools/javac/UncaughtOverflow.java update: test/tools/javac/UncaughtOverflow2.java update: test/tools/javac/UnreachableVar.java update: test/tools/javac/UnterminatedLineComment.java update: test/tools/javac/UplevelFromAnonInSuperCall.java update: test/tools/javac/UseEnum.java update: test/tools/javac/VarDeclarationWithAssignment.java update: test/tools/javac/Verify.java update: test/tools/javac/VerifyDA.java update: test/tools/javac/VoidArray.java update: test/tools/javac/apt.sh update: test/tools/javac/T4093617/T4093617.java update: test/tools/javac/T4848619/T4848619a.java update: test/tools/javac/T4848619/T4848619b.java update: test/tools/javac/T4994049/DeprecatedNOT.java update: test/tools/javac/T4994049/DeprecatedYES.java update: test/tools/javac/T4994049/T4994049.java update: test/tools/javac/T5003235/T5003235a.java update: test/tools/javac/T5003235/T5003235b.java update: test/tools/javac/T5003235/T5003235c.java update: test/tools/javac/T5024091/T5024091.java update: test/tools/javac/T5090006/T5090006.java update: test/tools/javac/T6180021/AbstractSub.java update: test/tools/javac/T6180021/Sub.java update: test/tools/javac/T6231246/T6231246.java update: test/tools/javac/T6356217/T6356217.java update: test/tools/javac/T6435291/T6435291.java update: test/tools/javac/abstract/T1.java update: test/tools/javac/abstract/T4717181a.java update: test/tools/javac/abstract/T4717181b.java update: test/tools/javac/abstract/U1.java update: test/tools/javac/accessVirtualInner/Main.java update: test/tools/javac/annotations/6214965/T6214965.java update: test/tools/javac/annotations/6359949/T6359949.java update: test/tools/javac/annotations/6359949/T6359949a.java update: test/tools/javac/annotations/6365854/T6365854.java update: test/tools/javac/annotations/default/A.java update: test/tools/javac/annotations/neg/AnnComma.java update: test/tools/javac/annotations/neg/ArrayLit.java update: test/tools/javac/annotations/neg/Constant.java update: test/tools/javac/annotations/neg/Cycle1.java update: test/tools/javac/annotations/neg/Cycle2.java update: test/tools/javac/annotations/neg/Cycle3.java update: test/tools/javac/annotations/neg/Dep.java update: test/tools/javac/annotations/neg/Dup.java update: test/tools/javac/annotations/neg/DupTarget.java update: test/tools/javac/annotations/neg/MemberOver.java update: test/tools/javac/annotations/neg/MixedSource.java update: test/tools/javac/annotations/neg/NoAnnotationMethods.java update: test/tools/javac/annotations/neg/NoObjectMethods.java update: test/tools/javac/annotations/neg/ObjectMembers.java update: test/tools/javac/annotations/neg/OverrideNo.java update: test/tools/javac/annotations/neg/Package.java update: test/tools/javac/annotations/neg/Recovery.java update: test/tools/javac/annotations/neg/Recovery1.java update: test/tools/javac/annotations/neg/Scope.java update: test/tools/javac/annotations/neg/Syntax1.java update: test/tools/javac/annotations/neg/WrongTarget.java update: test/tools/javac/annotations/neg/WrongTarget2.java update: test/tools/javac/annotations/neg/WrongValue.java update: test/tools/javac/annotations/neg/Z1.java update: test/tools/javac/annotations/neg/Z10.java update: test/tools/javac/annotations/neg/Z11.java update: test/tools/javac/annotations/neg/Z12.java update: test/tools/javac/annotations/neg/Z13.java update: test/tools/javac/annotations/neg/Z14.java update: test/tools/javac/annotations/neg/Z15.java update: test/tools/javac/annotations/neg/Z16.java update: test/tools/javac/annotations/neg/Z2.java update: test/tools/javac/annotations/neg/Z3.java update: test/tools/javac/annotations/neg/Z4.java update: test/tools/javac/annotations/neg/Z5.java update: test/tools/javac/annotations/neg/Z8.java update: test/tools/javac/annotations/neg/Z9.java update: test/tools/javac/annotations/pos/AnnotationMethods.java update: test/tools/javac/annotations/pos/AnnoteElideBraces.java update: test/tools/javac/annotations/pos/ClassA.java update: test/tools/javac/annotations/pos/Dep.java update: test/tools/javac/annotations/pos/Enum1.java update: test/tools/javac/annotations/pos/Local.java update: test/tools/javac/annotations/pos/Members.java update: test/tools/javac/annotations/pos/NType.java update: test/tools/javac/annotations/pos/OverrideCheck.java update: test/tools/javac/annotations/pos/OverrideOK.java update: test/tools/javac/annotations/pos/Parameter.java update: test/tools/javac/annotations/pos/Primitives.java update: test/tools/javac/annotations/pos/RightTarget.java update: test/tools/javac/annotations/pos/Z1.java update: test/tools/javac/annotations/pos/Z2.java update: test/tools/javac/annotations/pos/Z3.java update: test/tools/javac/annotations/pos/Z4.java update: test/tools/javac/annotations/pos/package-info.java update: test/tools/javac/api/6400303/T6400303.java update: test/tools/javac/api/6410643/T6410643.java update: test/tools/javac/api/6411310/T6411310.java update: test/tools/javac/api/6411333/T6411333.java update: test/tools/javac/api/6412656/T6412656.java update: test/tools/javac/api/6415780/T6415780.java update: test/tools/javac/api/6418694/T6418694.java update: test/tools/javac/api/6420409/T6420409.java update: test/tools/javac/api/6420464/T6420464.java update: test/tools/javac/api/6421111/T6421111.java update: test/tools/javac/api/6421756/T6421756.java update: test/tools/javac/api/6422215/T6422215.java update: test/tools/javac/api/6422327/T6422327.java update: test/tools/javac/api/6423003/T6423003.java update: test/tools/javac/api/6431257/T6431257.java update: test/tools/javac/api/6431435/T6431435.java update: test/tools/javac/api/6437349/T6437349.java update: test/tools/javac/api/6437999/T6437999.java update: test/tools/javac/api/6440333/T6440333.java update: test/tools/javac/api/6440528/T6440528.java update: test/tools/javac/api/6452876/T6452876.java update: test/tools/javac/api/6468404/T6468404.java update: test/tools/javac/api/6471599/Main.java update: test/tools/javac/api/Sibling.java update: test/tools/javac/api/T6257235.java update: test/tools/javac/api/T6258271.java update: test/tools/javac/api/T6265137.java update: test/tools/javac/api/T6306137.java update: test/tools/javac/api/T6345974.java update: test/tools/javac/api/T6357331.java update: test/tools/javac/api/T6358786.java update: test/tools/javac/api/T6358955.java update: test/tools/javac/api/T6392782.java update: test/tools/javac/api/T6395981.java update: test/tools/javac/api/T6397104.java update: test/tools/javac/api/T6400205.java update: test/tools/javac/api/T6400207.java update: test/tools/javac/api/T6407011.java update: test/tools/javac/api/T6412669.java update: test/tools/javac/api/T6431879.java update: test/tools/javac/api/TestEvalExpression.java update: test/tools/javac/api/TestGetTree.java update: test/tools/javac/api/TestJavacTask.java update: test/tools/javac/api/TestJavacTaskScanner.java update: test/tools/javac/api/TestOperators.java update: test/tools/javac/api/TestResolveIdent.java update: test/tools/javac/api/evalexpr/ByteArrayClassLoader.java update: test/tools/javac/api/evalexpr/CompileFromString.java update: test/tools/javac/api/evalexpr/MemoryFileManager.java update: test/tools/javac/api/guide/Test.java update: test/tools/javac/assert/Attach.java update: test/tools/javac/assert/DU1.java update: test/tools/javac/assert/DU2.java update: test/tools/javac/assert/Position.java update: test/tools/javac/binaryCompat/T1.java update: test/tools/javac/boxing/BoxedForeach.java update: test/tools/javac/boxing/Boxing1.java update: test/tools/javac/boxing/Boxing2.java update: test/tools/javac/boxing/Boxing4.java update: test/tools/javac/boxing/BoxingCaching.java update: test/tools/javac/boxing/NoBoxingBool.java update: test/tools/javac/boxing/NoBoxingByte.java update: test/tools/javac/boxing/NoBoxingChar.java update: test/tools/javac/boxing/NoBoxingDouble.java update: test/tools/javac/boxing/NoBoxingFloat.java update: test/tools/javac/boxing/NoBoxingInt.java update: test/tools/javac/boxing/NoBoxingLong.java update: test/tools/javac/boxing/NoBoxingShort.java update: test/tools/javac/boxing/T5082929.java update: test/tools/javac/boxing/T6348760.java update: test/tools/javac/boxing/T6369051.java update: test/tools/javac/capture/Capture1.java update: test/tools/javac/capture/Capture2.java update: test/tools/javac/capture/Capture3.java update: test/tools/javac/capture/Capture4.java update: test/tools/javac/capture/Capture5.java update: test/tools/javac/capture/Martin.java update: test/tools/javac/cast/4916620/T4916620.java update: test/tools/javac/cast/5034609/T5034609.java update: test/tools/javac/cast/5043020/T5043020.java update: test/tools/javac/cast/5064736/T5064736.java update: test/tools/javac/cast/5065215/T5065215.java update: test/tools/javac/cast/6211853/T6211853.java update: test/tools/javac/cast/6219964/T6219964.java update: test/tools/javac/cast/6256789/T6256789.java update: test/tools/javac/cast/6286112/T6286112.java update: test/tools/javac/cast/6295056/T6295056.java update: test/tools/javac/cast/6302214/T6302214.java update: test/tools/javac/cast/6302214/T6302214a.java update: test/tools/javac/cast/6302956/T6302956.java update: test/tools/javac/cast/6358534/T6358534.java update: test/tools/javac/cast/BoxedArray.java update: test/tools/javac/cast/forum/T654170.java update: test/tools/javac/code/ArrayClone.java update: test/tools/javac/completion/C.java update: test/tools/javac/conditional/Conditional.java update: test/tools/javac/constDebug/ConstDebug.java update: test/tools/javac/crossPackageImpl/CrossPackageImplA.java update: test/tools/javac/depDocComment/DeprecatedDocComment.java update: test/tools/javac/depDocComment/SuppressDeprecation.java update: test/tools/javac/depOverrides/annotation/Test3.java update: test/tools/javac/depOverrides/doccomment/Test3.java update: test/tools/javac/enum/6350057/T6350057.java update: test/tools/javac/enum/6384542/T6384542.java update: test/tools/javac/enum/6384542/T6384542a.java update: test/tools/javac/enum/6424358/T6424358.java update: test/tools/javac/enum/AbstractEmptyEnum.java update: test/tools/javac/enum/AbstractEnum1.java update: test/tools/javac/enum/DA1.java update: test/tools/javac/enum/DA2.java update: test/tools/javac/enum/DA3.java update: test/tools/javac/enum/Def.java update: test/tools/javac/enum/Enum1.java update: test/tools/javac/enum/Enum2.java update: test/tools/javac/enum/Enum3.java update: test/tools/javac/enum/EnumImplicitPrivateConstructor.java update: test/tools/javac/enum/EnumInit.java update: test/tools/javac/enum/EnumPrivateConstructor.java update: test/tools/javac/enum/EnumProtectedConstructor.java update: test/tools/javac/enum/EnumPublicConstructor.java update: test/tools/javac/enum/EnumSwitch1.java update: test/tools/javac/enum/EnumSwitch2.java update: test/tools/javac/enum/EnumSwitch3.java update: test/tools/javac/enum/EnumSwitch4.java update: test/tools/javac/enum/ExplicitlyAbstractEnum1.java update: test/tools/javac/enum/ExplicitlyAbstractEnum2.java update: test/tools/javac/enum/ExplicitlyFinalEnum1.java update: test/tools/javac/enum/ExplicitlyFinalEnum2.java update: test/tools/javac/enum/FauxEnum1.java update: test/tools/javac/enum/FauxEnum2.java update: test/tools/javac/enum/FauxEnum3.java update: test/tools/javac/enum/FauxSpecialEnum1.java update: test/tools/javac/enum/FauxSpecialEnum2.java update: test/tools/javac/enum/LocalEnum.java update: test/tools/javac/enum/NestedEnum.java update: test/tools/javac/enum/NoFinal.java update: test/tools/javac/enum/NoFinal2.java update: test/tools/javac/enum/NoFinal3.java update: test/tools/javac/enum/NoFinal4.java update: test/tools/javac/enum/NoFinal5.java update: test/tools/javac/enum/OkFinal.java update: test/tools/javac/enum/SynthValues.java update: test/tools/javac/enum/T5075242.java update: test/tools/javac/enum/T5081785.java update: test/tools/javac/enum/TrailingComma.java update: test/tools/javac/enum/UserValue.java update: test/tools/javac/enum/ValueOf.java update: test/tools/javac/enum/enumSwitch/EnumSwitch.java update: test/tools/javac/enum/forwardRef/T6425594.java update: test/tools/javac/enum/forwardRef/TestEnum1.java update: test/tools/javac/enum/forwardRef/TestEnum2.java update: test/tools/javac/enum/forwardRef/TestEnum3.java update: test/tools/javac/enum/forwardRef/TestEnum4.java update: test/tools/javac/enum/forwardRef/TestEnum5.java update: test/tools/javac/enum/forwardRef/TestEnum6.java update: test/tools/javac/expression/NullAppend.java update: test/tools/javac/expression/NullAppend2.java update: test/tools/javac/expression/ObjectAppend.java update: test/tools/javac/falseCycle/FalseCycle.java update: test/tools/javac/falseCycle/FalseCycleBase.java update: test/tools/javac/fatalErrors/NoJavaLang.java update: test/tools/javac/foreach/Foreach.java update: test/tools/javac/foreach/GenericIterator.java update: test/tools/javac/foreach/IntersectIterator.java update: test/tools/javac/foreach/ListOfListTest.java update: test/tools/javac/foreach/SpecIterable.java update: test/tools/javac/foreach/StaticBlock.java update: test/tools/javac/foreach/SuperfluousAbstract.java update: test/tools/javac/generics/5066774/T5066774.java update: test/tools/javac/generics/5086027/T5086027.java update: test/tools/javac/generics/5086027/T5086027pos.java update: test/tools/javac/generics/6192945/Method.java update: test/tools/javac/generics/6192945/T6192945.java update: test/tools/javac/generics/6207386/T6207386.java update: test/tools/javac/generics/6207386/Test.java update: test/tools/javac/generics/6213818/T6213818.java update: test/tools/javac/generics/6218229/T6218229.java update: test/tools/javac/generics/6227936/Orig.java update: test/tools/javac/generics/6227936/T6227936.java update: test/tools/javac/generics/6245699/T6245699.java update: test/tools/javac/generics/6245699/T6245699a.java update: test/tools/javac/generics/6245699/T6245699b.java update: test/tools/javac/generics/6245699/T6245699c.java update: test/tools/javac/generics/6268476/T6268476.java update: test/tools/javac/generics/6292765/T6292765.java update: test/tools/javac/generics/6332204/T6332204.java update: test/tools/javac/generics/6332204/T6346876.java update: test/tools/javac/generics/6356636/T6356636.java update: test/tools/javac/generics/6359951/T6359951.java update: test/tools/javac/generics/6372782/T6372782.java update: test/tools/javac/generics/6413682/T6413682.java update: test/tools/javac/generics/6413682/TestPos.java update: test/tools/javac/generics/6495506/T6495506.java update: test/tools/javac/generics/ArrayClone.java update: test/tools/javac/generics/ArrayTypearg.java update: test/tools/javac/generics/BridgeClash.java update: test/tools/javac/generics/BridgeOrder.java update: test/tools/javac/generics/BridgeRestype.java update: test/tools/javac/generics/CastCrash.java update: test/tools/javac/generics/Casting.java update: test/tools/javac/generics/Casting2.java update: test/tools/javac/generics/Casting3.java update: test/tools/javac/generics/Casting4.java update: test/tools/javac/generics/CatchTyparam.java update: test/tools/javac/generics/Conditional.java update: test/tools/javac/generics/Covar2.java update: test/tools/javac/generics/Covar3.java update: test/tools/javac/generics/Covar4.java update: test/tools/javac/generics/Crash01.java update: test/tools/javac/generics/Crash02.java update: test/tools/javac/generics/CyclicInheritance3.java update: test/tools/javac/generics/CyclicInheritance5.java update: test/tools/javac/generics/ErasureClashCrash.java update: test/tools/javac/generics/ExtendedRaw1.java update: test/tools/javac/generics/ExtendedRaw2.java update: test/tools/javac/generics/ExtendedRaw3.java update: test/tools/javac/generics/ExtendedRaw4.java update: test/tools/javac/generics/FinalBridge.java update: test/tools/javac/generics/GenLit1.java update: test/tools/javac/generics/GenLit2.java update: test/tools/javac/generics/GenericAnonCtor.java update: test/tools/javac/generics/GenericMerge.java update: test/tools/javac/generics/GenericOverride.java update: test/tools/javac/generics/GenericThrowable.java update: test/tools/javac/generics/GetClass.java update: test/tools/javac/generics/GetClass2.java update: test/tools/javac/generics/InheritanceConflict.java update: test/tools/javac/generics/InheritanceConflict2.java update: test/tools/javac/generics/InheritanceConflict3.java update: test/tools/javac/generics/InnerInterface1.java update: test/tools/javac/generics/InnerInterface2.java update: test/tools/javac/generics/InstanceOf1.java update: test/tools/javac/generics/InstanceOf2.java update: test/tools/javac/generics/InstanceOf3.java update: test/tools/javac/generics/InterfaceCast1.java update: test/tools/javac/generics/LoadOrder.java update: test/tools/javac/generics/MissingBridge.java update: test/tools/javac/generics/MissingCast.java update: test/tools/javac/generics/Multibound1.java update: test/tools/javac/generics/MultipleInheritance.java update: test/tools/javac/generics/NameOrder.java update: test/tools/javac/generics/Nonlinear.java update: test/tools/javac/generics/ParametricException.java update: test/tools/javac/generics/ParenVerify.java update: test/tools/javac/generics/PermuteBound.java update: test/tools/javac/generics/PrimitiveClass.java update: test/tools/javac/generics/PrimitiveVariant.java update: test/tools/javac/generics/RawClient.java update: test/tools/javac/generics/RefEqual.java update: test/tools/javac/generics/ReverseOrder.java update: test/tools/javac/generics/SelfImplement.java update: test/tools/javac/generics/SilentUnchecked.java update: test/tools/javac/generics/SuperTypeargs.java update: test/tools/javac/generics/T4661029.java update: test/tools/javac/generics/T4683314.java update: test/tools/javac/generics/T4684378.java update: test/tools/javac/generics/T4695348.java update: test/tools/javac/generics/T4695415.java update: test/tools/javac/generics/T4695847.java update: test/tools/javac/generics/T4711570.java update: test/tools/javac/generics/T4711572.java update: test/tools/javac/generics/T4711694.java update: test/tools/javac/generics/T4738171.java update: test/tools/javac/generics/T4739399.java update: test/tools/javac/generics/T4757416.java update: test/tools/javac/generics/T4784207a.java update: test/tools/javac/generics/T4784219.java update: test/tools/javac/generics/T5011073.java update: test/tools/javac/generics/T5094318.java update: test/tools/javac/generics/T6391995.java update: test/tools/javac/generics/TyparamLit.java update: test/tools/javac/generics/TyparamStaticScope.java update: test/tools/javac/generics/TyparamStaticScope2.java update: test/tools/javac/generics/UncheckedArray.java update: test/tools/javac/generics/UncheckedConstructor.java update: test/tools/javac/generics/UncheckedCovariance.java update: test/tools/javac/generics/UnsoundInference.java update: test/tools/javac/generics/Varargs.java update: test/tools/javac/generics/Varargs2.java update: test/tools/javac/generics/WrongNew.java update: test/tools/javac/generics/abstract/T4717181c.java update: test/tools/javac/generics/bridge1/D.java update: test/tools/javac/generics/classreader/HArrayMethod.java update: test/tools/javac/generics/compat/CovariantCompat1.java update: test/tools/javac/generics/compat/OverrideBridge1.java update: test/tools/javac/generics/compat/VisibleBridge.java update: test/tools/javac/generics/forwardSeparateBound/ForwardSeparateBound1.java update: test/tools/javac/generics/forwardSeparateBound/ForwardSeparateBound2.java update: test/tools/javac/generics/genericAbstract/A.java update: test/tools/javac/generics/inference/4941882/T4941882.java update: test/tools/javac/generics/inference/4942040/T4942040.java update: test/tools/javac/generics/inference/4954546/T4954546.java update: test/tools/javac/generics/inference/4972073/T4972073.java update: test/tools/javac/generics/inference/4972073/T4972073a.java update: test/tools/javac/generics/inference/4972073/T4972073b.java update: test/tools/javac/generics/inference/5003431/T5003431.java update: test/tools/javac/generics/inference/5021635/T5021635.java update: test/tools/javac/generics/inference/5021635/T6299211.java update: test/tools/javac/generics/inference/5034571/T5034571.java update: test/tools/javac/generics/inference/5042462/T5042462.java update: test/tools/javac/generics/inference/5044646/T5044646.java update: test/tools/javac/generics/inference/5049523/T5049523.java update: test/tools/javac/generics/inference/5070671/T5070671.java update: test/tools/javac/generics/inference/5073060/GenericsAndPackages.java update: test/tools/javac/generics/inference/5073060/Neg.java update: test/tools/javac/generics/inference/5073060/T5073060.java update: test/tools/javac/generics/inference/5073060/T5073060a.java update: test/tools/javac/generics/inference/5080917/T5080917.java update: test/tools/javac/generics/inference/5081782/Neg.java update: test/tools/javac/generics/inference/5081782/Pos.java update: test/tools/javac/generics/inference/6215213/T6215213.java update: test/tools/javac/generics/inference/6222762/T6222762.java update: test/tools/javac/generics/inference/6240565/T6240565.java update: test/tools/javac/generics/inference/6273455/T6273455.java update: test/tools/javac/generics/inference/6278587/T6278587.java update: test/tools/javac/generics/inference/6278587/T6278587Neg.java update: test/tools/javac/generics/inference/6302954/T6456971.java update: test/tools/javac/generics/inference/6302954/T6476073.java update: test/tools/javac/generics/inference/6302954/X.java update: test/tools/javac/generics/inference/6356673/Test.java update: test/tools/javac/generics/inference/6359106/T6359106.java update: test/tools/javac/generics/inference/6365166/NewTest.java update: test/tools/javac/generics/inference/6468384/T6468384.java update: test/tools/javac/generics/odersky/BadTest.java update: test/tools/javac/generics/odersky/BadTest2.java update: test/tools/javac/generics/odersky/BadTest3.java update: test/tools/javac/generics/odersky/BadTest4.java update: test/tools/javac/generics/odersky/Test.java update: test/tools/javac/generics/odersky/Test2.java update: test/tools/javac/generics/odersky/Test3.java update: test/tools/javac/generics/odersky/Test4.java update: test/tools/javac/generics/parametricException/J.java update: test/tools/javac/generics/rare/Rare1.java update: test/tools/javac/generics/rare/Rare10.java update: test/tools/javac/generics/rare/Rare11.java update: test/tools/javac/generics/rare/Rare2.java update: test/tools/javac/generics/rare/Rare3.java update: test/tools/javac/generics/rare/Rare4.java update: test/tools/javac/generics/rare/Rare5.java update: test/tools/javac/generics/rare/Rare6.java update: test/tools/javac/generics/rare/Rare7.java update: test/tools/javac/generics/rare/Rare9.java update: test/tools/javac/generics/rawOverride/AttributeSet.java update: test/tools/javac/generics/rawOverride/Fail1.java update: test/tools/javac/generics/rawOverride/T6178365.java update: test/tools/javac/generics/rawOverride/Warn1.java update: test/tools/javac/generics/rawOverride/Warn2.java update: test/tools/javac/generics/rawSeparate/RetroLexer.java update: test/tools/javac/generics/syntax/6318240/Bar.java update: test/tools/javac/generics/syntax/6318240/BarNeg1.java update: test/tools/javac/generics/syntax/6318240/BarNeg1a.java update: test/tools/javac/generics/syntax/6318240/BarNeg2.java update: test/tools/javac/generics/syntax/6318240/BarNeg2a.java update: test/tools/javac/generics/syntax/6318240/Foo.java update: test/tools/javac/generics/typeargs/Basic.java update: test/tools/javac/generics/typeargs/Metharg1.java update: test/tools/javac/generics/typeargs/Metharg2.java update: test/tools/javac/generics/typeargs/Newarg1.java update: test/tools/javac/generics/typeargs/Newarg2.java update: test/tools/javac/generics/typeargs/Superarg1.java update: test/tools/javac/generics/typeargs/ThisArg.java update: test/tools/javac/generics/typevars/4856983/T4856983.java update: test/tools/javac/generics/typevars/4856983/T4856983a.java update: test/tools/javac/generics/typevars/4856983/T4856983b.java update: test/tools/javac/generics/typevars/5060485/Compatibility.java update: test/tools/javac/generics/typevars/5060485/Method.java update: test/tools/javac/generics/typevars/5060485/Neg1.java update: test/tools/javac/generics/typevars/5060485/Neg2.java update: test/tools/javac/generics/typevars/5060485/Pos.java update: test/tools/javac/generics/typevars/5060485/T5060485.java update: test/tools/javac/generics/typevars/5061359/T5061359.java update: test/tools/javac/generics/typevars/5061359/T5061359a.java update: test/tools/javac/generics/typevars/5061359/T5061359b.java update: test/tools/javac/generics/typevars/6182630/T6182630.java update: test/tools/javac/generics/typevars/6199146/T6199146.java update: test/tools/javac/generics/typevars/6486430/T6486430.java update: test/tools/javac/generics/typevars/6486430/T6486430a.java update: test/tools/javac/generics/wildcards/6320612/T6320612.java update: test/tools/javac/generics/wildcards/6330931/T6330931.java update: test/tools/javac/generics/wildcards/6437894/T6437894.java update: test/tools/javac/generics/wildcards/AssignmentDifferentTypes1.java update: test/tools/javac/generics/wildcards/AssignmentDifferentTypes2.java update: test/tools/javac/generics/wildcards/AssignmentDifferentTypes3.java update: test/tools/javac/generics/wildcards/AssignmentDifferentTypes4.java update: test/tools/javac/generics/wildcards/AssignmentDifferentTypes5.java update: test/tools/javac/generics/wildcards/AssignmentDifferentTypes6.java update: test/tools/javac/generics/wildcards/AssignmentDifferentTypes7.java update: test/tools/javac/generics/wildcards/AssignmentDifferentTypes8.java update: test/tools/javac/generics/wildcards/AssignmentDifferentTypes9.java update: test/tools/javac/generics/wildcards/AssignmentSameType1.java update: test/tools/javac/generics/wildcards/AssignmentSameType2.java update: test/tools/javac/generics/wildcards/AssignmentSameType3.java update: test/tools/javac/generics/wildcards/AssignmentSameType4.java update: test/tools/javac/generics/wildcards/AssignmentSameType5.java update: test/tools/javac/generics/wildcards/AssignmentSameType6.java update: test/tools/javac/generics/wildcards/AssignmentSameType7.java update: test/tools/javac/generics/wildcards/AssignmentSameType8.java update: test/tools/javac/generics/wildcards/BoundBug.java update: test/tools/javac/generics/wildcards/ContraArg.java update: test/tools/javac/generics/wildcards/T5097548.java update: test/tools/javac/generics/wildcards/T5097548b.java update: test/tools/javac/generics/wildcards/UnboundArray.java update: test/tools/javac/generics/wildcards/neg/AmbiguousCast.java update: test/tools/javac/generics/wildcards/neg/Capture.java update: test/tools/javac/generics/wildcards/neg/CastFail1.java update: test/tools/javac/generics/wildcards/neg/CastFail10.java update: test/tools/javac/generics/wildcards/neg/CastFail11.java update: test/tools/javac/generics/wildcards/neg/CastFail12.java update: test/tools/javac/generics/wildcards/neg/CastFail13.java update: test/tools/javac/generics/wildcards/neg/CastFail14.java update: test/tools/javac/generics/wildcards/neg/CastFail15.java update: test/tools/javac/generics/wildcards/neg/CastFail16.java update: test/tools/javac/generics/wildcards/neg/CastFail17.java update: test/tools/javac/generics/wildcards/neg/CastFail18.java update: test/tools/javac/generics/wildcards/neg/CastFail19.java update: test/tools/javac/generics/wildcards/neg/CastFail2.java update: test/tools/javac/generics/wildcards/neg/CastFail20.java update: test/tools/javac/generics/wildcards/neg/CastFail21.java update: test/tools/javac/generics/wildcards/neg/CastFail3.java update: test/tools/javac/generics/wildcards/neg/CastFail4.java update: test/tools/javac/generics/wildcards/neg/CastFail5.java update: test/tools/javac/generics/wildcards/neg/CastFail6.java update: test/tools/javac/generics/wildcards/neg/CastFail7.java update: test/tools/javac/generics/wildcards/neg/CastFail8.java update: test/tools/javac/generics/wildcards/neg/CastFail9.java update: test/tools/javac/generics/wildcards/neg/CastWarn10.java update: test/tools/javac/generics/wildcards/neg/CastWarn11.java update: test/tools/javac/generics/wildcards/neg/CastWarn12.java update: test/tools/javac/generics/wildcards/neg/CastWarn13.java update: test/tools/javac/generics/wildcards/neg/CastWarn14.java update: test/tools/javac/generics/wildcards/neg/CastWarn2.java update: test/tools/javac/generics/wildcards/neg/CastWarn3.java update: test/tools/javac/generics/wildcards/neg/CastWarn4.java update: test/tools/javac/generics/wildcards/neg/CastWarn5.java update: test/tools/javac/generics/wildcards/neg/CastWarn6.java update: test/tools/javac/generics/wildcards/neg/CastWarn7.java update: test/tools/javac/generics/wildcards/neg/CastWarn8.java update: test/tools/javac/generics/wildcards/neg/CastWarn9.java update: test/tools/javac/generics/wildcards/neg/ParamCast.java update: test/tools/javac/generics/wildcards/neg/Readonly.java update: test/tools/javac/generics/wildcards/neg/Unbounded.java update: test/tools/javac/generics/wildcards/pos/AmbiguousCast2.java update: test/tools/javac/generics/wildcards/pos/BoundsCollision.java update: test/tools/javac/generics/wildcards/pos/Capture.java update: test/tools/javac/generics/wildcards/pos/CastTest.java update: test/tools/javac/generics/wildcards/pos/InstanceOf.java update: test/tools/javac/generics/wildcards/pos/ParamCast.java update: test/tools/javac/generics/wildcards/pos/RvalConversion.java update: test/tools/javac/generics/wildcards/pos/UncheckedCast1.java update: test/tools/javac/implicitThis/NewBeforeOuterConstructed.java update: test/tools/javac/implicitThis/NewBeforeOuterConstructed2.java update: test/tools/javac/implicitThis/NewBeforeOuterConstructed3.java update: test/tools/javac/implicitThis/WhichImplicitThis1.java update: test/tools/javac/implicitThis/WhichImplicitThis10.java update: test/tools/javac/implicitThis/WhichImplicitThis11.java update: test/tools/javac/implicitThis/WhichImplicitThis2.java update: test/tools/javac/implicitThis/WhichImplicitThis3.java update: test/tools/javac/implicitThis/WhichImplicitThis4.java update: test/tools/javac/implicitThis/WhichImplicitThis5.java update: test/tools/javac/implicitThis/WhichImplicitThis6.java update: test/tools/javac/implicitThis/WhichImplicitThis7.java update: test/tools/javac/implicitThis/WhichImplicitThis9.java update: test/tools/javac/importChecks/ImportCanonical1.java update: test/tools/javac/importChecks/ImportIsFullyQualified.java update: test/tools/javac/importChecks/ImportOfOwnClass.java update: test/tools/javac/importChecks/InvalidImportsNoClasses.java update: test/tools/javac/importContext/anonPackage/Foo.java update: test/tools/javac/importContext/anonPackage/bar/Baz.java update: test/tools/javac/importContext/namedPackage/Dummy.java update: test/tools/javac/importContext/namedPackage/bar/Baz.java update: test/tools/javac/importContext/namedPackage/foo/Foo.java update: test/tools/javac/importscope/A.java update: test/tools/javac/incompatibleNoninherited/A.java update: test/tools/javac/inheritAccess/PvtMbrsNotInherit1.java update: test/tools/javac/inheritedAccess/P1/priv.java update: test/tools/javac/inheritedAccess/P1/pub.java update: test/tools/javac/inheritedAccess/MethodReferenceQualification_1.java update: test/tools/javac/innerClassFile/Driver.java update: test/tools/javac/javazip/Test.sh update: test/tools/javac/jvm/6397652/T6397652.java update: test/tools/javac/limits/ArrayDims1.java update: test/tools/javac/limits/ArrayDims2.java update: test/tools/javac/limits/ArrayDims3.java update: test/tools/javac/limits/ArrayDims4.java update: test/tools/javac/limits/ArrayDims5.java update: test/tools/javac/limits/CodeSize.java update: test/tools/javac/limits/FinallyNesting.java update: test/tools/javac/limits/LongName.java update: test/tools/javac/limits/NumArgs1.java update: test/tools/javac/limits/NumArgs2.java update: test/tools/javac/limits/NumArgs3.java update: test/tools/javac/limits/NumArgs4.java update: test/tools/javac/limits/PoolSize1.java update: test/tools/javac/limits/PoolSize2.java update: test/tools/javac/limits/StringLength.java update: test/tools/javac/links/T.java update: test/tools/javac/lint/Deprecation.java update: test/tools/javac/lint/FallThrough.java update: test/tools/javac/lint/NoWarn.java update: test/tools/javac/lint/Unchecked.java update: test/tools/javac/mandatoryWarnings/deprecated/A.java update: test/tools/javac/mandatoryWarnings/deprecated/B.java update: test/tools/javac/mandatoryWarnings/unchecked/A.java update: test/tools/javac/mandatoryWarnings/unchecked/B.java update: test/tools/javac/miranda/4686148/Test.java update: test/tools/javac/miranda/4686811/Tryit.java update: test/tools/javac/miranda/4711056/T1.java update: test/tools/javac/miranda/T4279316a.java update: test/tools/javac/miranda/T4279316b.java update: test/tools/javac/miranda/T4279316c.java update: test/tools/javac/miranda/T4279316d.java update: test/tools/javac/miranda/T4528315.java update: test/tools/javac/miranda/T4666866.java update: test/tools/javac/miranda/T4711325.java update: test/tools/javac/missingClass/A.java update: test/tools/javac/missingSuperRecovery/MissingSuperRecovery.java update: test/tools/javac/mixedTarget/CompatibleAbstracts1.java update: test/tools/javac/mixedTarget/ExtendCovariant1.java update: test/tools/javac/mixedTarget/ExtendCovariant2.java update: test/tools/javac/nested/4903103/T4903103.java update: test/tools/javac/nested/5009484/X.java update: test/tools/javac/nested/5009484/Y.java update: test/tools/javac/newlines/Newlines.sh update: test/tools/javac/overload/T4494762.java update: test/tools/javac/overload/T4723909.java update: test/tools/javac/overload/T4743490.java update: test/tools/javac/overload/T5090220.java update: test/tools/javac/overrridecrash/B.java update: test/tools/javac/p1/AS.java update: test/tools/javac/p1/BS.java update: test/tools/javac/p1/CS.java update: test/tools/javac/packone/Mediator.java update: test/tools/javac/packone/Secret.java update: test/tools/javac/positions/T6253161.java update: test/tools/javac/positions/T6253161a.java update: test/tools/javac/positions/T6264029.java update: test/tools/javac/positions/T6402077.java update: test/tools/javac/positions/T6404194.java update: test/tools/javac/processing/6348193/T6348193.java update: test/tools/javac/processing/6348499/T6348499.java update: test/tools/javac/processing/6350124/T6350124.java update: test/tools/javac/processing/6359313/T6359313.java update: test/tools/javac/processing/6365040/T6365040.java update: test/tools/javac/processing/6378728/T6378728.java update: test/tools/javac/processing/6413690/T6413690.java update: test/tools/javac/processing/6414633/T6414633.java update: test/tools/javac/processing/6430209/T6430209.java update: test/tools/javac/processing/T6439826.java update: test/tools/javac/processing/Xprint.java update: test/tools/javac/processing/completion/TestCompletions.java update: test/tools/javac/processing/environment/TestSourceVersion.java update: test/tools/javac/processing/environment/round/TestElementsAnnotatedWith.java update: test/tools/javac/processing/errors/TestFatalityOfParseErrors.java update: test/tools/javac/processing/errors/TestOptionSyntaxErrors.java update: test/tools/javac/processing/errors/TestReturnCode.java update: test/tools/javac/processing/filer/TestFilerConstraints.java update: test/tools/javac/processing/filer/TestGetResource.java update: test/tools/javac/processing/filer/TestPackageInfo.java update: test/tools/javac/processing/messager/6362067/T6362067.java update: test/tools/javac/processing/messager/MessagerBasics.java update: test/tools/javac/processing/model/6194785/T6194785.java update: test/tools/javac/processing/model/6341534/T6341534.java update: test/tools/javac/processing/model/element/TestElement.java update: test/tools/javac/processing/model/element/TestNames.java update: test/tools/javac/processing/model/element/TestPackageElement.java update: test/tools/javac/processing/model/element/TypeParamBounds.java update: test/tools/javac/processing/model/testgetallmembers/Main.java update: test/tools/javac/processing/model/type/MirroredTypeEx/OverEager.java update: test/tools/javac/processing/model/type/NoTypes.java update: test/tools/javac/processing/model/type/TestTypeKind.java update: test/tools/javac/processing/model/util/BinaryName.java update: test/tools/javac/processing/model/util/GetTypeElemBadArg.java update: test/tools/javac/processing/model/util/NoSupers.java update: test/tools/javac/processing/model/util/OverridesSpecEx.java update: test/tools/javac/processing/model/util/TypesBadArg.java update: test/tools/javac/processing/model/util/deprecation/TestDeprecation.java update: test/tools/javac/processing/model/util/directSupersOfErr/DirectSupersOfErr.java update: test/tools/javac/processing/model/util/elements/TestGetPackageOf.java update: test/tools/javac/processing/model/util/filter/TestIterables.java update: test/tools/javac/processing/warnings/TestSourceVersionWarnings.java update: test/tools/javac/proprietary/WarnClass.java update: test/tools/javac/proprietary/WarnImport.java update: test/tools/javac/proprietary/WarnMethod.java update: test/tools/javac/proprietary/WarnStaticImport.java update: test/tools/javac/proprietary/WarnVariable.java update: test/tools/javac/proprietary/WarnWildcard.java update: test/tools/javac/protectedAccess/ProtectedMemberAccess5/Main.java update: test/tools/javac/protectedAccess/ProtectedAccess_1.java update: test/tools/javac/protectedAccess/ProtectedAccess_2.java update: test/tools/javac/protectedAccess/ProtectedAccess_3.java update: test/tools/javac/protectedAccess/ProtectedMemberAccess1.java update: test/tools/javac/protectedAccess/ProtectedMemberAccess2.java update: test/tools/javac/protectedAccess/ProtectedMemberAccess3.java update: test/tools/javac/protectedAccess/ProtectedMemberAccess4.java update: test/tools/javac/protectedAccess/p/SuperClass.java update: test/tools/javac/protectedAccess/pkg/SuperClass.java update: test/tools/javac/protectedInner/AnonInnerClass.java update: test/tools/javac/protectedInner/InnerClass.java update: test/tools/javac/protectedInner/Outerclass.java update: test/tools/javac/rawDiags/Error.java update: test/tools/javac/rawDiags/Warning.java update: test/tools/javac/scope/6225935/Estatico4.java update: test/tools/javac/scope/6225935/StaticImportAccess.java update: test/tools/javac/scope/6225935/T6214959.java update: test/tools/javac/scope/6225935/T6225935.java update: test/tools/javac/scope/6225935/T6381787.java update: test/tools/javac/scope/6225935/Test.java update: test/tools/javac/scope/6392998/T6392998.java update: test/tools/javac/sourcePath/SourcePath.java update: test/tools/javac/sourcePath2/SourcePath2.java update: test/tools/javac/stackmap/T4955930.java update: test/tools/javac/stackmap/UninitThis.java update: test/tools/javac/staticImport/Ambig1.java update: test/tools/javac/staticImport/ImportInherit.java update: test/tools/javac/staticImport/ImportPrivate.java update: test/tools/javac/staticImport/PrivateStaticImport.java update: test/tools/javac/staticImport/Shadow.java update: test/tools/javac/staticImport/StaticImport.java update: test/tools/javac/staticImport/StaticImport2.java update: test/tools/javac/staticQualifiedNew/StaticQualifiedNew.java update: test/tools/javac/staticQualifiedNew/p2/X.java update: test/tools/javac/unicode/FirstChar.java update: test/tools/javac/unicode/NonasciiDigit.java update: test/tools/javac/unicode/NonasciiDigit2.java update: test/tools/javac/unicode/SubChar.java update: test/tools/javac/unicode/SupplementaryJavaID1.java update: test/tools/javac/unicode/SupplementaryJavaID2.java update: test/tools/javac/unicode/SupplementaryJavaID3.java update: test/tools/javac/unicode/SupplementaryJavaID4.java update: test/tools/javac/unicode/SupplementaryJavaID5.java update: test/tools/javac/unicode/SupplementaryJavaID6.java update: test/tools/javac/unicode/SupplementaryJavaID6.sh update: test/tools/javac/unicode/TripleQuote.java update: test/tools/javac/unicode/UnicodeCommentDelimiter.java update: test/tools/javac/unicode/UnicodeNewline.java update: test/tools/javac/unicode/UnicodeUnicode.java update: test/tools/javac/unicode/Unmappable.java update: test/tools/javac/unit/T6198196.java update: test/tools/javac/unit/util/convert/EnclosingCandidates.java update: test/tools/javac/unit/util/list/AbstractList.java update: test/tools/javac/unit/util/list/FromArray.java update: test/tools/javac/util/filemanager/TestName.java update: test/tools/javac/util/list/TList.java update: test/tools/javac/varargs/Anon.java update: test/tools/javac/varargs/BadSyntax2.java update: test/tools/javac/varargs/Varargs1.java update: test/tools/javac/varargs/VarargsOverride.java update: test/tools/javac/varargs/Warn1.java update: test/tools/javac/varargs/Warn2.java update: test/tools/javac/varargs/warning/Warn1.java update: test/tools/javac/varargs/warning/Warn2.java update: test/tools/javac/varargs/warning/Warn3.java update: test/tools/javac/versions/CheckClassFileVersion.java update: test/tools/javac/versions/check.sh update: test/tools/javac/warnings/Deprecation.java update: test/tools/javac/warnings/DivZero.java update: test/tools/javac/warnings/FallThrough.java update: test/tools/javac/warnings/Unchecked.java update: test/tools/javadoc/BooleanConst.java update: test/tools/javadoc/BreakIteratorWarning.java update: test/tools/javadoc/FlagsTooEarly.java update: test/tools/javadoc/InlineTagsWithBraces.java update: test/tools/javadoc/LangVers.java update: test/tools/javadoc/MethodLinks.java update: test/tools/javadoc/NoStar.java update: test/tools/javadoc/XWerror.java update: test/tools/javadoc/T4994049/T4994049.java update: test/tools/javadoc/annotations/annotateMethodsFields/Main.java update: test/tools/javadoc/annotations/annotatePackage/Main.java update: test/tools/javadoc/annotations/annotateParams/Main.java update: test/tools/javadoc/annotations/badVals/Main.java update: test/tools/javadoc/annotations/defaults/Main.java update: test/tools/javadoc/annotations/elementTypes/Main.java update: test/tools/javadoc/annotations/shortcuts/Main.java update: test/tools/javadoc/badSuper/BadSuper.java update: test/tools/javadoc/completionFailure/CompletionFailure.java update: test/tools/javadoc/dupOk/DupOk.java update: test/tools/javadoc/enum/docComments/Main.java update: test/tools/javadoc/enum/enumType/Main.java update: test/tools/javadoc/generics/genericClass/Main.java update: test/tools/javadoc/generics/genericInnerAndOuter/Main.java update: test/tools/javadoc/generics/genericInterface/Main.java update: test/tools/javadoc/generics/genericMethod/Main.java update: test/tools/javadoc/generics/genericSuper/Main.java update: test/tools/javadoc/generics/supertypes/Main.java update: test/tools/javadoc/generics/throwsGeneric/Main.java update: test/tools/javadoc/generics/tparamCycle/Main.java update: test/tools/javadoc/generics/tparamTagOnMethod/Main.java update: test/tools/javadoc/generics/tparamTagOnType/Main.java update: test/tools/javadoc/generics/wildcards/Main.java update: test/tools/javadoc/imports/MissingImport.java update: test/tools/javadoc/lib/Tester.java update: test/tools/javadoc/nestedClass/NestedClass.java update: test/tools/javadoc/outputRedirect/OutputRedirect.sh update: test/tools/javadoc/sourceOnly/SourceOnly.sh update: test/tools/javadoc/subpackageIgnore/SubpackageIgnore.java update: test/tools/javadoc/varArgs/Main.java update: test/tools/javah/6257087/foo.sh update: test/tools/javah/ConstMacroTest.sh update: test/tools/javah/MissingParamClassException.java update: test/tools/javah/MissingParamClassTest.sh update: test/tools/javah/ParamClassTest.java update: test/tools/javah/ReadOldClass.sh update: test/tools/javah/SubClassConsts.java update: test/tools/javah/SuperClassConsts.java update: test/tools/javap/ExtPath.java update: test/tools/javap/NotPackagePrivateInterface.java update: test/tools/javap/PublicInterfaceTest.sh update: test/tools/javap/pathsep.sh update: test/tools/javap/stackmap/T6271292.sh update: deleted_files/src/share/classes/com/sun/tools/javac/util/Version.java rename from: src/share/classes/com/sun/tools/javac/util/Version.java to: deleted_files/src/share/classes/com/sun/tools/javac/util/Version.java rename from: test/tools/javac/VerifyVersionAnnotations.java to: deleted_files/test/tools/javac/VerifyVersionAnnotations.java create: src/share/classes/java/net/doc-files/net-properties.html create: test/java/util/Collections/CheckedIdentityMap.java create: test/java/util/Collections/CheckedNull.java Examined files: 38546 Contents Summary: 3 create 1597 update 36946 no action (unchanged) Names Summary: 2 renamed 1 update parent's name history From jprtadm at jprt-web.SFBay.Sun.COM Tue Aug 14 18:46:44 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Tue, 14 Aug 2007 18:46:44 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - success with job 2007-08-14-232720.daemon.jsr277-putback Message-ID: <200708150146.l7F1kitI016968@jprt-web.SFBay.Sun.COM> JPRT: job notification - success with job 2007-08-14-232720.daemon.jsr277-putback JPRT Job ID: 2007-08-14-232720.daemon.jsr277-putback JPRT System Used: sfbay JPRT Version Used: 29 July 2007 - National Lasagna Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-14-232720.daemon.jsr277-putback User: daemon Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*linux_i586.*product.*' -noquickabort -email modules-dev at openjdk.java.net -id jsr277-putback -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Tue-23:27:04-GMT Total time in queue: 2h 19m 40s Job started at: Wed-01:30:58-GMT Job finished at: Wed-01:46:44-GMT Job run time: 15m 46s Job state: success Job flags: Bundles: USE: jprt install 2007-08-14-232720.daemon.jsr277-putback HINT: Use 'jprt rerun -comment -retest 2007-08-14-232720.daemon.jsr277-putback' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): linux_i586_2.4-product success(11m 37s elapsed) Tests: linux_i586-product-c2-jvm98 success(01m 48s elapsed) linux_i586-product-c2-java/module success(01m 37s elapsed) linux_i586-product-c2-sun/module success( 51s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From David.Bristor at Sun.COM Tue Aug 14 18:54:52 2007 From: David.Bristor at Sun.COM (Dave Bristor) Date: Tue, 14 Aug 2007 18:54:52 -0700 Subject: [modules-dev] [Fwd: [Fwd: Review request: 6563535, URLRepository.install]] In-Reply-To: <46C215CD.90102@sun.com> References: <46BB3405.5050208@sun.com> <46C215CD.90102@sun.com> Message-ID: <46C25CEC.7030303@sun.com> 6563535 was checked in last week after Kumar's review. I made a webrev comparing changes based on your feedback with what's checked in: http://analemma.sfbay.sun.com/java/jdk/ws/libs/rev/6563535-b Tested on Solaris and Windows, and I'll start a JPRT run. Please note that the review request I sent for 6589789 will have to be updated for these changes! Thanks, Dave Stanley M. Ho wrote: > Hi Dave, > > Looks good. Several comments: > > - src/share/classes/sun/module/repository/URLRepository.java > > 563 if (!(srcJamFileName.endsWith(".jam") || > srcJamFileName.endsWith(".jam.pack.gz"))) { > > Should also support .jar. > > 630 // Refuse to install if comparable module is already > installed. > 631 // XXX Use platform, arch when available from metadata. > 632 List defns = findModuleDefinitions( > 633 Query.and(Query.name(moduleName), > Query.version(moduleVersion))); > > findModuleDefinitions() will not return platform specific module > definitions, and this logic will reject installation of platform > specific modules that do not match the running platform. What you want > to check is probably the list of ModuleArchiveInfo instead. Fixed. > > 657 FileOutputStream fos = new FileOutputStream(destMDFile); > > Use BufferedOutputStream. Fixed there, and when writing an otherwise non-existent repository-metadata.xml file. > > 688 contents.put(mai, installedMD); > > If exception is thrown in the try/catch block, the contents will be > updated incorrectly. Even contents is updated again in the catch block, > there is still a small window that contents does not represent the > correct information. Instead, this should be updated in a finally block. If it's in the finally block, it will always get updated. But if an exception is thrown, then we don't want it to get updated, which is what we need. Or do you mean there should be a try/catch within the catch of the IOException, so that contents.remove(mai) in a finally? I made this change; please let me know if it meets your intent. > 717 ModuleDefinition md = contents.get(mai); > 718 if (md == null) { > 719 rc = false; > > If the module definition is platform specific but does not match the > current platform, the above logic won't allow it to be removed from the > repository. Fixed, I think: see if you agree. > > 748 System.err.println("### jamFile: " + > jamFile.getCanonicalPath()); > > Remove. Oops! Removed. > 752 * them. If any rename or deletion fails, undo > whatever can be > 753 * undone. */ > > If writeRepositoryMetadata in 773 throws exception, it is unclear if the > unwinding will be done properly. Improved. And for some of the subsequent unwinding also, re-renameing files. > 805 private void writeRepositoryMetadata(ModuleArchiveInfo mai) > throws IOException { > > It never uses specified mai when writing the metadata. But it does when providing error messages in exceptions. > > - Stanley > > > > > > From andreas.sterbenz at sun.com Wed Aug 15 06:00:13 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Wed, 15 Aug 2007 06:00:13 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708151300.l7FD0DTP022459@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070815/7bea1958/attachment.html From jprtadm at jprt-web.SFBay.Sun.COM Wed Aug 15 09:29:21 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Wed, 15 Aug 2007 09:29:21 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - killed with job 2007-08-15-111326.as130790.jsr277-nightly Message-ID: <200708151629.l7FGTLAP018246@jprt-web.SFBay.Sun.COM> JPRT: job notification - killed with job 2007-08-15-111326.as130790.jsr277-nightly Killed by user jprtadm: Timeout: Job exceeded 5h 13s JPRT Job ID: 2007-08-15-111326.as130790.jsr277-nightly JPRT System Used: sfbay JPRT Version Used: 29 July 2007 - National Lasagna Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-15-111326.as130790.jsr277-nightly User: as130790 Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*product.*' -noquickabort -email modules-dev at openjdk.java.net -id jsr277-nightly -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Wed-11:13:10-GMT Total time in queue: 5h 16m 10s Job started at: Wed-11:28:53-GMT Job finished at: Wed-16:29:20-GMT Job run time: 5h 27s Job state: killed Job fail/kill comment: Timeout: Job exceeded 5h 13s Job flags: Bundles: USE: jprt install 2007-08-15-111326.as130790.jsr277-nightly HINT: Use 'jprt rerun -comment -retest 2007-08-15-111326.as130790.jsr277-nightly' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): solaris_sparc_5.8-product success(25m 10s elapsed) solaris_sparcv9_5.8-product success(26m 26s elapsed) solaris_i586_5.8-product success(52m 37s elapsed) solaris_x64_5.10-product success(10m 03s elapsed) linux_i586_2.4-product success(11m 46s elapsed) linux_x64_2.4-product success(13m 24s elapsed) windows_i586_5-product not_started( 00s elapsed) windows_x64_5.2-product not_started( 00s elapsed) Tests: solaris_sparc-product-c2-jvm98 success(03m 25s elapsed) solaris_sparcv9-product-c2-jvm98 success(02m 58s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-jvm98 success(02m 51s elapsed) solaris_x64-product-c2-jvm98 success(01m 46s elapsed) linux_i586-product-c2-jvm98 success(01m 51s elapsed) linux_x64-product-c2-jvm98 success(01m 38s elapsed) windows_i586-product-c2-jvm98 not_started( 00s elapsed) windows_x64-product-c2-jvm98 not_started( 00s elapsed) solaris_sparc-product-c2-java/module success(01m 32s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_sparcv9-product-c2-java/module success(01m 40s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-java/module success(09m 16s elapsed) solaris_x64-product-c2-java/module success(01m 01s elapsed) linux_i586-product-c2-java/module success(02m 14s elapsed) linux_x64-product-c2-java/module success(01m 02s elapsed) windows_i586-product-c2-java/module not_started( 00s elapsed) windows_x64-product-c2-java/module not_started( 00s elapsed) solaris_sparc-product-c2-sun/module success( 36s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_sparcv9-product-c2-sun/module success( 41s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-sun/module success(07m 07s elapsed) solaris_x64-product-c2-sun/module success( 19s elapsed) linux_i586-product-c2-sun/module success(01m 10s elapsed) linux_x64-product-c2-sun/module success( 20s elapsed) windows_i586-product-c2-sun/module not_started( 00s elapsed) windows_x64-product-c2-sun/module not_started( 00s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From Stanley.Ho at Sun.COM Wed Aug 15 14:20:23 2007 From: Stanley.Ho at Sun.COM (Stanley M. Ho) Date: Wed, 15 Aug 2007 14:20:23 -0700 Subject: [modules-dev] [Fwd: [Fwd: Review request: 6563535, URLRepository.install]] In-Reply-To: <46C25CEC.7030303@sun.com> References: <46BB3405.5050208@sun.com> <46C215CD.90102@sun.com> <46C25CEC.7030303@sun.com> Message-ID: <46C36E17.6010604@sun.com> Looks good. Comments inline: - src/share/classes/sun/module/repository/RepositoryContents.java 83 if (m.hashCode() == mai.hashCode()) { It is unclear why you want to compare hashcode instead of simply using equals(). - src/share/classes/sun/module/repository/URLRepository.java >> 688 contents.put(mai, installedMD); >> >> If exception is thrown in the try/catch block, the contents will be >> updated incorrectly. Even contents is updated again in the catch >> block, there is still a small window that contents does not represent >> the correct information. Instead, this should be updated in a finally >> block. > > If it's in the finally block, it will always get updated. But if an > exception is thrown, then we don't want it to get updated, which is what > we need. > > Or do you mean there should be a try/catch within the catch of the > IOException, so that contents.remove(mai) in a finally? I made this > change; please let me know if it meets your intent. I meant that the contents should not be updated at all until the entire install operation succeeds. Otherwise, if a thread calls into Repository.list() in the meantime, it will get a list of ModuleArchiveInfo but some of the ModuleArchiveInfo might not yet been installed successfully (and the installation might actually fail). - Stanley From jprtadm at jprt-web.SFBay.Sun.COM Wed Aug 15 14:19:02 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Wed, 15 Aug 2007 14:19:02 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - killed with job 2007-08-15-111326.as130790.jsr277-nightly Message-ID: <200708152119.l7FLJ2GO019070@jprt-web.SFBay.Sun.COM> JPRT: job notification - killed with job 2007-08-15-111326.as130790.jsr277-nightly Killed by user jprtadm: No user comment provided. JPRT Job ID: 2007-08-15-111326.as130790.jsr277-nightly JPRT System Used: sfbay JPRT Version Used: 29 July 2007 - National Lasagna Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-15-111326.as130790.jsr277-nightly User: as130790 Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt rerun 2007-08-15-111326.as130790.jsr277-nightly Job submitted at: Wed-17:54:46-GMT Total time in queue: 3h 24m 16s Job started at: Wed-17:54:46-GMT Job finished at: Wed-21:19:02-GMT Job run time: 3h 24m 16s Job state: killed Job fail/kill comment: No user comment provided. Job flags: Bundles: USE: jprt install 2007-08-15-111326.as130790.jsr277-nightly HINT: Use 'jprt rerun -comment -retest 2007-08-15-111326.as130790.jsr277-nightly' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. Rerun Comments: Rerun: Original submit command: jprt submit -stree ../ws -ot '.*product.*' -noquickabort -email modules-dev at openjdk.java.net -id jsr277-nightly -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' User Comments: Build (Release:jdk1.7.0 Boot: Import:): solaris_sparc_5.8-product success(25m 10s elapsed) solaris_sparcv9_5.8-product success(26m 26s elapsed) solaris_i586_5.8-product success(52m 37s elapsed) solaris_x64_5.10-product success(10m 03s elapsed) linux_i586_2.4-product success(11m 46s elapsed) linux_x64_2.4-product success(13m 24s elapsed) windows_i586_5-product not_started( 00s elapsed) windows_x64_5.2-product not_started( 00s elapsed) Tests: solaris_sparc-product-c2-jvm98 success(03m 25s elapsed) solaris_sparcv9-product-c2-jvm98 success(02m 58s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-jvm98 success(02m 51s elapsed) solaris_x64-product-c2-jvm98 success(01m 46s elapsed) linux_i586-product-c2-jvm98 success(01m 51s elapsed) linux_x64-product-c2-jvm98 success(01m 38s elapsed) windows_i586-product-c2-jvm98 not_started( 00s elapsed) windows_x64-product-c2-jvm98 not_started( 00s elapsed) solaris_sparc-product-c2-java/module success(01m 32s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_sparcv9-product-c2-java/module success(01m 40s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-java/module success(09m 16s elapsed) solaris_x64-product-c2-java/module success(01m 01s elapsed) linux_i586-product-c2-java/module success(02m 14s elapsed) linux_x64-product-c2-java/module success(01m 02s elapsed) windows_i586-product-c2-java/module not_started( 00s elapsed) windows_x64-product-c2-java/module not_started( 00s elapsed) solaris_sparc-product-c2-sun/module success( 36s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_sparcv9-product-c2-sun/module success( 41s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-sun/module success(07m 07s elapsed) solaris_x64-product-c2-sun/module success( 19s elapsed) linux_i586-product-c2-sun/module success(01m 10s elapsed) linux_x64-product-c2-sun/module success( 20s elapsed) windows_i586-product-c2-sun/module not_started( 00s elapsed) windows_x64-product-c2-sun/module not_started( 00s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From David.Bristor at Sun.COM Wed Aug 15 15:02:30 2007 From: David.Bristor at Sun.COM (Dave Bristor) Date: Wed, 15 Aug 2007 15:02:30 -0700 Subject: [modules-dev] [Fwd: [Fwd: Review request: 6563535, URLRepository.install]] In-Reply-To: <46C36E17.6010604@sun.com> References: <46BB3405.5050208@sun.com> <46C215CD.90102@sun.com> <46C25CEC.7030303@sun.com> <46C36E17.6010604@sun.com> Message-ID: <46C377F6.3050602@sun.com> Stanley M. Ho wrote: > > Looks good. Comments inline: > > - src/share/classes/sun/module/repository/RepositoryContents.java > > 83 if (m.hashCode() == mai.hashCode()) { > > It is unclear why you want to compare hashcode instead of simply using > equals(). Because ModuleArchiveInfo.equals() is asymmetric with respect to ModuleArchiveInfo.hashCode(). The former is based on equality of references and the latter on equality of hashcodes of a a subset of the instance's fields. Here's the use case that necessitates this: From JRepo's uninstall command, URLRepository.uninstall(ModuleArchiveInfo) is given an instance that is created based on information from the command line, therefore the ModuleArchiveInfo instance is not the one returned by an earlier URLRepository.install(). I added a comment in getMatch(). > - src/share/classes/sun/module/repository/URLRepository.java > >>> 688 contents.put(mai, installedMD); >>> >>> If exception is thrown in the try/catch block, the contents will be >>> updated incorrectly. Even contents is updated again in the catch >>> block, there is still a small window that contents does not represent >>> the correct information. Instead, this should be updated in a finally >>> block. >> >> If it's in the finally block, it will always get updated. But if an >> exception is thrown, then we don't want it to get updated, which is >> what we need. >> >> Or do you mean there should be a try/catch within the catch of the >> IOException, so that contents.remove(mai) in a finally? I made this >> change; please let me know if it meets your intent. > > I meant that the contents should not be updated at all until the entire > install operation succeeds. Otherwise, if a thread calls into > Repository.list() in the meantime, it will get a list of > ModuleArchiveInfo but some of the ModuleArchiveInfo might not yet been > installed successfully (and the installation might actually fail). Now I understand. Fixed, hopefully better, let me know what you think; I updated the webrev: http://analemma.sfbay.sun.com/java/jdk/ws/libs/rev/6563535-b/ > > - Stanley From Stanley.Ho at Sun.COM Wed Aug 15 15:59:50 2007 From: Stanley.Ho at Sun.COM (Stanley M. Ho) Date: Wed, 15 Aug 2007 15:59:50 -0700 Subject: [modules-dev] [Fwd: [Fwd: Review request: 6563535, URLRepository.install]] In-Reply-To: <46C377F6.3050602@sun.com> References: <46BB3405.5050208@sun.com> <46C215CD.90102@sun.com> <46C25CEC.7030303@sun.com> <46C36E17.6010604@sun.com> <46C377F6.3050602@sun.com> Message-ID: <46C38566.8050105@sun.com> Dave Bristor wrote: > Because ModuleArchiveInfo.equals() is asymmetric with respect to > ModuleArchiveInfo.hashCode(). The former is based on equality of > references and the latter on equality of hashcodes of a a subset of the > instance's fields. Here's the use case that necessitates this: From > JRepo's uninstall command, URLRepository.uninstall(ModuleArchiveInfo) is > given an instance that is created based on information from the command > line, therefore the ModuleArchiveInfo instance is not the one returned > by an earlier URLRepository.install(). The way I expected this to work is that Repository.list() will be used to obtain a list of ModuleArchiveInfo, then we'll find the one we want and pass it to uninstall(). I don't think the repository implementation should attempt to recognize any arbitrary ModuleArchiveInfo that is passed in. In other words, it should only recognize the ones that it created. > Now I understand. Fixed, hopefully better, let me know what you think; > I updated the webrev: > http://analemma.sfbay.sun.com/java/jdk/ws/libs/rev/6563535-b/ Better. Note that the code uses writeRepositoryMetadata to write the metadata. However, writeRepositoryMetadata() assumes that the new ModuleArchiveInfo is in contents, and it simply iterates the contents and writes the metadata out. Now we no longer update the contents prematurely, so writeRepositoryMetadata() will need to call writeModule() on the "mai" that is passed in. - Stanley From jprtadm at jprt-web.SFBay.Sun.COM Wed Aug 15 16:19:46 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Wed, 15 Aug 2007 16:19:46 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - success with job 2007-08-15-111326.as130790.jsr277-nightly Message-ID: <200708152319.l7FNJjmp029011@jprt-web.SFBay.Sun.COM> JPRT: job notification - success with job 2007-08-15-111326.as130790.jsr277-nightly JPRT Job ID: 2007-08-15-111326.as130790.jsr277-nightly JPRT System Used: sfbay JPRT Version Used: 15 Aug 2007 - Relaxation Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-15-111326.as130790.jsr277-nightly Job ARCHIVE: /net/jprt-web.sfbay/jprt/archive/2007/08/2007-08-15-111326.as130790.jsr277-nightly User: as130790 Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt rerun 2007-08-15-111326.as130790.jsr277-nightly Job submitted at: Wed-22:27:00-GMT Total time in queue: 52m 45s Job started at: Wed-22:27:27-GMT Job finished at: Wed-23:19:45-GMT Job run time: 52m 18s Job state: success Job flags: Bundles: USE: jprt install 2007-08-15-111326.as130790.jsr277-nightly HINT: Use 'jprt rerun -comment -retest 2007-08-15-111326.as130790.jsr277-nightly' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. Rerun Comments: Rerun: Original submit command: jprt rerun 2007-08-15-111326.as130790.jsr277-nightly User Comments: null Build (Release:jdk1.7.0 Boot: Import:): solaris_sparc_5.8-product success(25m 10s elapsed) solaris_sparcv9_5.8-product success(26m 26s elapsed) solaris_i586_5.8-product success(52m 37s elapsed) solaris_x64_5.10-product success(10m 03s elapsed) linux_i586_2.4-product success(11m 46s elapsed) linux_x64_2.4-product success(13m 24s elapsed) windows_i586_5-product success(42m 38s elapsed) windows_x64_5.2-product success(45m 56s elapsed) Tests: solaris_sparc-product-c2-jvm98 success(03m 25s elapsed) solaris_sparcv9-product-c2-jvm98 success(02m 58s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-jvm98 success(02m 51s elapsed) solaris_x64-product-c2-jvm98 success(01m 46s elapsed) linux_i586-product-c2-jvm98 success(01m 51s elapsed) linux_x64-product-c2-jvm98 success(01m 38s elapsed) windows_i586-product-c2-jvm98 success(02m 59s elapsed) windows_x64-product-c2-jvm98 success(01m 59s elapsed) solaris_sparc-product-c2-java/module success(01m 32s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_sparcv9-product-c2-java/module success(01m 40s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-java/module success(09m 16s elapsed) solaris_x64-product-c2-java/module success(01m 01s elapsed) linux_i586-product-c2-java/module success(02m 14s elapsed) linux_x64-product-c2-java/module success(01m 02s elapsed) windows_i586-product-c2-java/module success(05m 55s elapsed) windows_x64-product-c2-java/module success(04m 07s elapsed) solaris_sparc-product-c2-sun/module success( 36s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_sparcv9-product-c2-sun/module success( 41s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-sun/module success(07m 07s elapsed) solaris_x64-product-c2-sun/module success( 19s elapsed) linux_i586-product-c2-sun/module success(01m 10s elapsed) linux_x64-product-c2-sun/module success( 20s elapsed) windows_i586-product-c2-sun/module success(04m 05s elapsed) windows_x64-product-c2-sun/module success(03m 07s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From David.Bristor at Sun.COM Wed Aug 15 16:48:17 2007 From: David.Bristor at Sun.COM (Dave Bristor) Date: Wed, 15 Aug 2007 16:48:17 -0700 Subject: [modules-dev] [Fwd: [Fwd: Review request: 6563535, URLRepository.install]] In-Reply-To: <46C38566.8050105@sun.com> References: <46BB3405.5050208@sun.com> <46C215CD.90102@sun.com> <46C25CEC.7030303@sun.com> <46C36E17.6010604@sun.com> <46C377F6.3050602@sun.com> <46C38566.8050105@sun.com> Message-ID: <46C390C1.8000200@sun.com> Stanley M. Ho wrote: > > Dave Bristor wrote: >> Because ModuleArchiveInfo.equals() is asymmetric with respect to >> ModuleArchiveInfo.hashCode(). The former is based on equality of >> references and the latter on equality of hashcodes of a a subset of >> the instance's fields. Here's the use case that necessitates this: >> From JRepo's uninstall command, >> URLRepository.uninstall(ModuleArchiveInfo) is given an instance that >> is created based on information from the command line, therefore the >> ModuleArchiveInfo instance is not the one returned by an earlier >> URLRepository.install(). > > The way I expected this to work is that Repository.list() will be used > to obtain a list of ModuleArchiveInfo, then we'll find the one we want > and pass it to uninstall(). I don't think the repository implementation > should attempt to recognize any arbitrary ModuleArchiveInfo that is > passed in. In other words, it should only recognize the ones that it > created. OK, that makes sense, so I updated the code to take that into account. In fact, I looked into JRepo's use of uninstall, and seems that will work as per your expectations above :-) >> Now I understand. Fixed, hopefully better, let me know what you >> think; I updated the webrev: >> http://analemma.sfbay.sun.com/java/jdk/ws/libs/rev/6563535-b/ > > Better. Note that the code uses writeRepositoryMetadata to write the > metadata. However, writeRepositoryMetadata() assumes that the new > ModuleArchiveInfo is in contents, and it simply iterates the contents > and writes the metadata out. Now we no longer update the contents > prematurely, so writeRepositoryMetadata() will need to call > writeModule() on the "mai" that is passed in. Now there's a better-than-just-informational use for the mai that's passed in :-). To make it work for both install and uninstall cases, I added a boolean to indicate if the given mai should be writeModule'd. Same webrev updated again; tested on Solaris & Windows. Thanks, Dave > > - Stanley From Stanley.Ho at Sun.COM Wed Aug 15 16:58:47 2007 From: Stanley.Ho at Sun.COM (Stanley M. Ho) Date: Wed, 15 Aug 2007 16:58:47 -0700 Subject: [modules-dev] [Fwd: [Fwd: Review request: 6563535, URLRepository.install]] In-Reply-To: <46C390C1.8000200@sun.com> References: <46BB3405.5050208@sun.com> <46C215CD.90102@sun.com> <46C25CEC.7030303@sun.com> <46C36E17.6010604@sun.com> <46C377F6.3050602@sun.com> <46C38566.8050105@sun.com> <46C390C1.8000200@sun.com> Message-ID: <46C39337.30304@sun.com> Looks good. One last nitpick ;-) 733 contents.remove(mai); 794 // Restore previous state 795 contents.put(mai, md); 803 contents.put(mai, md); You might want to apply similar logic here - mai should be removed from the contents only after the JAM file has been uninstalled and the metadata has been updated successfully. - Stanley From stanleyh at jmodule.SFBay.Sun.COM Wed Aug 15 19:52:26 2007 From: stanleyh at jmodule.SFBay.Sun.COM (Stanley Ho) Date: Wed, 15 Aug 2007 19:52:26 -0700 (PDT) Subject: [modules-dev] Code Manager notification (putback-to) Message-ID: <200708160252.TAA25042@jmodule.SFBay.Sun.COM> A non-text attachment was scrubbed... Name: not available Type: text Size: 3168 bytes Desc: not available Url : http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070815/4358c980/attachment.ksh From David.Bristor at Sun.COM Wed Aug 15 20:22:23 2007 From: David.Bristor at Sun.COM (Dave Bristor) Date: Wed, 15 Aug 2007 20:22:23 -0700 Subject: [modules-dev] [Fwd: [Fwd: Review request: 6563535, URLRepository.install]] In-Reply-To: <46C39337.30304@sun.com> References: <46BB3405.5050208@sun.com> <46C215CD.90102@sun.com> <46C25CEC.7030303@sun.com> <46C36E17.6010604@sun.com> <46C377F6.3050602@sun.com> <46C38566.8050105@sun.com> <46C390C1.8000200@sun.com> <46C39337.30304@sun.com> Message-ID: <46C3C2EF.8000805@sun.com> Stanley M. Ho wrote: > > Looks good. One last nitpick ;-) > > 733 contents.remove(mai); > 794 // Restore previous state > 795 contents.put(mai, md); > 803 contents.put(mai, md); > > You might want to apply similar logic here - mai should be removed from > the contents only after the JAM file has been uninstalled and the > metadata has been updated successfully. I thought about that too, but: In the install case we discussed earlier, it's a Bad Thing if a thread calls Repository.list() during installation, it could see a ModuleArchiveInfo for a JAM that's not fully installed yet (or worse, might fail to install). So in the uninstall case, I left it in reverse: while one thread is uninstalling a module, another thread calling Repository.list() would see only those ModuleArchiveInfos for installed modules that are not in the process of being uninstalled. At least that's the intent: should I reverse it as you suggest? With both install and uninstall, there are small windows of opportunity for this behavior to not hold, since list() is not synchronized. Thanks, Dave > > - Stanley From jprtadm at jprt-web.SFBay.Sun.COM Wed Aug 15 22:04:50 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Wed, 15 Aug 2007 22:04:50 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - success with job 2007-08-16-024840.daemon.jsr277-putback Message-ID: <200708160504.l7G54o6B003989@jprt-web.SFBay.Sun.COM> JPRT: job notification - success with job 2007-08-16-024840.daemon.jsr277-putback JPRT Job ID: 2007-08-16-024840.daemon.jsr277-putback JPRT System Used: sfbay JPRT Version Used: 15 Aug 2007 - Relaxation Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-16-024840.daemon.jsr277-putback Job ARCHIVE: /net/jprt-web.sfbay/jprt/archive/2007/08/2007-08-16-024840.daemon.jsr277-putback User: daemon Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*linux_i586.*product.*' -noquickabort -email modules-dev at openjdk.java.net -id jsr277-putback -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Thu-02:48:24-GMT Total time in queue: 2h 16m 25s Job started at: Thu-04:44:16-GMT Job finished at: Thu-05:04:49-GMT Job run time: 20m 33s Job state: success Job flags: Bundles: USE: jprt install 2007-08-16-024840.daemon.jsr277-putback HINT: Use 'jprt rerun -comment -retest 2007-08-16-024840.daemon.jsr277-putback' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): linux_i586_2.4-product success(09m 20s elapsed) Tests: linux_i586-product-c2-jvm98 success(01m 40s elapsed) linux_i586-product-c2-java/module success(07m 05s elapsed) linux_i586-product-c2-sun/module success( 44s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From andreas.sterbenz at sun.com Thu Aug 16 06:00:25 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Thu, 16 Aug 2007 06:00:25 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708161300.l7GD0Pi2006248@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070816/a79cea1d/attachment.html From jprtadm at jprt-web.SFBay.Sun.COM Thu Aug 16 06:39:05 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Thu, 16 Aug 2007 06:39:05 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - FAILED with job 2007-08-16-111322.as130790.jsr277-nightly Message-ID: <200708161339.l7GDd578004230@jprt-web.SFBay.Sun.COM> JPRT: job notification - FAILED with job 2007-08-16-111322.as130790.jsr277-nightly Failure reason: Test target failure: windows_i586-product-c2-java/module JPRT Job ID: 2007-08-16-111322.as130790.jsr277-nightly JPRT System Used: sfbay JPRT Version Used: 15 Aug 2007 - Relaxation Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-16-111322.as130790.jsr277-nightly Job ARCHIVE: /net/jprt-web.sfbay/jprt/archive/2007/08/2007-08-16-111322.as130790.jsr277-nightly User: as130790 Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*product.*' -noquickabort -email modules-dev at openjdk.java.net -id jsr277-nightly -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Thu-11:13:06-GMT Total time in queue: 2h 25m 58s Job started at: Thu-11:28:03-GMT Job finished at: Thu-13:39:04-GMT Job run time: 2h 11m 01s Job state: FAILED Job fail/kill comment: Test target failure: windows_i586-product-c2-java/module Job flags: Bundles: USE: jprt install 2007-08-16-111322.as130790.jsr277-nightly HINT: Use 'jprt rerun -comment 2007-08-16-111322.as130790.jsr277-nightly' to rerun this job if you suspect bogus results. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): solaris_sparc_5.8-product success(25m 18s elapsed) solaris_sparcv9_5.8-product success(31m 29s elapsed) solaris_i586_5.8-product success(48m 37s elapsed) linux_i586_2.4-product success(09m 30s elapsed) windows_i586_5-product success(55m 14s elapsed) Tests: solaris_sparc-product-c2-jvm98 success(02m 30s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_sparcv9-product-c2-jvm98 success(02m 51s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-jvm98 success(03m 26s elapsed) linux_i586-product-c2-jvm98 success(01m 57s elapsed) windows_i586-product-c2-jvm98 success(02m 57s elapsed) solaris_sparc-product-c2-java/module success(06m 24s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_sparcv9-product-c2-java/module success(07m 09s elapsed) solaris_i586-product-c2-java/module success(05m 50s elapsed) NOTE: Used solaris_i586_5.10 for above target. linux_i586-product-c2-java/module success(07m 08s elapsed) windows_i586-product-c2-java/module killed(1h 05m 32s elapsed) solaris_sparc-product-c2-sun/module success( 42s elapsed) solaris_sparcv9-product-c2-sun/module success( 37s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-sun/module success( 33s elapsed) NOTE: Used solaris_i586_5.10 for above target. linux_i586-product-c2-sun/module success( 58s elapsed) windows_i586-product-c2-sun/module success(03m 41s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From jprtadm at jprt-web.SFBay.Sun.COM Thu Aug 16 11:54:36 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Thu, 16 Aug 2007 11:54:36 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - FAILED with job 2007-08-16-111322.as130790.jsr277-nightly Message-ID: <200708161854.l7GIsags004385@jprt-web.SFBay.Sun.COM> JPRT: job notification - FAILED with job 2007-08-16-111322.as130790.jsr277-nightly Failure reason: Test target failure: windows_i586-product-c2-java/module JPRT Job ID: 2007-08-16-111322.as130790.jsr277-nightly JPRT System Used: sfbay JPRT Version Used: 15 Aug 2007 - Relaxation Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-16-111322.as130790.jsr277-nightly Job ARCHIVE: /net/jprt-web.sfbay/jprt/archive/2007/08/2007-08-16-111322.as130790.jsr277-nightly User: as130790 Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt rerun 2007-08-16-111322.as130790.jsr277-nightly Job submitted at: Thu-18:06:24-GMT Total time in queue: 48m 11s Job started at: Thu-18:06:50-GMT Job finished at: Thu-18:54:35-GMT Job run time: 47m 45s Job state: FAILED Job fail/kill comment: Test target failure: windows_i586-product-c2-java/module Job flags: Bundles: USE: jprt install 2007-08-16-111322.as130790.jsr277-nightly HINT: Use 'jprt rerun -comment 2007-08-16-111322.as130790.jsr277-nightly' to rerun this job if you suspect bogus results. Rerun Comments: Rerun: Original submit command: jprt submit -stree ../ws -ot '.*product.*' -noquickabort -email modules-dev at openjdk.java.net -id jsr277-nightly -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' User Comments: Build (Release:jdk1.7.0 Boot: Import:): solaris_sparc_5.8-product success(25m 18s elapsed) solaris_sparcv9_5.8-product success(31m 29s elapsed) solaris_i586_5.8-product success(48m 37s elapsed) linux_i586_2.4-product success(09m 30s elapsed) windows_i586_5-product success(55m 14s elapsed) Tests: solaris_sparc-product-c2-jvm98 success(02m 30s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_sparcv9-product-c2-jvm98 success(02m 51s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-jvm98 success(03m 26s elapsed) linux_i586-product-c2-jvm98 success(01m 57s elapsed) windows_i586-product-c2-jvm98 success(02m 57s elapsed) solaris_sparc-product-c2-java/module success(06m 24s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_sparcv9-product-c2-java/module success(07m 09s elapsed) solaris_i586-product-c2-java/module success(05m 50s elapsed) NOTE: Used solaris_i586_5.10 for above target. linux_i586-product-c2-java/module success(07m 08s elapsed) windows_i586-product-c2-java/module timedout(6h 20m 55s elapsed) solaris_sparc-product-c2-sun/module success( 42s elapsed) solaris_sparcv9-product-c2-sun/module success( 37s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-sun/module success( 33s elapsed) NOTE: Used solaris_i586_5.10 for above target. linux_i586-product-c2-sun/module success( 58s elapsed) windows_i586-product-c2-sun/module success(03m 41s elapsed) ------------------------------------------------------------------------------ windows_i586-product-c2-java/module (details from log file) /net/jprt-web.sfbay/jprt/archive/2007/08/2007-08-16-111322.as130790.jsr277-nightly/logs/windows_i586-product-c2-java_module-test.log http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-16-111322.as130790.jsr277-nightly//logs/windows_i586-product-c2-java_module-test.log -------------------------------------------------- Test results: passed: 14; error: 1 Report written to C:\jprt\temp\P1\T\111322.as130790\source\test\JTREG_OUTPUT_windows_i586\java\module\JTreport\report.html Results written to C:\jprt\temp\P1\T\111322.as130790\source\test\JTREG_OUTPUT_windows_i586\java\module\JTwork Error: Some tests failed or other problems occurred. --------------------------------------------------- Extracting passed and failed counts from jtreg output Test results: passed: 14; error: 1 No indication anything failed --------------------------------------------------- Summary: java/module/basic/BasicLauncherTests.java Error. Program `C:\jprt\temp\P1\T\111322.as130790\testproduct\windows_i586_5-product\bin\java' interrupted! (timed out?) java/module/config/DefaultImportOverridePolicy/DefaultImportOverridePolicyTest.java Passed. Compilation successful java/module/config/DefaultVisibilityPolicy/DefaultVisibilityPolicyTest.java Passed. Compilation successful java/module/config/ImportOverridePolicyFile/ImportOverridePolicyFileTest.java Passed. Compilation successful java/module/config/VisibilityPolicyFile/VisibilityPolicyFileTest.java Passed. Compilation successful java/module/modinit/RunMTest.java Passed. Execution successful java/module/query/QueryTest.java Passed. Execution successful java/module/repository/LocalRepositoryTest.java Passed. Execution successful java/module/repository/Test6574851.java Passed. Compilation successful java/module/repository/Test6574852.java Passed. Compilation successful java/module/repository/URLRepoInstallTest.java Passed. Execution successful java/module/repository/URLRepositoryTest.java Passed. Execution successful java/module/repository/VisibilityPolicyTest.java Passed. Execution successful java/module/version/VersionConstraintTest.java Passed. Execution successful java/module/version/VersionTest.java Passed. Execution successful --------------------------------------------------- JTREG TOTAL: passed=14 failed=0 zip -q -r C:/jprt/temp/P1/T/111322.as130790/bundles/windows_i586-product-c2-java_module.zip JTREG_OUTPUT_windows_i586 JTREG PASSED ########################################################### # # Finished: Thu Aug 16 12:01:01 PDT 2007 # # Disk Space: # C:/ (C:/) 10649436/39070048 # # returned exit code 0 # ########################################################### ------------------------------------------------------------------------------ For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From stanleyh at jmodule.SFBay.Sun.COM Thu Aug 16 16:13:48 2007 From: stanleyh at jmodule.SFBay.Sun.COM (Stanley Ho) Date: Thu, 16 Aug 2007 16:13:48 -0700 (PDT) Subject: [modules-dev] Code Manager notification (putback-to) Message-ID: <200708162313.QAA26270@jmodule.SFBay.Sun.COM> A non-text attachment was scrubbed... Name: not available Type: text Size: 757 bytes Desc: not available Url : http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070816/23c9a500/attachment.ksh From jprtadm at jprt-web.SFBay.Sun.COM Thu Aug 16 16:27:54 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Thu, 16 Aug 2007 16:27:54 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - FAILED with job 2007-08-16-231000.daemon.jsr277-putback Message-ID: <200708162327.l7GNRs6h005138@jprt-web.SFBay.Sun.COM> JPRT: job notification - FAILED with job 2007-08-16-231000.daemon.jsr277-putback Failure reason: Test target failure: linux_i586-product-c2-java/module JPRT Job ID: 2007-08-16-231000.daemon.jsr277-putback JPRT System Used: sfbay JPRT Version Used: 15 Aug 2007 - Relaxation Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-16-231000.daemon.jsr277-putback Job ARCHIVE: /net/jprt-web.sfbay/jprt/archive/2007/08/2007-08-16-231000.daemon.jsr277-putback User: daemon Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*linux_i586.*product.*' -noquickabort -email modules-dev at openjdk.java.net -id jsr277-putback -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Thu-23:09:44-GMT Total time in queue: 18m 10s Job started at: Thu-23:14:49-GMT Job finished at: Thu-23:27:54-GMT Job run time: 13m 05s Job state: FAILED Job fail/kill comment: Test target failure: linux_i586-product-c2-java/module Job flags: Bundles: USE: jprt install 2007-08-16-231000.daemon.jsr277-putback HINT: Use 'jprt rerun -comment 2007-08-16-231000.daemon.jsr277-putback' to rerun this job if you suspect bogus results. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): linux_i586_2.4-product success(09m 15s elapsed) Tests: linux_i586-product-c2-jvm98 success(01m 52s elapsed) linux_i586-product-c2-java/module FAILED(01m 36s elapsed) linux_i586-product-c2-sun/module success( 52s elapsed) ------------------------------------------------------------------------------ linux_i586-product-c2-java/module (details from log file) /net/jprt-web.sfbay/jprt/archive/2007/08/2007-08-16-231000.daemon.jsr277-putback/logs/linux_i586-product-c2-java_module-test.log http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-16-231000.daemon.jsr277-putback//logs/linux_i586-product-c2-java_module-test.log Report written to /tmp/jprt/temp/P1/T/231000.daemon/source/test/JTREG_OUTPUT_linux_i686/java/module/JTreport/report.html Results written to /tmp/jprt/temp/P1/T/231000.daemon/source/test/JTREG_OUTPUT_linux_i686/java/module/JTwork Error: Some tests failed or other problems occurred. --------------------------------------------------- Extracting passed and failed counts from jtreg output Test results: passed: 14; failed: 1 ERROR: Failed pattern but no failed count in results --------------------------------------------------- Summary: java/module/basic/BasicLauncherTests.java Failed. Execution failed: `main' threw exception: java.lang.AssertionError: Some tests failed java/module/config/DefaultImportOverridePolicy/DefaultImportOverridePolicyTest.java Passed. Compilation successful java/module/config/DefaultVisibilityPolicy/DefaultVisibilityPolicyTest.java Passed. Compilation successful java/module/config/ImportOverridePolicyFile/ImportOverridePolicyFileTest.java Passed. Compilation successful java/module/config/VisibilityPolicyFile/VisibilityPolicyFileTest.java Passed. Compilation successful java/module/modinit/RunMTest.java Passed. Execution successful java/module/query/QueryTest.java Passed. Execution successful java/module/repository/LocalRepositoryTest.java Passed. Execution successful java/module/repository/Test6574851.java Passed. Compilation successful java/module/repository/Test6574852.java Passed. Compilation successful java/module/repository/URLRepoInstallTest.java Passed. Execution successful java/module/repository/URLRepositoryTest.java Passed. Execution successful java/module/repository/VisibilityPolicyTest.java Passed. Execution successful java/module/version/VersionConstraintTest.java Passed. Execution successful java/module/version/VersionTest.java Passed. Execution successful --------------------------------------------------- JTREG TOTAL: passed=0 failed=1 zip -q -r /opt/jprt/temp/P1/T/231000.daemon/bundles/linux_i586-product-c2-java_module.zip JTREG_OUTPUT_linux_i686 JTREG FAILED make: *** [tests] Error 1 ########################################################### # # Finished: Thu Aug 16 16:26:08 PDT 2007 # # Disk Space: # Filesystem 1k-blocks Used Available Use% Mounted on # /dev/sda2 66357620 12462800 50523984 20% / # # returned exit code 2 # ########################################################### ------------------------------------------------------------------------------ For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From stanleyh at jmodule.SFBay.Sun.COM Thu Aug 16 17:19:44 2007 From: stanleyh at jmodule.SFBay.Sun.COM (Stanley Ho) Date: Thu, 16 Aug 2007 17:19:44 -0700 (PDT) Subject: [modules-dev] Code Manager notification (putback-to) Message-ID: <200708170019.RAA26385@jmodule.SFBay.Sun.COM> A non-text attachment was scrubbed... Name: not available Type: text Size: 541 bytes Desc: not available Url : http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070816/ebfd0be6/attachment.ksh From jprtadm at jprt-web.SFBay.Sun.COM Thu Aug 16 17:31:49 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Thu, 16 Aug 2007 17:31:49 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - success with job 2007-08-17-001557.daemon.jsr277-putback Message-ID: <200708170031.l7H0VnNi005476@jprt-web.SFBay.Sun.COM> JPRT: job notification - success with job 2007-08-17-001557.daemon.jsr277-putback JPRT Job ID: 2007-08-17-001557.daemon.jsr277-putback JPRT System Used: sfbay JPRT Version Used: 15 Aug 2007 - Relaxation Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-17-001557.daemon.jsr277-putback Job ARCHIVE: /net/jprt-web.sfbay/jprt/archive/2007/08/2007-08-17-001557.daemon.jsr277-putback User: daemon Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*linux_i586.*product.*' -noquickabort -email modules-dev at openjdk.java.net -id jsr277-putback -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Fri-00:15:41-GMT Total time in queue: 16m 08s Job started at: Fri-00:18:23-GMT Job finished at: Fri-00:31:49-GMT Job run time: 13m 26s Job state: success Job flags: Bundles: USE: jprt install 2007-08-17-001557.daemon.jsr277-putback HINT: Use 'jprt rerun -comment -retest 2007-08-17-001557.daemon.jsr277-putback' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): linux_i586_2.4-product success(09m 15s elapsed) Tests: linux_i586-product-c2-jvm98 success(01m 52s elapsed) linux_i586-product-c2-java/module success(01m 50s elapsed) linux_i586-product-c2-sun/module success( 54s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From jprtadm at jprt-web.SFBay.Sun.COM Fri Aug 17 05:25:34 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Fri, 17 Aug 2007 05:25:34 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - success with job 2007-08-17-111327.as130790.jsr277-nightly Message-ID: <200708171225.l7HCPYnk006101@jprt-web.SFBay.Sun.COM> JPRT: job notification - success with job 2007-08-17-111327.as130790.jsr277-nightly JPRT Job ID: 2007-08-17-111327.as130790.jsr277-nightly JPRT System Used: sfbay JPRT Version Used: 15 Aug 2007 - Relaxation Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-17-111327.as130790.jsr277-nightly Job ARCHIVE: /net/jprt-web.sfbay/jprt/archive/2007/08/2007-08-17-111327.as130790.jsr277-nightly User: as130790 Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*product.*' -noquickabort -email modules-dev at openjdk.java.net -id jsr277-nightly -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Fri-11:13:10-GMT Total time in queue: 1h 12m 23s Job started at: Fri-11:21:53-GMT Job finished at: Fri-12:25:33-GMT Job run time: 1h 03m 40s Job state: success Job flags: Bundles: USE: jprt install 2007-08-17-111327.as130790.jsr277-nightly HINT: Use 'jprt rerun -comment -retest 2007-08-17-111327.as130790.jsr277-nightly' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): solaris_sparc_5.8-product success(25m 15s elapsed) solaris_sparcv9_5.8-product success(26m 31s elapsed) solaris_i586_5.8-product success(49m 10s elapsed) linux_i586_2.4-product success(09m 42s elapsed) windows_i586_5-product success(44m 06s elapsed) Tests: solaris_sparc-product-c2-jvm98 success(02m 30s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_sparcv9-product-c2-jvm98 success(03m 56s elapsed) solaris_i586-product-c2-jvm98 success(03m 28s elapsed) linux_i586-product-c2-jvm98 success(02m 23s elapsed) windows_i586-product-c2-jvm98 success(03m 05s elapsed) solaris_sparc-product-c2-java/module success(01m 29s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_sparcv9-product-c2-java/module success(01m 33s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-java/module success(01m 00s elapsed) NOTE: Used solaris_i586_5.10 for above target. linux_i586-product-c2-java/module success(01m 46s elapsed) windows_i586-product-c2-java/module success(05m 43s elapsed) solaris_sparc-product-c2-sun/module success( 41s elapsed) solaris_sparcv9-product-c2-sun/module success( 36s elapsed) NOTE: Used solaris_sparc_5.10 for above target. solaris_i586-product-c2-sun/module success( 26s elapsed) NOTE: Used solaris_i586_5.10 for above target. linux_i586-product-c2-sun/module success( 46s elapsed) windows_i586-product-c2-sun/module success(03m 43s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From andreas.sterbenz at sun.com Fri Aug 17 06:00:11 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Fri, 17 Aug 2007 06:00:11 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708171300.l7HD0B3S005035@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070817/6edceee9/attachment.html From Kumar.Srinivasan at Sun.COM Fri Aug 17 13:57:24 2007 From: Kumar.Srinivasan at Sun.COM (Kumar Srinivasan) Date: Fri, 17 Aug 2007 13:57:24 -0700 Subject: [modules-dev] 6593159: (S) Simple webrev please Message-ID: <46C60BB4.5020602@Sun.COM> Hi, 6593159: (launcher) does not recognise the current directory when used with -jam[rev1, rev2] Webrev: http://javaweb.sfbay/~ksrini/webrevs/j2se-tools/jsr277-9 Testing: * Regression tests on Solaris sparc and Windows x86 Notes: * cleaned up BasicLauncherTests * added relative and current path testing -- Kumar Srinivasan Sun Microsystems, Java Software. 408-276-7586 From Stanley.Ho at Sun.COM Fri Aug 17 14:34:42 2007 From: Stanley.Ho at Sun.COM (Stanley M. Ho) Date: Fri, 17 Aug 2007 14:34:42 -0700 Subject: [modules-dev] 6593159: (S) Simple webrev please In-Reply-To: <46C60BB4.5020602@Sun.COM> References: <46C60BB4.5020602@Sun.COM> Message-ID: <46C61472.3080108@sun.com> Looks good. - Stanley Kumar Srinivasan wrote: > Hi, > > 6593159: (launcher) does not recognise the current directory when used > with -jam[rev1, rev2] > Webrev: > http://javaweb.sfbay/~ksrini/webrevs/j2se-tools/jsr277-9 > > Testing: > * Regression tests on Solaris sparc and Windows x86 > > Notes: > * cleaned up BasicLauncherTests > * added relative and current path testing From Andreas.Sterbenz at Sun.COM Fri Aug 17 16:58:57 2007 From: Andreas.Sterbenz at Sun.COM (Andreas Sterbenz) Date: Fri, 17 Aug 2007 16:58:57 -0700 Subject: [modules-dev] 6593159: (S) Simple webrev please In-Reply-To: <46C60BB4.5020602@Sun.COM> References: <46C60BB4.5020602@Sun.COM> Message-ID: <46C63641.7080301@sun.com> Kumar Srinivasan wrote: > > 6593159: (launcher) does not recognise the current directory when used > with -jam[rev1, rev2] > Webrev: > http://javaweb.sfbay/~ksrini/webrevs/j2se-tools/jsr277-9 Changes look fine. I noticed something in the existing code, though: the ModuleLauncher does a repository.install() (line 194). That should not be necessary because the LocalRepository was created with the directory containing the file as the source dir. That line and the construction of the URL u (line 179ff) should probably be deleted / replaced with a simple existence test of the file [new File(jamFileName).exists()]. Andreas. From as130790 at shimmer.sfbay.sun.com Fri Aug 17 17:02:03 2007 From: as130790 at shimmer.sfbay.sun.com (Andreas Sterbenz) Date: Fri, 17 Aug 2007 17:02:03 -0700 (PDT) Subject: [modules-dev] Code Manager notification (putback-to) Message-ID: <200708180002.l7I023El011588@shimmer.sfbay.sun.com> Event: putback-to Parent workspace: /net/shimmer.sfbay/export/home/jsr277/ws (shimmer:/net/shimmer.sfbay/export/home/jsr277/ws) Child workspace: /net/shimmer.sfbay/export/home/as130790/277-merge/ws (shimmer:/net/shimmer.sfbay/export/home/as130790/277-merge/ws) User: as130790 Comment: Sync with TL Files: update: make/jprt.properties update: make/common/BinaryPlugs.gmk update: make/common/Defs-linux.gmk update: make/common/Resources.gmk update: make/common/shared/Platform.gmk update: make/common/shared/Sanity.gmk update: src/share/classes/com/sun/tools/jdwpgen/jdwp.spec update: test/tools/javac/EOI.java Examined files: 38556 Contents Summary: 8 update 38548 no action (unchanged) From jprtadm at jprt-web.SFBay.Sun.COM Fri Aug 17 19:28:41 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Fri, 17 Aug 2007 19:28:41 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - success with job 2007-08-18-000226.daemon.jsr277-putback Message-ID: <200708180228.l7I2SfBC020739@jprt-web.SFBay.Sun.COM> JPRT: job notification - success with job 2007-08-18-000226.daemon.jsr277-putback JPRT Job ID: 2007-08-18-000226.daemon.jsr277-putback JPRT System Used: sfbay JPRT Version Used: 16 Aug 2007 - National Tell a Joke Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-18-000226.daemon.jsr277-putback Job ARCHIVE: /net/jprt-web.sfbay/jprt/archive/2007/08/2007-08-18-000226.daemon.jsr277-putback User: daemon Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*linux_i586.*product.*' -noquickabort -email modules-dev at openjdk.java.net -id jsr277-putback -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Sat-00:02:08-GMT Total time in queue: 2h 26m 33s Job started at: Sat-02:12:06-GMT Job finished at: Sat-02:28:41-GMT Job run time: 16m 35s Job state: success Job flags: Bundles: USE: jprt install 2007-08-18-000226.daemon.jsr277-putback HINT: Use 'jprt rerun -comment -retest 2007-08-18-000226.daemon.jsr277-putback' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): linux_i586_2.4-product success(11m 54s elapsed) Tests: linux_i586-product-c1-jvm98 success(02m 04s elapsed) linux_i586-product-c2-jvm98 success(01m 50s elapsed) linux_i586-product-c2-java/module success(01m 27s elapsed) linux_i586-product-c2-sun/module success( 48s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From jprtadm at jprt-web.SFBay.Sun.COM Sat Aug 18 05:14:24 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Sat, 18 Aug 2007 05:14:24 -0700 (PDT) Subject: [modules-dev] JPRT: job notification - success with job 2007-08-18-111324.as130790.jsr277-nightly Message-ID: <200708181214.l7ICEOnM021177@jprt-web.SFBay.Sun.COM> JPRT: job notification - success with job 2007-08-18-111324.as130790.jsr277-nightly JPRT Job ID: 2007-08-18-111324.as130790.jsr277-nightly JPRT System Used: sfbay JPRT Version Used: 16 Aug 2007 - National Tell a Joke Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-18-111324.as130790.jsr277-nightly Job ARCHIVE: /net/jprt-web.sfbay/jprt/archive/2007/08/2007-08-18-111324.as130790.jsr277-nightly User: as130790 Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*product.*' -noquickabort -email modules-dev at openjdk.java.net -id jsr277-nightly -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Sat-11:13:06-GMT Total time in queue: 1h 01m 18s Job started at: Sat-11:20:26-GMT Job finished at: Sat-12:14:24-GMT Job run time: 53m 58s Job state: success Job flags: Bundles: USE: jprt install 2007-08-18-111324.as130790.jsr277-nightly HINT: Use 'jprt rerun -comment -retest 2007-08-18-111324.as130790.jsr277-nightly' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): solaris_sparc_5.10-product success(17m 36s elapsed) solaris_sparcv9_5.10-product success(17m 07s elapsed) solaris_i586_5.10-product success(09m 42s elapsed) solaris_x64_5.10-product success(10m 17s elapsed) linux_i586_2.4-product success(11m 20s elapsed) linux_x64_2.4-product success(13m 45s elapsed) windows_i586_5-product success(42m 13s elapsed) windows_x64_5.2-product success(44m 20s elapsed) Tests: solaris_sparc-product-c1-jvm98 success(03m 27s elapsed) solaris_sparc-product-c2-jvm98 success(02m 36s elapsed) solaris_sparcv9-product-c2-jvm98 success(02m 49s elapsed) solaris_i586-product-c1-jvm98 success(02m 11s elapsed) solaris_i586-product-c2-jvm98 success(01m 51s elapsed) solaris_x64-product-c2-jvm98 success(01m 59s elapsed) linux_i586-product-c1-jvm98 success(02m 07s elapsed) linux_i586-product-c2-jvm98 success(01m 55s elapsed) linux_x64-product-c2-jvm98 success(01m 41s elapsed) windows_i586-product-c1-jvm98 success(03m 40s elapsed) windows_i586-product-c2-jvm98 success(03m 13s elapsed) windows_x64-product-c2-jvm98 success(01m 59s elapsed) solaris_sparc-product-c2-java/module success(01m 33s elapsed) solaris_sparcv9-product-c2-java/module success(01m 43s elapsed) solaris_i586-product-c2-java/module success( 54s elapsed) solaris_x64-product-c2-java/module success(01m 02s elapsed) linux_i586-product-c2-java/module success(01m 46s elapsed) linux_x64-product-c2-java/module success(01m 08s elapsed) windows_i586-product-c2-java/module success(04m 15s elapsed) windows_x64-product-c2-java/module success(04m 10s elapsed) solaris_sparc-product-c2-sun/module success( 40s elapsed) solaris_sparcv9-product-c2-sun/module success( 40s elapsed) solaris_i586-product-c2-sun/module success( 18s elapsed) solaris_x64-product-c2-sun/module success( 19s elapsed) linux_i586-product-c2-sun/module success(01m 02s elapsed) linux_x64-product-c2-sun/module success( 19s elapsed) windows_i586-product-c2-sun/module success(03m 43s elapsed) windows_x64-product-c2-sun/module success(02m 27s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From Kumar.Srinivasan at Sun.COM Sat Aug 18 09:07:48 2007 From: Kumar.Srinivasan at Sun.COM (Kumar Srinivasan) Date: Sat, 18 Aug 2007 09:07:48 -0700 Subject: [modules-dev] 6593159: (S) Simple webrev please In-Reply-To: <46C63641.7080301@sun.com> References: <46C60BB4.5020602@Sun.COM> <46C63641.7080301@sun.com> Message-ID: <46C71954.7020107@Sun.COM> No there was a reason, I left it the *.install there. There is a bug in ExpandedJamRepository, I need to talk to Dave before yanking this out. I can just wait till he gets back and fix all of this or putback what I have. You guys let me know. > Kumar Srinivasan wrote: > >> 6593159: (launcher) does not recognise the current directory when used >> with -jam[rev1, rev2] >> Webrev: >> http://javaweb.sfbay/~ksrini/webrevs/j2se-tools/jsr277-9 >> > > Changes look fine. > > I noticed something in the existing code, though: the ModuleLauncher does > a repository.install() (line 194). That should not be necessary because > the LocalRepository was created with the directory containing the file as > the source dir. That line and the construction of the URL u (line 179ff) > should probably be deleted / replaced with a simple existence test of the > file [new File(jamFileName).exists()]. > > Andreas. > _______________________________________________ > modules-dev mailing list > modules-dev at openjdk.java.net > http://mail.openjdk.java.net/mailman/listinfo/modules-dev > -- Kumar Srinivasan Sun Microsystems, Java Software. 408-276-7586 From Andreas.Sterbenz at Sun.COM Mon Aug 20 01:00:51 2007 From: Andreas.Sterbenz at Sun.COM (Andreas Sterbenz) Date: Mon, 20 Aug 2007 01:00:51 -0700 Subject: [modules-dev] 6593159: (S) Simple webrev please In-Reply-To: <46C71954.7020107@Sun.COM> References: <46C60BB4.5020602@Sun.COM> <46C63641.7080301@sun.com> <46C71954.7020107@Sun.COM> Message-ID: <46C94A33.5050900@sun.com> Kumar Srinivasan wrote: > No there was a reason, I left it the *.install there. There is a bug in > ExpandedJamRepository, I need to talk to Dave before yanking this out. > I can just wait till he gets back and fix all of this or putback what I > have. You guys let me know. I think the bug you are referring to was fixed by Dave a while ago. I suggest quickly trying out if it just works with those lines removed from the launcher. If it does not or if you don't have time to look into it right now, go ahead and putback your current changes. Andreas. From andreas.sterbenz at sun.com Mon Aug 20 06:00:26 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Mon, 20 Aug 2007 06:00:26 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708201300.l7KD0Q7h015590@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070820/46a2bfee/attachment.html From Kumar.Srinivasan at Sun.COM Mon Aug 20 09:40:51 2007 From: Kumar.Srinivasan at Sun.COM (Kumar Srinivasan) Date: Mon, 20 Aug 2007 09:40:51 -0700 Subject: [modules-dev] 6593159: (S) Simple webrev please In-Reply-To: <46C94A33.5050900@sun.com> References: <46C60BB4.5020602@Sun.COM> <46C63641.7080301@sun.com> <46C71954.7020107@Sun.COM> <46C94A33.5050900@sun.com> Message-ID: <46C9C413.7020402@Sun.COM> I verified it still exists, I will talk to Dave about this, when he comes back, I'd rather wait and fix the whole shebang, and this is not a show stopper bug anyway. > Kumar Srinivasan wrote: > >> No there was a reason, I left it the *.install there. There is a bug in >> ExpandedJamRepository, I need to talk to Dave before yanking this out. >> I can just wait till he gets back and fix all of this or putback what I >> have. You guys let me know. >> > > I think the bug you are referring to was fixed by Dave a while ago. I > suggest quickly trying out if it just works with those lines removed from > the launcher. If it does not or if you don't have time to look into it > right now, go ahead and putback your current changes. > > Andreas. > > _______________________________________________ > modules-dev mailing list > modules-dev at openjdk.java.net > http://mail.openjdk.java.net/mailman/listinfo/modules-dev > -- Kumar Srinivasan Sun Microsystems, Java Software. 408-276-7586 From andreas.sterbenz at sun.com Tue Aug 21 06:00:28 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Tue, 21 Aug 2007 06:00:28 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708211300.l7LD0SYK025655@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070821/c0d1f2c4/attachment.html From andreas.sterbenz at sun.com Wed Aug 22 06:00:23 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Wed, 22 Aug 2007 06:00:23 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708221300.l7MD0MBP029013@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070822/9a4be741/attachment.html From andreas.sterbenz at sun.com Thu Aug 23 06:00:28 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Thu, 23 Aug 2007 06:00:28 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708231300.l7ND0SWW012859@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070823/1cdb819f/attachment.html From andreas.sterbenz at sun.com Fri Aug 24 06:00:51 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Fri, 24 Aug 2007 06:00:51 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708241300.l7OD0pdI000426@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070824/f40e1bc6/attachment.html From db13166 at pasilla.SFBay.Sun.COM Fri Aug 24 13:00:03 2007 From: db13166 at pasilla.SFBay.Sun.COM (David Bristor) Date: Fri, 24 Aug 2007 13:00:03 -0700 (PDT) Subject: [modules-dev] Code Manager notification (putback-to) Message-ID: <200708242000.l7OK035J011964@pasilla.SFBay.Sun.COM> Event: putback-to Parent workspace: /net/shimmer.sfbay/export/home/jsr277/ws (shimmer.sfbay:/export/home/jsr277/ws) Child workspace: /data/ws/db-jam (pasilla:/data/ws/db-jam) User: db13166 Comment: (repo) Compare MODULE.METADATA downloaded initially with that in module archive [stanley.ho, andreas.sterbenz] Files: update: src/share/classes/sun/module/repository/URLModuleDefinitionContent.java create: test/sun/module/repository/MetadataCompareTest.java create: test/sun/module/tools/JamBuilder.java Examined files: 3 Contents Summary: 2 create 1 update Names Summary: 2 update parent's name history 2 update children's name history From jprtadm at jprt-web.SFBay.Sun.COM Fri Aug 24 13:25:31 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Fri, 24 Aug 2007 13:25:31 -0700 (PDT) Subject: [modules-dev] JPRT: [sfbay] job notification - success with job 2007-08-24-200032.daemon.jsr277-putback Message-ID: <200708242025.l7OKPVdv019561@jprt-web.SFBay.Sun.COM> JPRT: [sfbay] job notification - success with job 2007-08-24-200032.daemon.jsr277-putback JPRT Job ID: 2007-08-24-200032.daemon.jsr277-putback JPRT System Used: sfbay JPRT Version Used: 22 Aug 2007 - National Tooth Fairy Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-24-200032.daemon.jsr277-putback Job ARCHIVE: /net/prt-archiver.sfbay/data/jprt/archive/2007/08/2007-08-24-200032.daemon.jsr277-putback User: daemon Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*linux_i586.*product.*' -noquickabort -email modules-dev at openjdk.java.net -id jsr277-putback -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Fri-20:00:11-GMT Total time in queue: 25m 19s Job started at: Fri-20:11:34-GMT Job finished at: Fri-20:25:30-GMT Job run time: 13m 56s Job state: success Job flags: Bundles: USE: jprt install 2007-08-24-200032.daemon.jsr277-putback HINT: Use 'jprt rerun -comment -retest 2007-08-24-200032.daemon.jsr277-putback' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): linux_i586_2.4-product success(09m 24s elapsed) Tests: linux_i586-product-c1-jvm98 success(02m 02s elapsed) linux_i586-product-c2-jvm98 success(01m 54s elapsed) linux_i586-product-c2-java/module success(01m 25s elapsed) linux_i586-product-c2-sun/module success( 47s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From ksrini at baggy.SFBay.Sun.COM Fri Aug 24 15:23:47 2007 From: ksrini at baggy.SFBay.Sun.COM (Kumar Srinivasan - Java Software) Date: Fri, 24 Aug 2007 15:23:47 -0700 (PDT) Subject: [modules-dev] Code Manager notification (putback-to) Message-ID: <200708242223.l7OMNlrg020666@baggy.SFBay.Sun.COM> Event: putback-to Parent workspace: /net/shimmer.sfbay/export/home/jsr277/ws (shimmer.sfbay:/export/home/jsr277/ws) Child workspace: /net/baggy.sfbay/allmine/ws-277/j2se (baggy:/net/baggy.sfbay/allmine/ws-277/j2se) User: ksrini Comment: 6593159: (launcher) does not recognise the current directory when used with -jam[stanley.ho at Sun.COM, andreas.sterbenz at Sun.COM] Webrev: http://analemma.sfbay.sun.com/~ksrini/webrevs/j2se-tools/jsr277-9 Testing: * Regression tests on Solaris sparc and Windows x86 Files: update: src/share/classes/sun/module/ModuleLauncher.java update: test/java/module/basic/BasicLauncherTests.java Examined files: 2 Contents Summary: 2 update From jprtadm at jprt-web.SFBay.Sun.COM Fri Aug 24 16:03:42 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Fri, 24 Aug 2007 16:03:42 -0700 (PDT) Subject: [modules-dev] JPRT: [sfbay] job notification - success with job 2007-08-24-222420.daemon.jsr277-putback Message-ID: <200708242303.l7ON3g3V019727@jprt-web.SFBay.Sun.COM> JPRT: [sfbay] job notification - success with job 2007-08-24-222420.daemon.jsr277-putback JPRT Job ID: 2007-08-24-222420.daemon.jsr277-putback JPRT System Used: sfbay JPRT Version Used: 22 Aug 2007 - National Tooth Fairy Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-24-222420.daemon.jsr277-putback Job ARCHIVE: /net/prt-archiver.sfbay/data/jprt/archive/2007/08/2007-08-24-222420.daemon.jsr277-putback User: daemon Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*linux_i586.*product.*' -noquickabort -email modules-dev at openjdk.java.net -id jsr277-putback -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Fri-22:23:58-GMT Total time in queue: 39m 44s Job started at: Fri-22:50:00-GMT Job finished at: Fri-23:03:42-GMT Job run time: 13m 42s Job state: success Job flags: Bundles: USE: jprt install 2007-08-24-222420.daemon.jsr277-putback HINT: Use 'jprt rerun -comment -retest 2007-08-24-222420.daemon.jsr277-putback' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): linux_i586_2.4-product success(09m 16s elapsed) Tests: linux_i586-product-c1-jvm98 success(02m 02s elapsed) linux_i586-product-c2-jvm98 success(01m 52s elapsed) linux_i586-product-c2-java/module success(01m 20s elapsed) linux_i586-product-c2-sun/module success( 40s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From as130790 at shimmer.sfbay.sun.com Fri Aug 24 16:15:29 2007 From: as130790 at shimmer.sfbay.sun.com (Andreas Sterbenz) Date: Fri, 24 Aug 2007 16:15:29 -0700 (PDT) Subject: [modules-dev] Code Manager notification (putback-to) Message-ID: <200708242315.l7ONFTn2027519@shimmer.sfbay.sun.com> Event: putback-to Parent workspace: /net/shimmer.sfbay/export/home/jsr277/ws (shimmer:/net/shimmer.sfbay/export/home/jsr277/ws) Child workspace: /net/shimmer.sfbay/export/home/as130790/277-merge/ws (shimmer:/net/shimmer.sfbay/export/home/as130790/277-merge/ws) User: as130790 Comment: Sync with TL Files: update: make/common/Rules.gmk update: src/share/classes/com/sun/security/auth/PolicyFile.java update: src/share/classes/com/sun/security/auth/PolicyParser.java update: src/share/classes/com/sun/security/sasl/CramMD5Server.java update: src/share/classes/com/sun/security/sasl/ExternalClient.java update: src/share/classes/com/sun/security/sasl/digest/DigestMD5Client.java update: src/share/classes/com/sun/security/sasl/digest/DigestMD5Server.java update: src/share/classes/com/sun/security/sasl/util/PolicyUtils.java update: src/share/classes/com/sun/tools/attach/spi/AttachProvider.java update: src/share/classes/com/sun/tools/javac/comp/Lower.java update: src/share/classes/com/sun/tools/javac/jvm/Target.java update: src/share/classes/com/sun/tools/javac/zip/ZipFileIndex.java update: src/share/classes/java/io/BufferedWriter.java update: src/share/classes/java/io/File.java update: src/share/classes/java/io/ObjectInputStream.java update: src/share/classes/java/io/ObjectOutputStream.java update: src/share/classes/java/io/ObjectStreamClass.java update: src/share/classes/java/io/PrintWriter.java update: src/share/classes/java/lang/SecurityManager.java update: src/share/classes/java/lang/StringBuffer.java update: src/share/classes/java/lang/Thread.java update: src/share/classes/java/lang/Throwable.java update: src/share/classes/java/math/BigInteger.java update: src/share/classes/java/math/MutableBigInteger.java update: src/share/classes/java/net/Inet6Address.java update: src/share/classes/java/net/InetAddress.java update: src/share/classes/java/net/PasswordAuthentication.java update: src/share/classes/java/net/SocketPermission.java update: src/share/classes/java/net/SocksSocketImpl.java update: src/share/classes/java/net/URL.java update: src/share/classes/java/net/URLConnection.java update: src/share/classes/java/net/URLEncoder.java update: src/share/classes/java/nio/Bits.java update: src/share/classes/java/nio/charset/Charset.java update: src/share/classes/java/security/AccessControlContext.java update: src/share/classes/java/security/CodeSource.java update: src/share/classes/java/security/KeyRep.java update: src/share/classes/java/security/KeyStore.java update: src/share/classes/java/security/Permissions.java update: src/share/classes/java/security/ProtectionDomain.java update: src/share/classes/java/security/Provider.java update: src/share/classes/java/security/SignedObject.java update: src/share/classes/java/security/UnresolvedPermission.java update: src/share/classes/java/security/cert/PolicyQualifierInfo.java update: src/share/classes/java/security/spec/ECFieldF2m.java update: src/share/classes/java/security/spec/EllipticCurve.java update: src/share/classes/java/security/spec/EncodedKeySpec.java update: src/share/classes/java/security/spec/RSAMultiPrimePrivateCrtKeySpec.java update: src/share/classes/java/util/Arrays.java update: src/share/classes/java/util/BitSet.java update: src/share/classes/java/util/Locale.java update: src/share/classes/java/util/Properties.java update: src/share/classes/java/util/concurrent/ConcurrentLinkedQueue.java update: src/share/classes/java/util/concurrent/atomic/AtomicLong.java update: src/share/classes/java/util/jar/Attributes.java update: src/share/classes/java/util/jar/JarEntry.java update: src/share/classes/java/util/jar/JarFile.java update: src/share/classes/java/util/jar/Manifest.java update: src/share/classes/java/util/jar/Pack200.java update: src/share/classes/java/util/logging/Level.java update: src/share/classes/java/util/logging/Logger.java update: src/share/classes/java/util/logging/SimpleFormatter.java update: src/share/classes/java/util/zip/ZipEntry.java update: src/share/classes/java/util/zip/ZipInputStream.java update: src/share/classes/javax/naming/directory/BasicAttributes.java update: src/share/classes/javax/security/auth/PrivateCredentialPermission.java update: src/share/classes/javax/security/auth/SubjectDomainCombiner.java update: src/share/classes/javax/security/auth/callback/PasswordCallback.java update: src/share/classes/org/ietf/jgss/Oid.java update: src/share/classes/sun/misc/ASCIICaseInsensitiveComparator.java update: src/share/classes/sun/misc/ExtensionDependency.java update: src/share/classes/sun/misc/FloatingDecimal.java update: src/share/classes/sun/misc/FormattedFloatingDecimal.java update: src/share/classes/sun/misc/Launcher.java update: src/share/classes/sun/misc/PerformanceLogger.java update: src/share/classes/sun/misc/ProxyGenerator.java update: src/share/classes/sun/misc/Timer.java update: src/share/classes/sun/misc/URLClassPath.java update: src/share/classes/sun/misc/VM.java update: src/share/classes/sun/net/InetAddressCachePolicy.java update: src/share/classes/sun/net/ftp/FtpClient.java update: src/share/classes/sun/net/idn/Punycode.java update: src/share/classes/sun/net/idn/StringPrep.java update: src/share/classes/sun/net/smtp/SmtpClient.java update: src/share/classes/sun/net/spi/nameservice/dns/DNSNameService.java update: src/share/classes/sun/net/www/MimeLauncher.java update: src/share/classes/sun/net/www/http/HttpClient.java update: src/share/classes/sun/net/www/http/KeepAliveCache.java update: src/share/classes/sun/net/www/protocol/ftp/FtpURLConnection.java update: src/share/classes/sun/net/www/protocol/gopher/GopherClient.java update: src/share/classes/sun/net/www/protocol/http/AuthenticationHeader.java update: src/share/classes/sun/net/www/protocol/http/AuthenticationInfo.java update: src/share/classes/sun/net/www/protocol/http/HttpURLConnection.java update: src/share/classes/sun/net/www/protocol/jar/URLJarFile.java update: src/share/classes/sun/net/www/protocol/netdoc/Handler.java update: src/share/classes/sun/nio/ch/FileChannelImpl.java update: src/share/classes/sun/nio/ch/Util.java update: src/share/classes/sun/nio/cs/ext/ExtendedCharsets.java update: src/share/classes/sun/nio/cs/ext/JISAutoDetect.java update: src/share/classes/sun/security/jca/ProviderList.java update: src/share/classes/sun/security/jgss/krb5/Krb5Util.java update: src/share/classes/sun/security/jgss/spnego/SpNegoContext.java update: src/share/classes/sun/security/pkcs/EncryptedPrivateKeyInfo.java update: src/share/classes/sun/security/pkcs/PKCS10.java update: src/share/classes/sun/security/pkcs/PKCS7.java update: src/share/classes/sun/security/pkcs/PKCS8Key.java update: src/share/classes/sun/security/pkcs/PKCS9Attribute.java update: src/share/classes/sun/security/pkcs/PKCS9Attributes.java update: src/share/classes/sun/security/pkcs11/Config.java update: src/share/classes/sun/security/pkcs12/MacData.java update: src/share/classes/sun/security/pkcs12/PKCS12KeyStore.java update: src/share/classes/sun/security/provider/DSAKeyFactory.java update: src/share/classes/sun/security/provider/DSAPrivateKey.java update: src/share/classes/sun/security/provider/DSAPublicKey.java update: src/share/classes/sun/security/provider/DigestBase.java update: src/share/classes/sun/security/provider/JavaKeyStore.java update: src/share/classes/sun/security/provider/MD2.java update: src/share/classes/sun/security/provider/ParameterCache.java update: src/share/classes/sun/security/provider/PolicyFile.java update: src/share/classes/sun/security/provider/PolicyParser.java update: src/share/classes/sun/security/provider/certpath/CrlRevocationChecker.java update: src/share/classes/sun/security/provider/certpath/DistributionPointFetcher.java update: src/share/classes/sun/security/provider/certpath/LDAPCertStore.java update: src/share/classes/sun/security/provider/certpath/OCSPChecker.java update: src/share/classes/sun/security/ssl/Debug.java update: src/share/classes/sun/security/tools/KeyTool.java update: src/share/classes/sun/security/tools/PolicyTool.java update: src/share/classes/sun/security/util/BigInt.java update: src/share/classes/sun/security/util/BitArray.java update: src/share/classes/sun/security/util/Debug.java update: src/share/classes/sun/security/util/ManifestEntryVerifier.java update: src/share/classes/sun/security/util/ObjectIdentifier.java update: src/share/classes/sun/security/util/SignatureFileVerifier.java update: src/share/classes/sun/security/x509/CRLExtensions.java update: src/share/classes/sun/security/x509/CertificateExtensions.java update: src/share/classes/sun/security/x509/EDIPartyName.java update: src/share/classes/sun/security/x509/ExtendedKeyUsageExtension.java update: src/share/classes/sun/security/x509/IPAddressName.java update: src/share/classes/sun/security/x509/KeyIdentifier.java update: src/share/classes/sun/security/x509/KeyUsageExtension.java update: src/share/classes/sun/security/x509/NameConstraintsExtension.java update: src/share/classes/sun/security/x509/OtherName.java update: src/share/classes/sun/security/x509/PrivateKeyUsageExtension.java update: src/share/classes/sun/security/x509/RDN.java update: src/share/classes/sun/security/x509/X500Name.java update: src/share/classes/sun/security/x509/X509CRLEntryImpl.java update: src/share/classes/sun/security/x509/X509CRLImpl.java update: src/share/classes/sun/security/x509/X509CertImpl.java update: src/share/classes/sun/security/x509/X509CertInfo.java update: src/share/classes/sun/security/x509/X509Key.java update: src/share/classes/sun/tools/attach/HotSpotVirtualMachine.java update: src/share/classes/sun/util/TimeZoneNameUtility.java update: src/share/classes/sun/util/calendar/JulianCalendar.java update: src/share/classes/sun/util/calendar/LocalGregorianCalendar.java update: src/share/classes/sun/util/calendar/ZoneInfoFile.java update: src/share/classes/sun/util/resources/LocaleData.java update: src/solaris/classes/java/io/UnixFileSystem.java update: src/solaris/classes/java/net/DefaultDatagramSocketImplFactory.java update: src/solaris/classes/sun/net/www/protocol/http/NTLMAuthentication.java update: src/solaris/classes/sun/net/www/protocol/jar/JarFileFactory.java update: src/solaris/classes/sun/nio/ch/DefaultSelectorProvider.java update: src/solaris/classes/sun/print/UnixPrintService.java update: src/solaris/classes/sun/print/UnixPrintServiceLookup.java update: src/windows/classes/java/io/Win32FileSystem.java update: src/windows/classes/java/net/DefaultDatagramSocketImplFactory.java update: src/windows/classes/sun/net/www/protocol/http/NTLMAuthentication.java update: src/windows/classes/sun/print/Win32PrintServiceLookup.java update: test/java/nio/Buffer/Basic.java update: test/java/util/Arrays/ArrayObjectMethods.java update: test/java/util/Arrays/FloatDoubleOrder.java update: test/tools/apt/Basics/apt.sh update: test/tools/apt/Basics/print.sh update: test/tools/apt/Compile/compile.sh update: test/tools/apt/Discovery/discovery.sh update: test/tools/apt/Misc/misc.sh update: test/tools/apt/Options/options.sh update: test/tools/apt/verifyVariables.sh update: test/tools/apt/Scanners/scanner.sh update: test/tools/javah/6257087/foo.sh update: test/tools/javah/ConstMacroTest.sh update: test/tools/javah/MissingParamClassTest.sh update: test/tools/javah/ReadOldClass.sh update: test/tools/javap/PublicInterfaceTest.sh update: test/tools/javap/pathsep.sh update: test/tools/javap/stackmap/T6271292.sh create: test/java/nio/Buffer/SwapMicroBenchmark.java create: test/java/util/BitSet/PreviousBits.java create: test/tools/javac/T6557865.java update: test/tools/javadoc/outputRedirect/Test.java rename from: test/tools/javadoc/outputRedirect/OutputRedirect.sh to: test/tools/javadoc/outputRedirect/Test.java update: test/tools/javadoc/sourceOnly/Test.java rename from: test/tools/javadoc/sourceOnly/SourceOnly.sh to: test/tools/javadoc/sourceOnly/Test.java Examined files: 38561 Contents Summary: 3 create 187 update 38371 no action (unchanged) Names Summary: 2 renamed From jprtadm at jprt-web.SFBay.Sun.COM Fri Aug 24 16:34:11 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Fri, 24 Aug 2007 16:34:11 -0700 (PDT) Subject: [modules-dev] JPRT: [sfbay] job notification - success with job 2007-08-24-231553.daemon.jsr277-putback Message-ID: <200708242334.l7ONYBff019746@jprt-web.SFBay.Sun.COM> JPRT: [sfbay] job notification - success with job 2007-08-24-231553.daemon.jsr277-putback JPRT Job ID: 2007-08-24-231553.daemon.jsr277-putback JPRT System Used: sfbay JPRT Version Used: 22 Aug 2007 - National Tooth Fairy Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-24-231553.daemon.jsr277-putback Job ARCHIVE: /net/prt-archiver.sfbay/data/jprt/archive/2007/08/2007-08-24-231553.daemon.jsr277-putback User: daemon Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*linux_i586.*product.*' -noquickabort -email modules-dev at openjdk.java.net -id jsr277-putback -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Fri-23:15:32-GMT Total time in queue: 18m 39s Job started at: Fri-23:20:15-GMT Job finished at: Fri-23:34:11-GMT Job run time: 13m 56s Job state: success Job flags: Bundles: USE: jprt install 2007-08-24-231553.daemon.jsr277-putback HINT: Use 'jprt rerun -comment -retest 2007-08-24-231553.daemon.jsr277-putback' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): linux_i586_2.4-product success(09m 10s elapsed) Tests: linux_i586-product-c1-jvm98 success(02m 00s elapsed) linux_i586-product-c2-jvm98 success(01m 55s elapsed) linux_i586-product-c2-java/module success(01m 26s elapsed) linux_i586-product-c2-sun/module success( 44s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From David.Bristor at Sun.COM Fri Aug 24 16:43:54 2007 From: David.Bristor at Sun.COM (Dave Bristor) Date: Fri, 24 Aug 2007 16:43:54 -0700 Subject: [modules-dev] [Fwd: Review request: 6589789, JRepo support for module install, uninstall] Message-ID: <46CF6D3A.2060901@sun.com> Hi folks, Any comments on this one? I haven't heard anything yet. I've updated the webrev after integrating changes putback while I was away. Thanks, Dave -------- Original Message -------- Subject: Review request: 6589789, JRepo support for module install, uninstall Date: Fri, 10 Aug 2007 18:59:43 -0700 From: Dave Bristor To: modules-dev at openjdk.java.net Building on top of 6563535 which I checked in this week, here is support for installing and uninstalling modules using JRepo. The usage becomes: Usage: jrepo , where command is follows one of the patterns below list [-v] [-p] [-r repositoryLocation] moduleName install [-v] -r repositoryLocation jamFile | jamURL uninstall [-v] [-f | -i] -r repositoryLocation moduleName [moduleVersion] [modulePlatformBinding] webrev: http://analemma.sfbay.sun.com/java/jdk/ws/libs/rev/6589789/ bugster: http://monaco.sfbay/detail.jsf?cr=6589789 A test is included; all tests pass on Solaris and Windows and I'm firing up a JPRT run just now... Some comments on the changes: ExpandedJamRepository now removes files, as well as in-memory contents: this effectively fixes 6574242 as well, which when this 5689789 is integrated, I will close. This removal of files was necessary for uninstall to work in the tests. Most of the individual tests are on a LocalRepository. A few are added on a URLRepository to be sure this works also. Here's some sample output from using uninstall with -i (interactive): % jrepo list -v -r repo Repository file:/data/ws/jam-install/test/sun/module/tools/repo/ Name Version Platform Arch Modified Filename JRepoModuleA 1.0 SunOS x86 8/9/07 4:20 PM /data/ws/jam-install/test/sun/module/tools/repo/JRepoModuleA-1.0.jam-expanded JRepoModuleB 1.0 SunOS x86 8/10/07 3:40 PM /data/ws/jam-install/test/sun/module/tools/repo/JRepoModuleB-1.0.jam-expanded JRepoModuleB 2.0 SunOS x86 8/10/07 6:50 PM /data/ws/jam-install/test/sun/module/tools/repo/JRepoModuleB-2.0.jam-expanded % % jrepo uninstall -v -i -r repo JRepoModuleB Multiple matches for module found. Choose one of the below by index: 0 JRepoModuleB 1.0 SunOS x86 8/10/07 3:40 PM /data/ws/jam-install/test/sun/module/tools/repo/JRepoModuleB-1.0.jam-expanded 1 JRepoModuleB 2.0 SunOS x86 8/10/07 6:50 PM /data/ws/jam-install/test/sun/module/tools/repo/JRepoModuleB-2.0.jam-expanded Index? 0 Uninstalled JRepoModuleB 1.0 SunOS x86 8/10/07 3:40 PM /data/ws/jam-install/test/sun/module/tools/repo/JRepoModuleB-1.0.jam-expanded If the user types any value outside the range of the indexes shown, they get: Invalid input ; try again and the listing and prompting are repeated. Thanks, Dave From jprtadm at jprt-web.SFBay.Sun.COM Sat Aug 25 05:19:20 2007 From: jprtadm at jprt-web.SFBay.Sun.COM (JPRT Administrator) Date: Sat, 25 Aug 2007 05:19:20 -0700 (PDT) Subject: [modules-dev] JPRT: [sfbay] job notification - success with job 2007-08-25-111325.as130790.jsr277-nightly Message-ID: <200708251219.l7PCJKex020100@jprt-web.SFBay.Sun.COM> JPRT: [sfbay] job notification - success with job 2007-08-25-111325.as130790.jsr277-nightly JPRT Job ID: 2007-08-25-111325.as130790.jsr277-nightly JPRT System Used: sfbay JPRT Version Used: 22 Aug 2007 - National Tooth Fairy Day Job URL: http://javaweb.sfbay/jdk/jprt/archive/2007/08/2007-08-25-111325.as130790.jsr277-nightly Job ARCHIVE: /net/prt-archiver.sfbay/data/jprt/archive/2007/08/2007-08-25-111325.as130790.jsr277-nightly User: as130790 Email: modules-dev at openjdk.java.net Release: jdk1.7.0 Job Source: Source Tree: /net/shimmer.sfbay/export/home/jsr277/ws/{make,src} File List: {.} Command Line: jprt submit -stree ../ws -ot '.*product.*' -noquickabort -email modules-dev at openjdk.java.net -id jsr277-nightly -rtests '*-*-c2-java/module' -rtests '*-*-c2-sun/module' Job submitted at: Sat-11:13:04-GMT Total time in queue: 1h 06m 14s Job started at: Sat-11:19:14-GMT Job finished at: Sat-12:19:18-GMT Job run time: 1h 04s Job state: success Job flags: Bundles: USE: jprt install 2007-08-25-111325.as130790.jsr277-nightly HINT: Use 'jprt rerun -comment -retest 2007-08-25-111325.as130790.jsr277-nightly' to rerun the tests for this job (you can also add tests with 'jprt rerun'). NOTE: Zip files containing exe or dll files on windows have had problems with execute permissions. You may need to 'chmod a+x' the windows exe and dll files. User Comments: null Build (Release:jdk1.7.0 Boot: Import:): solaris_sparc_5.10-product success(18m 11s elapsed) solaris_sparcv9_5.10-product success(17m 46s elapsed) solaris_i586_5.10-product success(09m 55s elapsed) solaris_x64_5.10-product success(10m 18s elapsed) linux_i586_2.4-product success(09m 07s elapsed) linux_x64_2.4-product success(13m 51s elapsed) windows_i586_5-product success(45m 51s elapsed) windows_x64_5.2-product success(44m 54s elapsed) Tests: solaris_sparc-product-c1-jvm98 success(03m 32s elapsed) solaris_sparc-product-c2-jvm98 success(02m 37s elapsed) solaris_sparcv9-product-c2-jvm98 success(02m 55s elapsed) solaris_i586-product-c1-jvm98 success(02m 23s elapsed) solaris_i586-product-c2-jvm98 success(01m 48s elapsed) solaris_x64-product-c2-jvm98 success(02m 02s elapsed) linux_i586-product-c1-jvm98 success(01m 59s elapsed) linux_i586-product-c2-jvm98 success(01m 57s elapsed) linux_x64-product-c2-jvm98 success(01m 49s elapsed) windows_i586-product-c1-jvm98 success(03m 30s elapsed) windows_i586-product-c2-jvm98 success(03m 59s elapsed) windows_x64-product-c2-jvm98 success(01m 57s elapsed) solaris_sparc-product-c2-java/module success(01m 27s elapsed) solaris_sparcv9-product-c2-java/module success(01m 41s elapsed) solaris_i586-product-c2-java/module success(01m 06s elapsed) solaris_x64-product-c2-java/module success(01m 03s elapsed) linux_i586-product-c2-java/module success(01m 38s elapsed) linux_x64-product-c2-java/module success(01m 04s elapsed) windows_i586-product-c2-java/module success(05m 18s elapsed) windows_x64-product-c2-java/module success(04m 02s elapsed) solaris_sparc-product-c2-sun/module success( 39s elapsed) solaris_sparcv9-product-c2-sun/module success( 46s elapsed) solaris_i586-product-c2-sun/module success( 22s elapsed) solaris_x64-product-c2-sun/module success( 20s elapsed) linux_i586-product-c2-sun/module success( 59s elapsed) linux_x64-product-c2-sun/module success( 24s elapsed) windows_i586-product-c2-sun/module success(04m 39s elapsed) windows_x64-product-c2-sun/module success(02m 31s elapsed) For announcements on downtime and availability join the alias 'jprt-announce at sun.com'. You can see the latest announcements at http://archives.central/tm/browse?jprt-announce. For suspected system problems, send mail to 'jprt-admin at sun.com'. The jprt how to document is available at http://javaweb.sfbay/jdk/jprt/dist/javadoc/jprt/doc-files/how-to.html. From andreas.sterbenz at sun.com Mon Aug 27 06:00:23 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Mon, 27 Aug 2007 06:00:23 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708271300.l7RD0NN6015503@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070827/34c64314/attachment.html From andreas.sterbenz at sun.com Tue Aug 28 06:00:53 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Tue, 28 Aug 2007 06:00:53 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708281300.l7SD0ra0028056@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070828/04c7b34a/attachment.html From David.Bristor at Sun.COM Tue Aug 28 18:25:46 2007 From: David.Bristor at Sun.COM (Dave Bristor) Date: Tue, 28 Aug 2007 18:25:46 -0700 Subject: [modules-dev] Review request for 5682244 (remove ExpandedJamRepository) Message-ID: <46D4CB1A.7090304@sun.com> Hi folks, This removes ExpandedJamRepository; LocalRepository now does the heavy lifting. bugster: http://monaco.sfbay/detail.jsf?cr=6582244 webrev: http://analemma.sfbay.sun.com/java/jdk/ws/libs/rev/6582244/ JAMs are not fully expanded as they were before, but JamUtils.expandJam() is invoked to pull out any embedded jars and/or native libraries. expandJam() makes a copy of the JAM file under the directory into which it expands the JAM's contents, and puts a copy of the MODULE.METADATA file under this directory too. I don't believe expandJam() needs to do this, and don't see any other uses of expandJam beyond new file LocalJamDefinitionContent. If there is reason for the functionality I removed, please let me know! Thanks, Dave From andreas.sterbenz at sun.com Wed Aug 29 06:00:51 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Wed, 29 Aug 2007 06:00:51 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708291300.l7TD0pYi001072@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070829/fef2bf86/attachment.html From andreas.sterbenz at sun.com Thu Aug 30 06:00:14 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Thu, 30 Aug 2007 06:00:14 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708301300.l7UD0E0q006259@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070830/c89f87d6/attachment.html From andreas.sterbenz at sun.com Fri Aug 31 06:00:49 2007 From: andreas.sterbenz at sun.com (andreas.sterbenz at sun.com) Date: Fri, 31 Aug 2007 06:00:49 -0700 (PDT) Subject: [modules-dev] Open Bugs/RFEs in java/module Message-ID: <200708311300.l7VD0n6n025658@shimmer.sfbay.sun.com> An HTML attachment was scrubbed... URL: http://mail.openjdk.java.net/pipermail/modules-dev/attachments/20070831/13cbafc5/attachment.html