Skip to content

Commit b96b276

Browse files
committed
Use more pings in interruptingAbortsBuildEvenWithReturnStatus
1 parent f208ebc commit b96b276

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/test/java/org/jenkinsci/plugins/workflow/steps/durable_task/ShellStepTest.java

+4-5
Original file line numberDiff line numberDiff line change
@@ -707,13 +707,11 @@ private static final class HelloNote extends ConsoleNote<Run<?, ?>> {
707707
@Issue("JENKINS-28822")
708708
@Test public void interruptingAbortsBuild() throws Exception {
709709
WorkflowJob p = j.jenkins.createProject(WorkflowJob.class, "p");
710-
// Test fails unexpectedly on ci.jenkins.io Windows agents when watching
711-
// Use a longer timeout when watching and running on Windows
712-
int sleepTime = Functions.isWindows() ? 19 : 6;
710+
// Test fails unexpectedly on ci.jenkins.io Windows agents with fewer pings
713711
p.setDefinition(new CpsFlowDefinition("node {\n" +
714712
" timeout(time: 1, unit: 'SECONDS') {" +
715713
(Functions.isWindows()
716-
? "bat 'ping -n " + sleepTime + " 127.0.0.1 >nul'\n"
714+
? "bat 'ping -n 19 127.0.0.1 >nul'\n"
717715
: "sh 'sleep 5'\n") +
718716
" }" +
719717
"}", true));
@@ -727,10 +725,11 @@ private static final class HelloNote extends ConsoleNote<Run<?, ?>> {
727725
@Issue("JENKINS-28822")
728726
@Test public void interruptingAbortsBuildEvenWithReturnStatus() throws Exception {
729727
WorkflowJob p = j.jenkins.createProject(WorkflowJob.class, "p");
728+
// Test fails unexpectedly on ci.jenkins.io Windows agents with fewer pings
730729
p.setDefinition(new CpsFlowDefinition("node() {\n" +
731730
" timeout(time: 1, unit: 'SECONDS') {\n" +
732731
(Functions.isWindows()
733-
? "bat(returnStatus: true, script: 'ping -n 6 127.0.0.1 >nul')\n"
732+
? "bat(returnStatus: true, script: 'ping -n 19 127.0.0.1 >nul')\n"
734733
: "sh(returnStatus: true, script: 'sleep 5')\n") +
735734
" }\n" +
736735
"}", true));

0 commit comments

Comments
 (0)