
Summary: lit test `shtest-format.py` fails on AIX because one of the subtest of shtest-format requires the tool `[` to be installed under the system PATH. For AIX, `[` is only available as a shell builtin and does not present as an executable file under PATH. Hence, split the original shtest-format into two separate test files and added AIX as UNSUPPORTED for the test using `[` . Reviewers: daltenty, hubert.reinterpretcast Reviewed By: hubert.reinterpretcast Subscribers: delcypher, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D82100
7 lines
320 B
Plaintext
7 lines
320 B
Plaintext
# Check that we route argv[0] as it was written, instead of the resolved
|
|
# path. This is important for some tools, in particular '[' which at least on OS
|
|
# X only recognizes that it is in '['-mode when its argv[0] is exactly
|
|
# '['. Otherwise it will refuse to accept the trailing closing bracket.
|
|
#
|
|
# RUN: [ "A" = "A" ]
|