[clang] be3fc66 - Revert "[clang][test] mark tests added in ee8524087c78 as unsupported on AIX"

Jake Egan via cfe-commits cfe-commits at lists.llvm.org
Mon May 30 06:36:07 PDT 2022


Author: Jake Egan
Date: 2022-05-30T09:35:26-04:00
New Revision: be3fc66f83b08a03ef3bc849ca3b37ff11e09199

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

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

The tests pass now on a clean build.

This reverts commit 1b34f1e996565bc5e4f2be14b89f881f8fe0f3b9.

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 f33fc6bc5cc0d..7aaf814f5f989 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 b8d41e841e619..d29b9dcf79522 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