From 556bc16ab236e4e41dd94fc5debc0096951df41d Mon Sep 17 00:00:00 2001 From: Tim Bell Date: Thu, 20 Jul 2017 18:17:12 +0000 Subject: [PATCH 1/2] Added tag jdk-10+16 for changeset 988bb4888e09 --- .hgtags-top-repo | 1 + 1 file changed, 1 insertion(+) diff --git a/.hgtags-top-repo b/.hgtags-top-repo index c5960376284..127576bce0c 100644 --- a/.hgtags-top-repo +++ b/.hgtags-top-repo @@ -436,3 +436,4 @@ d67a3f1f057f7e31e12f33ebe3667cb73d252268 jdk-10+13 84777531d994ef70163d35078ec9c4127f2eadb5 jdk-9+176 a4371edb589c60db01142e45c317adb9ccbcb083 jdk-9+177 a6c830ee8a6798b186730475e700027cdf4598aa jdk-10+15 +2fe66ca1e2b3c361f949de9cb2894661dc0a3fa2 jdk-10+16 From d362d3fe3a9f1290931146d7cc828fe29677b7b2 Mon Sep 17 00:00:00 2001 From: Andrey Nazarov Date: Tue, 25 Jul 2017 17:04:46 -0700 Subject: [PATCH 2/2] 8184961: jdk.test.lib.util.FileUtils.deleteFileWithRetry0 should wait for absence of a file Reviewed-by: bpb --- test/lib/jdk/test/lib/util/FileUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lib/jdk/test/lib/util/FileUtils.java b/test/lib/jdk/test/lib/util/FileUtils.java index 8bbaded9586..a5e17779061 100644 --- a/test/lib/jdk/test/lib/util/FileUtils.java +++ b/test/lib/jdk/test/lib/util/FileUtils.java @@ -98,7 +98,7 @@ public final class FileUtils { while (true) { try { Files.delete(path); - while (Files.exists(path)) { + while (!Files.notExists(path)) { times++; if (times > MAX_RETRY_DELETE_TIMES) { throw new IOException("File still exists after " + times + " waits.");