mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
8fb00b74f1
On z/OS, the following error message is not matched correctly in lit tests. ``` EDC5129I No such file or directory. ``` This patch uses a lit config substitution to check for platform specific error messages. Reviewed By: muiez, jhenderson Differential Revision: https://reviews.llvm.org/D95246
14 lines
456 B
LLVM
14 lines
456 B
LLVM
;RUN: rm -rf %t && mkdir -p %t
|
|
;RUN: not llvm-ar r %t/test.a . 2>&1 | FileCheck -DMSG=%errc_EISDIR %s
|
|
;CHECK: .: [[MSG]]
|
|
|
|
;RUN: rm -f %t/test.a
|
|
;RUN: touch %t/a-very-long-file-name
|
|
;RUN: llvm-ar r %t/test.a %s %t/a-very-long-file-name
|
|
;RUN: llvm-ar r %t/test.a %t/a-very-long-file-name
|
|
;RUN: llvm-ar t %t/test.a | FileCheck -check-prefix=MEMBERS %s
|
|
;MEMBERS-NOT: /
|
|
;MEMBERS: directory.ll
|
|
;MEMBERS: a-very-long-file-name
|
|
;MEMBERS-NOT: a-very-long-file-name
|