changeset 45922:89ff0e7a94bd

Merge
author duke
date Thu, 24 Aug 2017 16:30:03 +0200
parents 886f599a54e6 ddc079e73172
children 0458967b997a
files
diffstat 2 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/.hgtags-top-repo	Thu Jul 20 18:17:13 2017 +0000
+++ b/.hgtags-top-repo	Thu Aug 24 16:30:03 2017 +0200
@@ -436,3 +436,4 @@
 84777531d994ef70163d35078ec9c4127f2eadb5 jdk-9+176
 a4371edb589c60db01142e45c317adb9ccbcb083 jdk-9+177
 a6c830ee8a6798b186730475e700027cdf4598aa jdk-10+15
+2fe66ca1e2b3c361f949de9cb2894661dc0a3fa2 jdk-10+16
--- a/test/lib/jdk/test/lib/util/FileUtils.java	Thu Jul 20 18:17:13 2017 +0000
+++ b/test/lib/jdk/test/lib/util/FileUtils.java	Thu Aug 24 16:30:03 2017 +0200
@@ -98,7 +98,7 @@
         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.");