DaanHoogland commented on code in PR #10162: URL: https://github.com/apache/cloudstack/pull/10162#discussion_r2140777336
########## utils/src/test/java/org/apache/cloudstack/utils/process/ProcessTest.java: ########## @@ -39,17 +39,20 @@ public class ProcessTest { @Test public void testProcessRunner() { - ProcessResult result = RUNNER.executeCommands(Arrays.asList("sleep", "0")); + // Replace "sleep" with the cross-platform "timeout" command + ProcessResult result = RUNNER.executeCommands(Arrays.asList("timeout", "/t", "1")); Assert.assertEquals(result.getReturnCode(), 0); Review Comment: @iishitahere , this test fails at this assert. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org