r338534 - Make test/Frontend/clang-abi-compat.cpp pass when the version goes to 8

Hans Wennborg via cfe-commits cfe-commits at lists.llvm.org
Wed Aug 1 06:19:15 PDT 2018


Author: hans
Date: Wed Aug  1 06:19:14 2018
New Revision: 338534

URL: http://llvm.org/viewvc/llvm-project?rev=338534&view=rev
Log:
Make test/Frontend/clang-abi-compat.cpp pass when the version goes to 8

Modified:
    cfe/trunk/test/Frontend/clang-abi-compat.cpp

Modified: cfe/trunk/test/Frontend/clang-abi-compat.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Frontend/clang-abi-compat.cpp?rev=338534&r1=338533&r2=338534&view=diff
==============================================================================
--- cfe/trunk/test/Frontend/clang-abi-compat.cpp (original)
+++ cfe/trunk/test/Frontend/clang-abi-compat.cpp Wed Aug  1 06:19:14 2018
@@ -1,6 +1,6 @@
 // RUN: not %clang_cc1 -fclang-abi-compat=banana %s -fsyntax-only 2>&1 | FileCheck --check-prefix=INVALID %s
 // RUN: not %clang_cc1 -fclang-abi-compat=2.9 %s -fsyntax-only 2>&1 | FileCheck --check-prefix=INVALID %s
-// RUN: not %clang_cc1 -fclang-abi-compat=8 %s -fsyntax-only 2>&1 | FileCheck --check-prefix=INVALID %s
+// RUN: not %clang_cc1 -fclang-abi-compat=42 %s -fsyntax-only 2>&1 | FileCheck --check-prefix=INVALID %s
 // RUN: not %clang_cc1 -fclang-abi-compat=3.10 %s -fsyntax-only 2>&1 | FileCheck --check-prefix=INVALID %s
 // RUN: not %clang_cc1 -fclang-abi-compat=4.1 %s -fsyntax-only 2>&1 | FileCheck --check-prefix=INVALID %s
 // RUN: not %clang_cc1 -fclang-abi-compat=04 %s -fsyntax-only 2>&1 | FileCheck --check-prefix=INVALID %s




More information about the cfe-commits mailing list