30 lines · c
1// Test availability attributes are enforced for Fuchsia targets.2 3// REQUIRES: x86-registered-target4// RUN: %clang_cc1 "-triple" "x86_64-unknown-fuchsia" -ffuchsia-api-level=16 -fsyntax-only -verify %s5// RUN: %clang_cc1 "-triple" "x86_64-unknown-fuchsia" -fsyntax-only %s 2>&1 | FileCheck %s6 7// If the version is not specified, we should not get any errors since there8// is no checking (the major version number is zero).9// CHECK-NOT: error:10 11void f0(int) __attribute__((availability(fuchsia, introduced = 14, deprecated = 19)));12void f1(int) __attribute__((availability(fuchsia, introduced = 16)));13void f2(int) __attribute__((availability(fuchsia, introduced = 14, deprecated = 16))); // expected-note {{'f2' has been explicitly marked deprecated here}}14void f3(int) __attribute__((availability(fuchsia, introduced = 19, strict))); // expected-note {{'f3' has been explicitly marked unavailable here}}15void f4(int) __attribute__((availability(fuchsia, introduced = 9, deprecated = 11, obsoleted = 16), availability(ios, introduced = 2.0, deprecated = 3.0))); // expected-note{{explicitly marked unavailable}}16void f5(int) __attribute__((availability(ios, introduced = 3.2), availability(fuchsia, unavailable))); // expected-note{{'f5' has been explicitly marked unavailable here}}17void f6(int) __attribute__((availability(fuchsia, introduced = 16.0))); // expected-warning {{Fuchsia API Level prohibits specifying a minor or sub-minor version}}18void f7(int) __attribute__((availability(fuchsia, introduced = 16.1))); // expected-warning {{Fuchsia API Level prohibits specifying a minor or sub-minor version}}19void f8(int) __attribute__((availability(fuchsia, introduced = 19))); // nothing will happen as 'strict' is not specified.20 21void test(void) {22 f0(0);23 f1(0);24 f2(0); // expected-warning{{'f2' is deprecated: first deprecated in Fuchsia 16}}25 f3(0); // expected-error{{'f3' is unavailable: introduced in Fuchsia 19}}26 f4(0); // expected-error{{f4' is unavailable: obsoleted in Fuchsia 16}}27 f5(0); // expected-error{{'f5' is unavailable: not available on Fuchsia}}28 f8(0);29}30