RFR: JDK-8027612, , java/io/File/MaxPathLength.java fails intermittently in the clean-up stage

2013-11-01 Thread Dan Xu
Hi All, Please review a simple test fix. In the clean-up stage of MaxPathLength.java on windows platform, the delete operation may be interfered by anti-virus software or some Windows services, which will lead to the failure of recursive directory delete operations. In the change, the test wi

Re: RFR: JDK-8027612, , java/io/File/MaxPathLength.java fails intermittently in the clean-up stage

2013-11-01 Thread Chris Hegarty
The changes look ok to me Dan. I know I have used a similar technique elsewhere to handle this situation. A minor point, and others may have a different opinion but, I don't think the @bug tag needs to list this bug number, since it is not testing a product bug. It is a testcase bug only. But i

Re: RFR: JDK-8027612, , java/io/File/MaxPathLength.java fails intermittently in the clean-up stage

2013-11-01 Thread Dan Xu
Thanks for your review, Chris. I have removed the bug number in the latest one, http://cr.openjdk.java.net/~dxu/8027612/webrev.01/ -Dan On 11/01/2013 03:55 PM, Chris Hegarty wrote: The changes look ok to me Dan. I know I have used a sim