1 /*
   2  * @test
   3  * @key cte_test
   4  * @bug 4345157
   5  * @summary JDK 1.3.0 alters thread signal mask
   6  * @ignore 8055113
   7  * @compile Prog.java
   8  * @run shell Test4345157.sh
   9 */
  10 
  11 public class Prog
  12 {
  13     public static void main(String args[])
  14     {
  15         System.out.println("Java class invoked: " + args[0]);
  16         try {
  17             Prog.class.wait();
  18         } catch (Exception e) {}
  19     }
  20 }