test/hotspot/jtreg/runtime/appcds/ClassPathAttr.java
changeset 48979 514c73a1955b
parent 48469 7312ae4465d6
child 51990 6003e034cdd8
--- a/test/hotspot/jtreg/runtime/appcds/ClassPathAttr.java	Thu Feb 15 09:22:25 2018 -0800
+++ b/test/hotspot/jtreg/runtime/appcds/ClassPathAttr.java	Wed Feb 14 07:08:25 2018 -0800
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2014, 2017, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2014, 2018, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -68,29 +68,30 @@
                                                           "CpAttr4",
                                                           "CpAttr5"));
 
-      OutputAnalyzer output = TestCommon.execCommon(
+      TestCommon.run(
           "-cp", cp,
-          "CpAttr1");
-      TestCommon.checkExec(output);
+          "CpAttr1")
+        .assertNormalExit();
 
       // Logging test for class+path.
-      output = TestCommon.execCommon(
+      TestCommon.run(
           "-Xlog:class+path",
           "-cp", cp,
-          "CpAttr1");
-      if (!TestCommon.isUnableToMap(output)){
-        output.shouldMatch("checking shared classpath entry: .*cpattr2.jar");
-        output.shouldMatch("checking shared classpath entry: .*cpattr3.jar");
-      }
+          "CpAttr1")
+        .assertNormalExit(output -> {
+            output.shouldMatch("checking shared classpath entry: .*cpattr2.jar");
+            output.shouldMatch("checking shared classpath entry: .*cpattr3.jar");
+          });
+
       //  Make sure aliased TraceClassPaths still works
-      output = TestCommon.execCommon(
+      TestCommon.run(
           "-XX:+TraceClassPaths",
           "-cp", cp,
-          "CpAttr1");
-      if (!TestCommon.isUnableToMap(output)){
-        output.shouldMatch("checking shared classpath entry: .*cpattr2.jar");
-        output.shouldMatch("checking shared classpath entry: .*cpattr3.jar");
-      }
+          "CpAttr1")
+        .assertNormalExit(output -> {
+            output.shouldMatch("checking shared classpath entry: .*cpattr2.jar");
+            output.shouldMatch("checking shared classpath entry: .*cpattr3.jar");
+          });
     }
   }