test/jdk/tools/jpackage/linux/ReleaseTest.java
branchJDK-8200758-branch
changeset 58301 e0efb29609bd
parent 58113 885b0543f6e4
child 58416 f09bf58c1f17
--- a/test/jdk/tools/jpackage/linux/ReleaseTest.java	Mon Sep 16 19:24:32 2019 -0400
+++ b/test/jdk/tools/jpackage/linux/ReleaseTest.java	Tue Sep 24 13:41:16 2019 -0400
@@ -21,8 +21,8 @@
  * questions.
  */
 
+import jdk.jpackage.test.PackageType;
 import jdk.jpackage.test.PackageTest;
-import jdk.jpackage.test.PackageType;
 import jdk.jpackage.test.Test;
 
 
@@ -49,23 +49,25 @@
  */
 public class ReleaseTest {
 
-    public static void main(String[] args) throws Exception {
+    public static void main(String[] args) {
         final String RELEASE = "Rc3";
 
-        new PackageTest()
-        .forTypes(PackageType.LINUX)
-        .configureHelloApp()
-        .addInitializer(cmd -> {
-            cmd.addArguments("--linux-app-release", RELEASE);
-        })
-        .forTypes(PackageType.LINUX_RPM)
-        .addBundlePropertyVerifier("Release", RELEASE)
-        .forTypes(PackageType.LINUX_DEB)
-        .addBundlePropertyVerifier("Version", (propName, propValue) -> {
-            Test.assertTrue(propValue.endsWith("-" + RELEASE),
-                    String.format("Check value of %s property [%s] ends with %s",
-                            propName, propValue, RELEASE));
-        })
-        .run();
+        Test.run(args, () -> {
+            new PackageTest()
+            .forTypes(PackageType.LINUX)
+            .configureHelloApp()
+            .addInitializer(cmd -> {
+                cmd.addArguments("--linux-app-release", RELEASE);
+            })
+            .forTypes(PackageType.LINUX_RPM)
+            .addBundlePropertyVerifier("Release", RELEASE)
+            .forTypes(PackageType.LINUX_DEB)
+            .addBundlePropertyVerifier("Version", (propName, propValue) -> {
+                Test.assertTrue(propValue.endsWith("-" + RELEASE),
+                        String.format("Check value of %s property [%s] ends with %s",
+                                propName, propValue, RELEASE));
+            })
+            .run();
+        });
     }
 }