[clang] 1b34f1e - [clang][test] mark tests added in ee8524087c78 as unsupported on AIX

Alex Lorenz via cfe-commits cfe-commits at lists.llvm.org
Tue May 24 13:39:45 PDT 2022


Author: Alex Lorenz
Date: 2022-05-24T13:39:37-07:00
New Revision: 1b34f1e996565bc5e4f2be14b89f881f8fe0f3b9

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

LOG: [clang][test] mark tests added in ee8524087c78 as unsupported on AIX

These tests are failing on the PPC64 AIX CI bot, but it's unclear why,
as they pass on other CI jobs.
I marked them as unsupported on AIX for now while investigating the failure.

Added: 
    

Modified: 
    clang/test/Index/index-concept-kind.cpp
    clang/test/Index/index-concepts.cpp

Removed: 
    


################################################################################
diff  --git a/clang/test/Index/index-concept-kind.cpp b/clang/test/Index/index-concept-kind.cpp
index 7aaf814f5f989..f33fc6bc5cc0d 100644
--- a/clang/test/Index/index-concept-kind.cpp
+++ b/clang/test/Index/index-concept-kind.cpp
@@ -1,5 +1,5 @@
 // RUN: c-index-test -index-file %s -std=gnu++20 | FileCheck %s
-
+// UNSUPPORTED: aix
 template <typename T>
 concept LargeType = sizeof(T) > 8;
 // CHECK: [indexDeclaration]: kind: concept | name: LargeType | USR: c:@CT at LargeType | lang: C | cursor: ConceptDecl=LargeType:[[@LINE-1]]:9 (Definition) | loc: [[@LINE-1]]:9 | semantic-container: [TU] | lexical-container: [TU] | isRedecl: 0 | isDef: 1 | isContainer: 0 | isImplicit: 0

diff  --git a/clang/test/Index/index-concepts.cpp b/clang/test/Index/index-concepts.cpp
index 9887e9fdc6541..ba4b87111ff48 100644
--- a/clang/test/Index/index-concepts.cpp
+++ b/clang/test/Index/index-concepts.cpp
@@ -1,5 +1,5 @@
 // RUN: c-index-test -test-load-source all %s -std=gnu++20 -fno-delayed-template-parsing | FileCheck %s
-
+// UNSUPPORTED: aix
 template<class T>
 struct type_trait {
     const static bool value = false;


        


More information about the cfe-commits mailing list