I'm not sure what the history is here but this test passes on macOS today. It seems like we should unify these tests if they need to run cross platform. Reviewed By: #lld-macho, int3 Differential Revision: https://reviews.llvm.org/D113085
18 lines
554 B
Plaintext
18 lines
554 B
Plaintext
RUN: rm -rf %t1 %t2; mkdir -p %t1 %t2
|
|
|
|
RUN: %lld -v -dylib -o /dev/null -L%t1 -F%t2 2>&1 \
|
|
RUN: | FileCheck -DLDIR=%t1 -DFDIR=%t2 %s
|
|
CHECK: Library search paths:
|
|
CHECK-NEXT: [[LDIR]]
|
|
CHECK-NEXT: /usr/lib
|
|
CHECK-NEXT: Framework search paths:
|
|
CHECK-NEXT: [[FDIR]]
|
|
CHECK-NEXT: /System/Library/Frameworks
|
|
|
|
RUN: %lld -v -dylib -o /dev/null -L%t1 -F%t2 -Z 2>&1 \
|
|
RUN: | FileCheck -DLDIR=%t1 -DFDIR=%t2 --check-prefix=CHECK_Z %s
|
|
CHECK_Z: Library search paths:
|
|
CHECK_Z-NEXT: [[LDIR]]
|
|
CHECK_Z-NEXT: Framework search paths:
|
|
CHECK_Z-NEXT: [[FDIR]]
|