summaryrefslogtreecommitdiffstats
path: root/clang/test/InstallAPI/driver-invalid-options.test
blob: 69f3b2d66ab8b6f78741487344aeb0b2e44fb285 (plain)
1
2
3
4
5
6
7
8
9
/// Check non-darwin triple is rejected.
// RUN: not clang-installapi -target x86_64-unknown-unknown %s -o tmp.tbd 2> %t 
// RUN: FileCheck --check-prefix INVALID_INSTALLAPI -input-file %t %s
// INVALID_INSTALLAPI: error: unsupported option 'installapi' for target 'x86_64-unknown-unknown'

/// Check that missing install_name is reported.
// RUN: not clang-installapi -target x86_64-apple-ios-simulator  %s -o tmp.tbd 2> %t 
// RUN: FileCheck --check-prefix INVALID_INSTALL_NAME -input-file %t %s
// INVALID_INSTALL_NAME: error: no install name specified: add -install_name <path>