Reduce loop count of pipeline test

Make the test run faster
This commit is contained in:
ridiculousfish 2019-04-07 15:00:13 -07:00
parent f5bb8639d6
commit 35b3f7fee8

View file

@ -6,7 +6,7 @@ send_line "function echo_wrap ; /bin/echo $argv ; sleep 0.1; ; end"
expect_prompt
set timeout 10
for {set x 0} {$x<15} {incr x} {
for {set x 0} {$x<5} {incr x} {
send_line "echo_wrap 1 2 3 4 | $fish_test_helper become_foreground_then_print_stderr ; or exit 1"
expect_prompt "become_foreground_then_print_stderr done" {} unmatched { puts stderr "fish_test_helper become_foreground_then_print_stderr failed"}
}
@ -17,7 +17,7 @@ expect_prompt "jobs: There are no jobs" {} unmatched { puts stderr "Should be no
send_line "function inner ; command true ; end; function outer; inner; end"
expect_prompt
for {set x 0} {$x<15} {incr x} {
for {set x 0} {$x<5} {incr x} {
send_line "outer | $fish_test_helper become_foreground_then_print_stderr ; or exit 1"
expect_prompt "become_foreground_then_print_stderr done" {} unmatched { puts stderr "fish_test_helper become_foreground_then_print_stderr failed"}
}