Which test groups to run instead of :jdk (8176838)
Hi, we used to run test target :jdk. This has been removed in 8176838. Which target should we run now to get the same or similar set of tests? Best regards, Goetz.
http://download.java.net/openjdk/testresults/10/docs/howtoruntests.html documents that Oracle seems to use :jdk_stable for running the jdk JTreg tests. Regards, Volker On Fri, Nov 24, 2017 at 9:46 AM, Lindenmaier, Goetz <goetz.lindenmaier@sap.com> wrote:
Hi,
we used to run test target :jdk. This has been removed in 8176838.
Which target should we run now to get the same or similar set of tests?
Best regards, Goetz.
HI Volker, this might be what Oracle is running, but it is not the same as the target jdk. E.g., jdk used to include jdk_awt, which is not included by jdk_stable. Also, that page is outdated, it talks about tests in jdk/test etc, while these directories don't exist any more. Best regards, Goez.
-----Original Message----- From: Volker Simonis [mailto:volker.simonis@gmail.com] Sent: Freitag, 24. November 2017 10:38 To: Lindenmaier, Goetz <goetz.lindenmaier@sap.com> Cc: alexandre.iline@oracle.com; core-libs-dev@openjdk.java.net Subject: Re: Which test groups to run instead of :jdk (8176838)
http://download.java.net/openjdk/testresults/10/docs/howtoruntests.html documents that Oracle seems to use :jdk_stable for running the jdk JTreg tests.
Regards, Volker
On Fri, Nov 24, 2017 at 9:46 AM, Lindenmaier, Goetz <goetz.lindenmaier@sap.com> wrote:
Hi,
we used to run test target :jdk. This has been removed in 8176838.
Which target should we run now to get the same or similar set of tests?
Best regards, Goetz.
On Fri, Nov 24, 2017 at 11:02 AM, Lindenmaier, Goetz <goetz.lindenmaier@sap.com> wrote:
HI Volker,
this might be what Oracle is running, but it is not the same as the target jdk.
E.g., jdk used to include jdk_awt, which is not included by jdk_stable.
Also, that page is outdated, it talks about tests in jdk/test etc, while these directories don't exist any more.
I know and I've already reported it. Rory promised to fix it soon :)
Best regards, Goez.
-----Original Message----- From: Volker Simonis [mailto:volker.simonis@gmail.com] Sent: Freitag, 24. November 2017 10:38 To: Lindenmaier, Goetz <goetz.lindenmaier@sap.com> Cc: alexandre.iline@oracle.com; core-libs-dev@openjdk.java.net Subject: Re: Which test groups to run instead of :jdk (8176838)
http://download.java.net/openjdk/testresults/10/docs/howtoruntests.html documents that Oracle seems to use :jdk_stable for running the jdk JTreg tests.
Regards, Volker
On Fri, Nov 24, 2017 at 9:46 AM, Lindenmaier, Goetz <goetz.lindenmaier@sap.com> wrote:
Hi,
we used to run test target :jdk. This has been removed in 8176838.
Which target should we run now to get the same or similar set of tests?
Best regards, Goetz.
Hi, Goetz. :jdk, when created, was supposed to include tests which could be run by full JDK, which is, well, all the tests. Over the time there could have been new tests added which were not included in the :jdk group. In fact, I have just now rolled the repository back to before the 8176838 change and checked test count in :jdk test group vs. full test suite. $jtreg … -l test/jdk/:jdk … Tests found: 8,563 $jtreg … -l test/jdk … Tests found: 8,583 The difference consists in these tests:
native_sanity/simplenativelauncher/ProgramTest.java native_sanity/simplenativelib2/NativeLib.java native_sanity/simplenativelib/NativeLib.java org/omg/CORBA/OrbPropertiesTest.java sanity/client/SwingSet/src/ButtonDemoScreenshotTest.java sanity/client/SwingSet/src/ButtonDemoTest.java sanity/client/SwingSet/src/ComboBoxDemoTest.java sanity/client/SwingSet/src/DialogDemoTest.java sanity/client/SwingSet/src/ListDemoTest.java sanity/client/SwingSet/src/OptionPaneDemoTest.java sanity/client/SwingSet/src/ProgressBarDemoTest.java sanity/client/SwingSet/src/ScrollPaneDemoTest.java sanity/client/SwingSet/src/SliderDemoTest.java sanity/client/SwingSet/src/SpinnerDemoTest.java sanity/client/SwingSet/src/SplitPaneDemoTest.java sanity/client/SwingSet/src/TabbedPaneDemoTest.java sanity/client/SwingSet/src/TextFieldDemoTest.java sanity/client/SwingSet/src/ToggleButtonDemoTest.java sanity/client/SwingSet/src/TreeDemoTest.java sanity/client/SwingSet/src/WindowDemoTest.java
Shura
On Nov 24, 2017, at 12:46 AM, Lindenmaier, Goetz <goetz.lindenmaier@sap.com> wrote:
Hi,
we used to run test target :jdk. This has been removed in 8176838.
Which target should we run now to get the same or similar set of tests?
Best regards, Goetz.
Hi Shura, thanks for your advice! So we'll run all of them. The number of additional tests is small enough to handle in case they fail. Do you mind if I put this advice into a comment in the bug? Best regards, Goetz.
-----Original Message----- From: Alexandre (Shura) Iline [mailto:alexandre.iline@oracle.com] Sent: Montag, 27. November 2017 22:56 To: Lindenmaier, Goetz <goetz.lindenmaier@sap.com> Cc: core-libs-dev@openjdk.java.net Subject: Re: Which test groups to run instead of :jdk (8176838)
Hi, Goetz.
:jdk, when created, was supposed to include tests which could be run by full JDK, which is, well, all the tests. Over the time there could have been new tests added which were not included in the :jdk group.
In fact, I have just now rolled the repository back to before the 8176838 change and checked test count in :jdk test group vs. full test suite.
$jtreg … -l test/jdk/:jdk … Tests found: 8,563 $jtreg … -l test/jdk … Tests found: 8,583
The difference consists in these tests:
native_sanity/simplenativelauncher/ProgramTest.java native_sanity/simplenativelib2/NativeLib.java native_sanity/simplenativelib/NativeLib.java org/omg/CORBA/OrbPropertiesTest.java sanity/client/SwingSet/src/ButtonDemoScreenshotTest.java sanity/client/SwingSet/src/ButtonDemoTest.java sanity/client/SwingSet/src/ComboBoxDemoTest.java sanity/client/SwingSet/src/DialogDemoTest.java sanity/client/SwingSet/src/ListDemoTest.java sanity/client/SwingSet/src/OptionPaneDemoTest.java sanity/client/SwingSet/src/ProgressBarDemoTest.java sanity/client/SwingSet/src/ScrollPaneDemoTest.java sanity/client/SwingSet/src/SliderDemoTest.java sanity/client/SwingSet/src/SpinnerDemoTest.java sanity/client/SwingSet/src/SplitPaneDemoTest.java sanity/client/SwingSet/src/TabbedPaneDemoTest.java sanity/client/SwingSet/src/TextFieldDemoTest.java sanity/client/SwingSet/src/ToggleButtonDemoTest.java sanity/client/SwingSet/src/TreeDemoTest.java sanity/client/SwingSet/src/WindowDemoTest.java
Shura
On Nov 24, 2017, at 12:46 AM, Lindenmaier, Goetz <goetz.lindenmaier@sap.com> wrote:
Hi,
we used to run test target :jdk. This has been removed in 8176838.
Which target should we run now to get the same or similar set of tests?
Best regards, Goetz.
On Nov 27, 2017, at 11:56 PM, Lindenmaier, Goetz <goetz.lindenmaier@sap.com> wrote:
Hi Shura,
thanks for your advice! So we'll run all of them. The number of additional tests is small enough to handle in case they fail.
Do you mind if I put this advice into a comment in the bug?
I would appreciate it! Thanks you. Shura
Best regards, Goetz.
-----Original Message----- From: Alexandre (Shura) Iline [mailto:alexandre.iline@oracle.com] Sent: Montag, 27. November 2017 22:56 To: Lindenmaier, Goetz <goetz.lindenmaier@sap.com> Cc: core-libs-dev@openjdk.java.net Subject: Re: Which test groups to run instead of :jdk (8176838)
Hi, Goetz.
:jdk, when created, was supposed to include tests which could be run by full JDK, which is, well, all the tests. Over the time there could have been new tests added which were not included in the :jdk group.
In fact, I have just now rolled the repository back to before the 8176838 change and checked test count in :jdk test group vs. full test suite.
$jtreg … -l test/jdk/:jdk … Tests found: 8,563 $jtreg … -l test/jdk … Tests found: 8,583
The difference consists in these tests:
native_sanity/simplenativelauncher/ProgramTest.java native_sanity/simplenativelib2/NativeLib.java native_sanity/simplenativelib/NativeLib.java org/omg/CORBA/OrbPropertiesTest.java sanity/client/SwingSet/src/ButtonDemoScreenshotTest.java sanity/client/SwingSet/src/ButtonDemoTest.java sanity/client/SwingSet/src/ComboBoxDemoTest.java sanity/client/SwingSet/src/DialogDemoTest.java sanity/client/SwingSet/src/ListDemoTest.java sanity/client/SwingSet/src/OptionPaneDemoTest.java sanity/client/SwingSet/src/ProgressBarDemoTest.java sanity/client/SwingSet/src/ScrollPaneDemoTest.java sanity/client/SwingSet/src/SliderDemoTest.java sanity/client/SwingSet/src/SpinnerDemoTest.java sanity/client/SwingSet/src/SplitPaneDemoTest.java sanity/client/SwingSet/src/TabbedPaneDemoTest.java sanity/client/SwingSet/src/TextFieldDemoTest.java sanity/client/SwingSet/src/ToggleButtonDemoTest.java sanity/client/SwingSet/src/TreeDemoTest.java sanity/client/SwingSet/src/WindowDemoTest.java
Shura
On Nov 24, 2017, at 12:46 AM, Lindenmaier, Goetz <goetz.lindenmaier@sap.com> wrote:
Hi,
we used to run test target :jdk. This has been removed in 8176838.
Which target should we run now to get the same or similar set of tests?
Best regards, Goetz.
participants (3)
-
Alexandre (Shura) Iline
-
Lindenmaier, Goetz
-
Volker Simonis