mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
aadb0afb4a
It updates two error messages under `performOperation` in the file llvm-ar.cpp. Furthermore, it also updates tests that print out these error messages: `llvm/test/Object/ar-create.test` and `llvm/test/tools/llvm-ar/print.test`. Reviewed By: jhenderson, MaskRay Differential Revision: https://reviews.llvm.org/D80846
15 lines
476 B
Plaintext
15 lines
476 B
Plaintext
## Unsupported on windows as marking files "unreadable"
|
|
## is non-trivial on windows.
|
|
# UNSUPPORTED: system-windows
|
|
|
|
# RUN: rm -rf %t && mkdir -p %t
|
|
# RUN: echo file1 > %t/1.txt
|
|
|
|
## No Permission:
|
|
# RUN: llvm-ar rc %t/permission.b %t/1.txt
|
|
# RUN: chmod 100 %t/permission.b
|
|
# RUN: not llvm-ar p %t/permission.b 2>&1 | \
|
|
# RUN: FileCheck %s --check-prefix=NO-PERMISSION -DARCHIVE=%t/permission.b
|
|
|
|
# NO-PERMISSION: error: unable to open '[[ARCHIVE]]': {{[pP]}}ermission denied
|