-
Bug
-
Resolution: Fixed
-
P2
-
1.4.2, 5.0u15, 6, 6u22, 6u29, 7, 8
-
b01
-
x86, sparc
-
solaris, solaris_10, windows_2008, windows_vista
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2210926 | 5.0u32 | Eugene Drobitko | P3 | Closed | Fixed | b01 |
JDK-2210925 | 1.4.2_34 | Eugene Drobitko | P3 | Resolved | Fixed | b01 |
There are about 100+ test cases are failed automatically on Solaris Sun OS because of
arch.equals("amd64")
As we are testing Sustaining manual regression suite on SunOS with AMD architecture, please modify the following common code to consider arch.equals("amd64") a valid architecture for Sun OS:
**************************************************************************************
if (name.equals("SunOS")) {
if (arch.equals("sparc") || arch.equals("sparcv9")) { // SPARC 32+64
System.out.println("Test passed. This test is only for Windows");
return;
} else if (arch.equals("x86")) { // X86
System.out.println("Test passed. This test is only for Windows");
return;
} else {
throw new RuntimeException("unrecognized system:" + "os.arch == " + arch + " os.name == " + name);
****************************************************************************************
arch.equals("amd64")
As we are testing Sustaining manual regression suite on SunOS with AMD architecture, please modify the following common code to consider arch.equals("amd64") a valid architecture for Sun OS:
**************************************************************************************
if (name.equals("SunOS")) {
if (arch.equals("sparc") || arch.equals("sparcv9")) { // SPARC 32+64
System.out.println("Test passed. This test is only for Windows");
return;
} else if (arch.equals("x86")) { // X86
System.out.println("Test passed. This test is only for Windows");
return;
} else {
throw new RuntimeException("unrecognized system:" + "os.arch == " + arch + " os.name == " + name);
****************************************************************************************
- backported by
-
JDK-2210925 RFE: Adding os.arch ==amd64 in manual regression test cases
-
- Resolved
-
-
JDK-2210926 RFE: Adding os.arch ==amd64 in manual regression test cases
-
- Closed
-
- relates to
-
JDK-8024489 [TEST_BUG] Test4849111 failed as unrecognized system:os.arch == amd64 os.name == SunOS
-
- Closed
-