This reverts commit 5af4ba2684.
The previous patch was missing the closing parenthesis `)` in the
`CHECK` statement in the `llvm/utils/lit/tests/shtest-glob.py` file:
`# CHECK: FAIL: shtest-glob :: glob-mkdir.txt ({{[^)]*}}`
This issue broke some build bots. This patch corrects the `CHECK`
statement by adding the closing parenthesis:
`# CHECK: FAIL: shtest-glob :: glob-mkdir.txt ({{[^)]*}})`
13 lines
398 B
Python
13 lines
398 B
Python
## Tests glob pattern handling in echo command.
|
|
|
|
# RUN: not %{lit} -a -v %{inputs}/shtest-glob \
|
|
# RUN: | FileCheck -dump-input=fail -match-full-lines %s
|
|
#
|
|
# END.
|
|
|
|
# CHECK: UNRESOLVED: shtest-glob :: glob-echo.txt ({{[^)]*}})
|
|
# CHECK: TypeError: string argument expected, got 'GlobItem'
|
|
|
|
# CHECK: FAIL: shtest-glob :: glob-mkdir.txt ({{[^)]*}})
|
|
# CHECK: # error: command failed with exit status: 1
|