test/runtime/8233197/T.java

Fri, 12 Jun 2020 02:59:56 +0100

author
jbachorik
date
Fri, 12 Jun 2020 02:59:56 +0100
changeset 9925
30fb8c8cceb9
permissions
-rw-r--r--

8233197: Invert JvmtiExport::post_vm_initialized() and Jfr:on_vm_start() start-up order for correct option parsing
8246703: [TESTBUG] Add test for JDK-8233197
Reviewed-by: aph, adinn, neugens

     1 public class T
     2 {
     3   public static void main(String[] args) throws Exception
     4   {
     5     for (int i = 0; i < 50; i++) {
     6       System.out.print("+");
     7       Thread.sleep(1);
     8     }
     9     System.out.println();
    10   }
    11 }

mercurial