Skip to content

Commit ad1ff27

Browse files
author
Lance Andersen
committedDec 2, 2021
8277422: tools/jar/JarEntryTime.java fails with modified time mismatch
Reviewed-by: joehw, msheppar, naoto
1 parent 7c4ef3a commit ad1ff27

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed
 

‎test/jdk/tools/jar/JarEntryTime.java

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
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.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -23,14 +23,15 @@
2323

2424
/**
2525
* @test
26-
* @bug 4225317 6969651
26+
* @bug 4225317 6969651 8277422
2727
* @modules jdk.jartool
2828
* @summary Check extracted files have date as per those in the .jar file
2929
*/
3030

3131
import java.io.File;
3232
import java.io.PrintWriter;
3333
import java.nio.file.attribute.FileTime;
34+
import java.time.ZoneId;
3435
import java.util.Date;
3536
import java.util.TimeZone;
3637
import java.util.spi.ToolProvider;
@@ -93,6 +94,14 @@ public static void realMain(String[] args) throws Throwable {
9394
jarFile.delete();
9495
testFile.delete();
9596

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+
96105
/* Create a directory structure
97106
* outer/
98107
* inner/

5 commit comments

Comments
 (5)

openjdk-notifier[bot] commented on Dec 2, 2021

@openjdk-notifier[bot]

GoeLin commented on Mar 14, 2022

@GoeLin
Member

/backport jdk17u-dev

openjdk[bot] commented on Mar 14, 2022

@openjdk[bot]

@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:

Hi all,

This pull request contains a backport of commit ad1ff27b from the openjdk/jdk repository.

The commit being backported was authored by Lance Andersen on 2 Dec 2021 and was reviewed by Joe Wang, Mark Sheppard and Naoto Sato.

Thanks!

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:

$ git fetch https://github.com/openjdk-bots/jdk17u-dev GoeLin-backport-ad1ff27b:GoeLin-backport-ad1ff27b
$ git checkout GoeLin-backport-ad1ff27b
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk17u-dev GoeLin-backport-ad1ff27b

GoeLin commented on Mar 17, 2022

@GoeLin
Member

/backport jdk11u-dev

openjdk[bot] commented on Mar 17, 2022

@openjdk[bot]

@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:

Hi all,

This pull request contains a backport of commit ad1ff27b from the openjdk/jdk repository.

The commit being backported was authored by Lance Andersen on 2 Dec 2021 and was reviewed by Joe Wang, Mark Sheppard and Naoto Sato.

Thanks!

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:

$ git fetch https://github.com/openjdk-bots/jdk11u-dev GoeLin-backport-ad1ff27b:GoeLin-backport-ad1ff27b
$ git checkout GoeLin-backport-ad1ff27b
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk11u-dev GoeLin-backport-ad1ff27b
Please sign in to comment.