diff --git a/contrib/platform/test/com/sun/jna/platform/mac/XAttrUtilTest.java b/contrib/platform/test/com/sun/jna/platform/mac/XAttrUtilTest.java index e3f3501e3e..81e1baf583 100644 --- a/contrib/platform/test/com/sun/jna/platform/mac/XAttrUtilTest.java +++ b/contrib/platform/test/com/sun/jna/platform/mac/XAttrUtilTest.java @@ -157,7 +157,7 @@ public void testReadAlignedCliTool() throws IOException { public void testWriteAlignedCliTool() throws IOException, InterruptedException { Process p = Runtime.getRuntime().exec(new String[] {"xattr", "-w", "JNA", "Java Native Access", testPath}); - assertTrue(p.waitFor(30, TimeUnit.SECONDS)); + assertTrue("Wait for CLI xattr call timed out", p.waitFor(60, TimeUnit.SECONDS)); String resultString = XAttrUtil.getXAttr(testPath, "JNA"); assertEquals("Java Native Access", resultString); }