< prev index next >

test/jdk/tools/jpackage/macosx/base/SigningBase.java

Print this page

        

@@ -46,12 +46,11 @@
         List<String> result = new Executor()
                 .setExecutable("codesign")
                 .addArguments("--verify", "--deep", "--strict", "--verbose=2",
                         target.toString())
                 .saveOutput()
-                .execute()
-                .assertExitCodeIs(exitCode).getOutput();
+                .execute(exitCode).getOutput();
 
         return result;
     }
 
     private static void verifyCodesignResult(List<String> result, Path target,
< prev index next >