test/hotspot/jtreg/containers/docker/EventGeneratorLoop.java
changeset 58550 e98509cb3867
parent 57954 fd09c637dedb
child 58679 9c3209ff7550
--- a/test/hotspot/jtreg/containers/docker/EventGeneratorLoop.java	Fri Oct 11 09:43:18 2019 +0200
+++ b/test/hotspot/jtreg/containers/docker/EventGeneratorLoop.java	Fri Oct 11 09:55:35 2019 +0200
@@ -45,7 +45,7 @@
         }
         int howLong = Integer.parseInt(args[0]);
 
-        System.out.println(MAIN_METHOD_STARTED);
+        System.out.println(MAIN_METHOD_STARTED + ", argument is " + howLong);
 
         for (int i=0; i < howLong; i++) {
             SimpleEvent ev = new SimpleEvent();
@@ -56,6 +56,8 @@
             try { Thread.sleep(1000); } catch (InterruptedException e) {}
             System.out.print(".");
         }
+
+        System.out.println("EventGeneratorLoop is coming to an end");
     }
 
 }