diff options
author | Michal Gorny <mgorny@gentoo.org> | 2016-10-12 21:40:08 +0000 |
---|---|---|
committer | Michal Gorny <mgorny@gentoo.org> | 2016-10-12 21:40:08 +0000 |
commit | 1d62f4ab15bc54fba45f37f394ace058ffdf4a53 (patch) | |
tree | 457c8fd363252830c93560ea456473c8c20e425e /llvm/utils/lit/tests | |
parent | 090eebb69183f0f174153ee0211997bb9abb2d63 (diff) | |
download | bcm5719-llvm-1d62f4ab15bc54fba45f37f394ace058ffdf4a53.tar.gz bcm5719-llvm-1d62f4ab15bc54fba45f37f394ace058ffdf4a53.zip |
[lit] Fix test shtest-timeout.py for modern output
Update the CHECK lines in the shtest-timeout.py lit test to account for
the current output. The output has been changed in r271610 without
adjusting the tests.
Differential Revision: https://reviews.llvm.org/D25236
llvm-svn: 284057
Diffstat (limited to 'llvm/utils/lit/tests')
-rw-r--r-- | llvm/utils/lit/tests/shtest-timeout.py | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/llvm/utils/lit/tests/shtest-timeout.py b/llvm/utils/lit/tests/shtest-timeout.py index e6b2947a4f7..87f431de250 100644 --- a/llvm/utils/lit/tests/shtest-timeout.py +++ b/llvm/utils/lit/tests/shtest-timeout.py @@ -22,27 +22,26 @@ # RUN: FileCheck --check-prefix=CHECK-OUT-COMMON < %t.intsh.out %s # RUN: FileCheck --check-prefix=CHECK-INTSH-OUT < %t.intsh.out %s # RUN: FileCheck --check-prefix=CHECK-INTSH-ERR < %t.intsh.err %s -# + # CHECK-INTSH-OUT: TIMEOUT: per_test_timeout :: infinite_loop.py -# CHECK-INTSH-OUT: Command 0 Reached Timeout: True -# CHECK-INTSH-OUT: Command 0 Output: +# CHECK-INTSH-OUT: command output: # CHECK-INTSH-OUT-NEXT: Running infinite loop - +# CHECK-INTSH-OUT: command reached timeout: True # CHECK-INTSH-OUT: TIMEOUT: per_test_timeout :: quick_then_slow.py # CHECK-INTSH-OUT: Timeout: Reached timeout of 1 seconds # CHECK-INTSH-OUT: Command Output -# CHECK-INTSH-OUT: Command 0 Reached Timeout: False -# CHECK-INTSH-OUT: Command 0 Output: +# CHECK-INTSH-OUT: command output: # CHECK-INTSH-OUT-NEXT: Running in quick mode -# CHECK-INTSH-OUT: Command 1 Reached Timeout: True -# CHECK-INTSH-OUT: Command 1 Output: +# CHECK-INTSH-OUT: command reached timeout: False +# CHECK-INTSH-OUT: command output: # CHECK-INTSH-OUT-NEXT: Running in slow mode +# CHECK-INTSH-OUT: command reached timeout: True # CHECK-INTSH-OUT: TIMEOUT: per_test_timeout :: slow.py -# CHECK-INTSH-OUT: Command 0 Reached Timeout: True -# CHECK-INTSH-OUT: Command 0 Output: +# CHECK-INTSH-OUT: command output: # CHECK-INTSH-OUT-NEXT: Running slow program +# CHECK-INTSH-OUT: command reached timeout: True # CHECK-INTSH-ERR: Using internal shell |