File tree 1 file changed +11
-2
lines changed
1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2006, 2016 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2006, 2021 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
23
23
24
24
/**
25
25
* @test
26
- * @bug 4225317 6969651
26
+ * @bug 4225317 6969651 8277422
27
27
* @modules jdk.jartool
28
28
* @summary Check extracted files have date as per those in the .jar file
29
29
*/
30
30
31
31
import java .io .File ;
32
32
import java .io .PrintWriter ;
33
33
import java .nio .file .attribute .FileTime ;
34
+ import java .time .ZoneId ;
34
35
import java .util .Date ;
35
36
import java .util .TimeZone ;
36
37
import java .util .spi .ToolProvider ;
@@ -93,6 +94,14 @@ public static void realMain(String[] args) throws Throwable {
93
94
jarFile .delete ();
94
95
testFile .delete ();
95
96
97
+ var date = new Date ();
98
+ var defZone = ZoneId .systemDefault ();
99
+ if (defZone .getRules ().getTransition (
100
+ date .toInstant ().atZone (defZone ).toLocalDateTime ()) != null ) {
101
+ System .out .println ("At the offset transition. JarEntryTime test skipped." );
102
+ return ;
103
+ }
104
+
96
105
/* Create a directory structure
97
106
* outer/
98
107
* inner/
You can’t perform that action at this time.
5 commit comments
openjdk-notifier[bot] commentedon Dec 2, 2021
Review
Issues
GoeLin commentedon Mar 14, 2022
/backport jdk17u-dev
openjdk[bot] commentedon Mar 14, 2022
@GoeLin the backport was successfully created on the branch GoeLin-backport-ad1ff27b in my personal fork of openjdk/jdk17u-dev. To create a pull request with this backport targeting openjdk/jdk17u-dev:master, just click the following link:
➡️ Create pull request
The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:
If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk17u-dev:
GoeLin commentedon Mar 17, 2022
/backport jdk11u-dev
openjdk[bot] commentedon Mar 17, 2022
@GoeLin the backport was successfully created on the branch GoeLin-backport-ad1ff27b in my personal fork of openjdk/jdk11u-dev. To create a pull request with this backport targeting openjdk/jdk11u-dev:master, just click the following link:
➡️ Create pull request
The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:
If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk11u-dev: