• Home
  • Raw
  • Download

Lines Matching full:timeout

3 # Test per test timeout using external shell
5 # RUN: %{inputs}/shtest-timeout/infinite_loop.py \
6 # RUN: %{inputs}/shtest-timeout/quick_then_slow.py \
7 # RUN: %{inputs}/shtest-timeout/short.py \
8 # RUN: %{inputs}/shtest-timeout/slow.py \
9 # RUN: -j 1 -v --debug --timeout 1 --param external=1 > %t.extsh.out 2> %t.extsh.err
15 # Test per test timeout using internal shell
17 # RUN: %{inputs}/shtest-timeout/infinite_loop.py \
18 # RUN: %{inputs}/shtest-timeout/quick_then_slow.py \
19 # RUN: %{inputs}/shtest-timeout/short.py \
20 # RUN: %{inputs}/shtest-timeout/slow.py \
21 # RUN: -j 1 -v --debug --timeout 1 --param external=0 > %t.intsh.out 2> %t.intsh.err
26 # CHECK-INTSH-OUT: TIMEOUT: per_test_timeout :: infinite_loop.py
27 # CHECK-INTSH-OUT: Command 0 Reached Timeout: True
32 # CHECK-INTSH-OUT: TIMEOUT: per_test_timeout :: quick_then_slow.py
33 # CHECK-INTSH-OUT: Timeout: Reached timeout of 1 seconds
35 # CHECK-INTSH-OUT: Command 0 Reached Timeout: False
38 # CHECK-INTSH-OUT: Command 1 Reached Timeout: True
42 # CHECK-INTSH-OUT: TIMEOUT: per_test_timeout :: slow.py
43 # CHECK-INTSH-OUT: Command 0 Reached Timeout: True
49 # Test per test timeout set via a config file rather than on the command line
51 # RUN: %{inputs}/shtest-timeout/infinite_loop.py \
52 # RUN: %{inputs}/shtest-timeout/quick_then_slow.py \
53 # RUN: %{inputs}/shtest-timeout/short.py \
54 # RUN: %{inputs}/shtest-timeout/slow.py \
62 # CHECK-OUT-COMMON: TIMEOUT: per_test_timeout :: infinite_loop.py
63 # CHECK-OUT-COMMON: Timeout: Reached timeout of 1 seconds
67 # CHECK-OUT-COMMON: TIMEOUT: per_test_timeout :: quick_then_slow.py
68 # CHECK-OUT-COMMON: Timeout: Reached timeout of 1 seconds
75 # CHECK-OUT-COMMON: TIMEOUT: per_test_timeout :: slow.py
76 # CHECK-OUT-COMMON: Timeout: Reached timeout of 1 seconds
83 # Test per test timeout via a config file and on the command line.
86 # RUN: %{inputs}/shtest-timeout/infinite_loop.py \
87 # RUN: %{inputs}/shtest-timeout/quick_then_slow.py \
88 # RUN: %{inputs}/shtest-timeout/short.py \
89 # RUN: %{inputs}/shtest-timeout/slow.py \
91 # RUN: --param set_timeout=1 --timeout=2 > %t.cmdover.out 2> %t.cmdover.err
95 # CHECK-CMDLINE-OVERRIDE-ERR: Forcing timeout to be 2 seconds
97 # CHECK-CMDLINE-OVERRIDE-OUT: TIMEOUT: per_test_timeout :: infinite_loop.py
98 # CHECK-CMDLINE-OVERRIDE-OUT: Timeout: Reached timeout of 2 seconds
102 # CHECK-CMDLINE-OVERRIDE-OUT: TIMEOUT: per_test_timeout :: quick_then_slow.py
103 # CHECK-CMDLINE-OVERRIDE-OUT: Timeout: Reached timeout of 2 seconds
110 # CHECK-CMDLINE-OVERRIDE-OUT: TIMEOUT: per_test_timeout :: slow.py
111 # CHECK-CMDLINE-OVERRIDE-OUT: Timeout: Reached timeout of 2 seconds