mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
45d8260ac8
- This will cause lit to automatically include the first 1K of data in redirected output files when a command fails (previously if the command failed, but the main point of the test was, say, a `FileCheck` later on, then the log wasn't helpful in showing why the command failed). llvm-svn: 272021
34 lines
997 B
Python
34 lines
997 B
Python
# Check the internal shell handling component of the ShTest format.
|
|
#
|
|
# RUN: not %{lit} -j 1 -v %{inputs}/shtest-shell > %t.out
|
|
# RUN: FileCheck --input-file %t.out %s
|
|
#
|
|
# END.
|
|
|
|
# CHECK: -- Testing:
|
|
|
|
# CHECK: FAIL: shtest-shell :: error-0.txt
|
|
# CHECK: *** TEST 'shtest-shell :: error-0.txt' FAILED ***
|
|
# CHECK: $ "not-a-real-command"
|
|
# CHECK: # command stderr:
|
|
# CHECK: 'not-a-real-command': command not found
|
|
# CHECK: error: command failed with exit status: 127
|
|
# CHECK: ***
|
|
|
|
# FIXME: The output here sucks.
|
|
#
|
|
# CHECK: FAIL: shtest-shell :: error-1.txt
|
|
# CHECK: *** TEST 'shtest-shell :: error-1.txt' FAILED ***
|
|
# CHECK: shell parser error on: 'echo "missing quote'
|
|
# CHECK: ***
|
|
|
|
# CHECK: FAIL: shtest-shell :: error-2.txt
|
|
# CHECK: *** TEST 'shtest-shell :: error-2.txt' FAILED ***
|
|
# CHECK: Unsupported redirect:
|
|
# CHECK: ***
|
|
|
|
# CHECK: PASS: shtest-shell :: redirects.txt
|
|
# CHECK: PASS: shtest-shell :: sequencing-0.txt
|
|
# CHECK: XFAIL: shtest-shell :: sequencing-1.txt
|
|
# CHECK: Failing Tests (3)
|