blob: 7ee94646b6d7209359366462e4523e34077568b0 [file] [log] [blame]
Richard Smithf667ad52017-08-26 01:04:35 +00001// RUN: not %clang_cc1 -fclang-abi-compat=banana %s -fsyntax-only 2>&1 | FileCheck --check-prefix=INVALID %s
2// RUN: not %clang_cc1 -fclang-abi-compat=2.9 %s -fsyntax-only 2>&1 | FileCheck --check-prefix=INVALID %s
3// RUN: not %clang_cc1 -fclang-abi-compat=8 %s -fsyntax-only 2>&1 | FileCheck --check-prefix=INVALID %s
4// RUN: not %clang_cc1 -fclang-abi-compat=3.10 %s -fsyntax-only 2>&1 | FileCheck --check-prefix=INVALID %s
5// RUN: not %clang_cc1 -fclang-abi-compat=4.1 %s -fsyntax-only 2>&1 | FileCheck --check-prefix=INVALID %s
6// RUN: not %clang_cc1 -fclang-abi-compat=04 %s -fsyntax-only 2>&1 | FileCheck --check-prefix=INVALID %s
7// RUN: not %clang_cc1 -fclang-abi-compat=4. %s -fsyntax-only 2>&1 | FileCheck --check-prefix=INVALID %s
8// RUN: not %clang_cc1 -fclang-abi-compat=4.00 %s -fsyntax-only 2>&1 | FileCheck --check-prefix=INVALID %s
9// INVALID: error: invalid value '{{.*}}' in '-fclang-abi-compat={{.*}}'
10//
11// RUN: %clang_cc1 -fclang-abi-compat=3.0 %s -fsyntax-only
12// RUN: %clang_cc1 -fclang-abi-compat=3.9 %s -fsyntax-only
13// RUN: %clang_cc1 -fclang-abi-compat=4 %s -fsyntax-only
14// RUN: %clang_cc1 -fclang-abi-compat=4.0 %s -fsyntax-only
15// RUN: %clang_cc1 -fclang-abi-compat=latest %s -fsyntax-only