mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
cf0bbc5cd4
Summary: rL257221 attempted to run lit's own test suite continuously, but that commit was reverted because lit's test suite does not pass on Windows. Because lit's tests do not run continuously, they often regress. In order to un-revert rL257221, mark lit tests that fail as XFAIL for Windows platforms. Test Plan: On a Windows development environment, follow the instructions in utils/lit/README.txt to run lit's test suite: ``` utils/lit/lit.py \ --path /path/to/your/llvm/build/bin \ utils/lit/tests ``` Verify that the test suite is run and a successful exit code is returned. Reviewers: mgorny, rnk, delcypher, beanz Reviewed By: rnk Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D35879 llvm-svn: 309123
37 lines
1.0 KiB
Python
37 lines
1.0 KiB
Python
# Check the internal shell handling component of the ShTest format.
|
|
#
|
|
# PR33940
|
|
# XFAIL: windows
|
|
#
|
|
# 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)
|