# HG changeset patch # User gziemski # Date 1390344310 21600 # Node ID 50bb249de8896f8c7fb3eeba9ce5eaeb7547bf35 # Parent 4c241e42a3e478e31795c21ea5b296759ac4b0eb 7015395: [TESTBUG] runtime/6626217/Test6626217.sh fails if compilation happens fast enough for timestamps to be equal. Summary: Insert 2 second sleep between copying of the src files and the compilation, to make sure the timestamps of *.class files are in the future of *.java files. Reviewed-by: coleenp, fparain diff -r 4c241e42a3e4 -r 50bb249de889 test/runtime/6626217/Test6626217.sh --- a/test/runtime/6626217/Test6626217.sh Mon Jan 27 10:57:52 2014 +0100 +++ b/test/runtime/6626217/Test6626217.sh Tue Jan 21 16:45:10 2014 -0600 @@ -48,6 +48,11 @@ # A Clean Compile: this line will probably fail within jtreg as have a clean dir: ${RM} -f *.class *.impl many_loader.java +# Make sure that the compilation steps occurs in the future as not to allow fast systems +# to copy and compile bug_21227.java so fast as to make the class and java have the same +# time stamp, which later on would make the compilation step of many_loader.java fail +sleep 2 + # Compile all the usual suspects, including the default 'many_loader' ${CP} many_loader1.java.foo many_loader.java ${JAVAC} ${TESTJAVACOPTS} -source 1.4 -target 1.4 -Xlint *.java