[clang] a5c65de - mac/arm: XFAIL the last 3 failing tests

Nico Weber via cfe-commits cfe-commits at lists.llvm.org
Sat Dec 12 12:09:25 PST 2020


Author: Nico Weber
Date: 2020-12-12T15:09:17-05:00
New Revision: a5c65de2953e755532da2e171e452d11e80d4714

URL: https://github.com/llvm/llvm-project/commit/a5c65de2953e755532da2e171e452d11e80d4714
DIFF: https://github.com/llvm/llvm-project/commit/a5c65de2953e755532da2e171e452d11e80d4714.diff

LOG: mac/arm: XFAIL the last 3 failing tests

We should fix them, but let's XFAIL them for now so that we can start
running check-clang on bots and lock in the passing tests.

Part of 46644.

Added: 
    

Modified: 
    clang/test/CodeGen/2004-02-13-IllegalVararg.c
    clang/test/Driver/aarch64-cpus.c
    clang/test/Index/pch-from-libclang.c

Removed: 
    


################################################################################
diff  --git a/clang/test/CodeGen/2004-02-13-IllegalVararg.c b/clang/test/CodeGen/2004-02-13-IllegalVararg.c
index cbc9151ec631..b3acda1f9e72 100644
--- a/clang/test/CodeGen/2004-02-13-IllegalVararg.c
+++ b/clang/test/CodeGen/2004-02-13-IllegalVararg.c
@@ -1,5 +1,8 @@
 // RUN: %clang_cc1  %s -w -emit-llvm -o -
 
+// https://bugs.llvm.org/show_bug.cgi?id=46644#c6
+// XFAIL: arm64-apple
+
 float test(int X, ...) {
   __builtin_va_list ap;
   float F;

diff  --git a/clang/test/Driver/aarch64-cpus.c b/clang/test/Driver/aarch64-cpus.c
index 967a4902bd1c..0019e38efa62 100644
--- a/clang/test/Driver/aarch64-cpus.c
+++ b/clang/test/Driver/aarch64-cpus.c
@@ -1,5 +1,8 @@
 // Check target CPUs are correctly passed.
 
+// https://PR46644
+// XFAIL: arm64-apple
+
 // RUN: %clang -target aarch64 -### -c %s 2>&1 | FileCheck -check-prefix=GENERIC %s
 // RUN: %clang -target aarch64 -mcpu=generic -### -c %s 2>&1 | FileCheck -check-prefix=GENERIC %s
 // RUN: %clang -target aarch64 -mlittle-endian -### -c %s 2>&1 | FileCheck -check-prefix=GENERIC %s

diff  --git a/clang/test/Index/pch-from-libclang.c b/clang/test/Index/pch-from-libclang.c
index ec6286da2ae3..5ad5ecb9157a 100644
--- a/clang/test/Index/pch-from-libclang.c
+++ b/clang/test/Index/pch-from-libclang.c
@@ -1,5 +1,8 @@
 // Check that clang can use a PCH created from libclang.
 
+// https://PR46644
+// XFAIL: arm64-apple
+
 // This test doesn't use -fdisable-module-hash and hence requires that
 // CompilerInvocation::getModuleHash() computes exactly the same hash
 // for c-index-test and clang, which in turn requires that the both use


        


More information about the cfe-commits mailing list