test/jdk/jdk/jfr/api/consumer/streaming/TestRepositoryMigration.java
branchJEP-349-branch
changeset 58271 e47423f1318b
parent 58076 ca625d28c580
--- a/test/jdk/jdk/jfr/api/consumer/streaming/TestRepositoryMigration.java	Sun Sep 22 17:31:57 2019 +0200
+++ b/test/jdk/jdk/jfr/api/consumer/streaming/TestRepositoryMigration.java	Mon Sep 23 09:16:05 2019 -0700
@@ -68,6 +68,8 @@
                 }
             });
             es.startAsync();
+            System.out.println("Started es.startAsync()");
+
             try (Recording r = new Recording()) {
                 r.setFlushInterval(Duration.ofSeconds(1));
                 r.start();
@@ -76,6 +78,7 @@
                 e1.id = 1;
                 e1.commit();
                 event1.await();
+                System.out.println("Passed the event1.await()");
                 JcmdHelper.jcmd("JFR.configure", "repositorypath=" + newRepository.toAbsolutePath());
                 // Chunk in new repository
                 MigrationEvent e2 = new MigrationEvent();
@@ -83,6 +86,7 @@
                 e2.commit();
                 r.stop();
                 event2.await();
+                System.out.println("Passed the event2.await()");
                 // Verify that it happened in new repository
                 if (!Files.exists(newRepository)) {
                     throw new AssertionError("Could not find repository " + newRepository);