@@ -707,13 +707,11 @@ private static final class HelloNote extends ConsoleNote<Run<?, ?>> {
707
707
@ Issue ("JENKINS-28822" )
708
708
@ Test public void interruptingAbortsBuild () throws Exception {
709
709
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
713
711
p .setDefinition (new CpsFlowDefinition ("node {\n " +
714
712
" timeout(time: 1, unit: 'SECONDS') {" +
715
713
(Functions .isWindows ()
716
- ? "bat 'ping -n " + sleepTime + " 127.0.0.1 >nul'\n "
714
+ ? "bat 'ping -n 19 127.0.0.1 >nul'\n "
717
715
: "sh 'sleep 5'\n " ) +
718
716
" }" +
719
717
"}" , true ));
@@ -727,10 +725,11 @@ private static final class HelloNote extends ConsoleNote<Run<?, ?>> {
727
725
@ Issue ("JENKINS-28822" )
728
726
@ Test public void interruptingAbortsBuildEvenWithReturnStatus () throws Exception {
729
727
WorkflowJob p = j .jenkins .createProject (WorkflowJob .class , "p" );
728
+ // Test fails unexpectedly on ci.jenkins.io Windows agents with fewer pings
730
729
p .setDefinition (new CpsFlowDefinition ("node() {\n " +
731
730
" timeout(time: 1, unit: 'SECONDS') {\n " +
732
731
(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 "
734
733
: "sh(returnStatus: true, script: 'sleep 5')\n " ) +
735
734
" }\n " +
736
735
"}" , true ));
0 commit comments