Open smlambert opened 10 months ago
Related: Top level issue at https://github.com/adoptium/infrastructure/issues/2662, and the orka issue at https://github.com/adoptium/infrastructure/issues/2536
Need to verify if this fails on the orka machines, and then decide what to do if it still fails on any of our existing statically provisiioned systems (e.g. macincloud)
Attempting re-run on the orka nodes at https://ci.adoptium.net/job/Grinder/11427/ but it fell foul of https://github.com/adoptium/infrastructure/issues/3814
Also testing on x64 at:
Honestly wondering if this is something specific to macos 10 at the moment. This reproducer shows that it is giving a "local" timezone (i.e. PST
if using the code below, or GMT
if you use Europe/London
) instead of a UTC offset:
import java.time.*;
import java.time.format.*;
import java.util.Locale;
public class utc
{
public static void main(String [] args)
{
var fmt = DateTimeFormatter.ofPattern("z", Locale.FRANCE);
var zdt = ZonedDateTime.of(2023, 3, 3, 0, 0, 0, 0, ZoneId.of("America/Los_Angeles"));
System.out.println("Expecting UTC\u221208:00, got "+fmt.format(zdt));
}
}
Noting that this is the same failure which has been seen in https://github.com/adoptium/infrastructure/issues/3658#issuecomment-2210967471 and the test has been excluded for Temurin runs. The notes in there also indicate that it's a test which has been removed from newer JDKs.
(Noting for historic reference that this test is NOT impacted by the TZ
setting in the environment)
@Haroon-Khel Is there a reason why the PR to exclude this was done on linux-all
and not macos too since it was seen there too in your issue?
iirc I excluded it on linux only as that was the platform I was running tests on. I think it should also be excluded on MacOS since it was agreed that the test itself does not handle timezones well
As mentioned in https://github.com/adoptium/aqa-tests/issues/4982#issuecomment-1894967658 and https://github.com/adoptium/aqa-tests/issues/4982#issuecomment-1903640265, java/time/test/java/time/format/TestUTCParse fails with the following error:
To make it easy for the infrastructure team to repeat and diagnose, please answer the following questions:
Test_
job on https://ci.adoptium.net which showed the failure https://ci.adoptium.net/job/Test_openjdk11_hs_extended.openjdk_aarch64_mac_testList_0/90/Any other details: see console output above