brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.6 KiB · 8efefd1 Raw
29 lines · plain
1/// Check non-darwin triple is rejected.2// RUN: not clang-installapi -target x86_64-unknown-unknown %s -o tmp.tbd 2> %t 3// RUN: FileCheck --check-prefix INVALID_INSTALLAPI -input-file %t %s4// INVALID_INSTALLAPI: error: unsupported option 'installapi' for target 'x86_64-unknown-unknown'5 6/// Check that missing install_name is reported.7// RUN: not clang-installapi -target x86_64-apple-ios-simulator  %s -o tmp.tbd 2> %t 8// RUN: FileCheck --check-prefix INVALID_INSTALL_NAME -input-file %t %s9// INVALID_INSTALL_NAME: error: no install name specified: add -install_name <path>10 11/// Check invalid verification mode.12// RUN: not clang-installapi -install_name Foo -target arm64-apple-ios13 \13// RUN: --verify-mode=Invalid -o tmp.tbd 2> %t14// RUN: FileCheck --check-prefix INVALID_VERIFY_MODE -input-file %t %s 15// INVALID_VERIFY_MODE: error: invalid value 'Invalid' in '--verify-mode=Invalid'16 17/// Check that invalid sysroot is fatal.18// RUN: not clang-installapi -install_name Foo -target arm64-apple-ios13 \19// RUN: -isysroot /no/such/path -o tmp.tbd 2> %t 20// RUN: FileCheck --check-prefix INVALID_ISYSROOT -input-file %t %s 21// INVALID_ISYSROOT: error: no such sysroot directory: {{.*}}no/such/path'22 23/// Check invalid target-variant.24// RUN: not clang-installapi -target x86_64-apple-macosx12 \25// RUN: -darwin-target-variant arm64-apple-ios15-macabi \26// RUN: -install_name tmp.dylib -o tmp.tbd 2> %t 27// RUN: FileCheck --check-prefix INVALID_TARGET_VARIANT -input-file %t %s28// INVALID_TARGET_VARIANT: error: no matching target found for target variant 'arm64-apple-ios15-macabi'29