-
Bug
-
Resolution: Fixed
-
P4
-
6u21, 7, 8, 8u40, 9, 10, 11, 11.0.6.0.60-oracle, 13, 14
-
b25
-
generic, x86
-
generic, windows_xp
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8245242 | 11.0.9-oracle | Philip Race | P4 | Resolved | Fixed | b01 |
JDK-8246660 | 11.0.9 | Philip Race | P4 | Resolved | Fixed | b01 |
JDK-8258043 | openjdk8u292 | Jonathan Dowland | P4 | Resolved | Fixed | b01 |
JDK-8245244 | 8u271 | Philip Race | P4 | Resolved | Fixed | b01 |
JDK-8251786 | emb-8u271 | Philip Race | P4 | Resolved | Fixed | team |
JDK-2197451 | 7 | Valerii Potokov | P5 | Closed | Won't Fix |
JDK/JRE tested: 6u21b03(jdk-6u21-ea-bin-b03-windows-i586-22_apr_2010.exe)
OS/architecture: winxphome-sp3-x86
Reproducible: Always
Is it a platform specific regression: N
Is it a Regression:N
Steps to reproduce:
Case: java/awt/print/PageFormat/PDialogTest.java
PDialogTest.java
----------------------------------------------------------------start---------------------------------------------
/**
* @test 1.1
* @bug 4855801
* @summary Changing margins in the page format does not have any effect
* @run main/manual PDialogTest
*/
import java.awt.print.*;
import javax.print.attribute.*;
import javax.print.attribute.standard.*;
public class PDialogTest
{
public static void main(String[] args) {
PageFormat page=new PageFormat();
while(true){
page=java.awt.print.PrinterJob.getPrinterJob().pageDialog(page);
}
}
}
----------------------------------------------------------------end-------------------------------------------------
It has dead while loop, test should be updated. Not sure why we need that while clause.
- backported by
-
JDK-8245242 [TEST BUG]: java/awt/print/PageFormat/PDialogTest.java needs update by removing a infinite loop
- Resolved
-
JDK-8245244 [TEST BUG]: java/awt/print/PageFormat/PDialogTest.java needs update by removing a infinite loop
- Resolved
-
JDK-8246660 [TEST BUG]: java/awt/print/PageFormat/PDialogTest.java needs update by removing a infinite loop
- Resolved
-
JDK-8251786 [TEST BUG]: java/awt/print/PageFormat/PDialogTest.java needs update by removing a infinite loop
- Resolved
-
JDK-8258043 [TEST BUG]: java/awt/print/PageFormat/PDialogTest.java needs update by removing a infinite loop
- Resolved
-
JDK-2197451 [TEST BUG]: java/awt/print/PageFormat/PDialogTest.java needs update by removing a infinite loop
- Closed