From d1873d395d5799fe7344d08de7f2b01e53697eca Mon Sep 17 00:00:00 2001 From: Jake Egan Date: Tue, 15 Mar 2022 15:15:58 -0400 Subject: [PATCH] [NFC][AIX] Disable precompiled module file test on AIX This patch follows the same reasoning as D114481. The PCH reader looks for `__clangast` section in the precompiled module file, which is not present in the file on AIX and not supported in XCOFF yet. Reviewed By: daltenty Differential Revision: https://reviews.llvm.org/D121709 --- clang/test/ClangScanDeps/modules-no-undeclared-includes.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/clang/test/ClangScanDeps/modules-no-undeclared-includes.c b/clang/test/ClangScanDeps/modules-no-undeclared-includes.c index 72f39223..d88b32b 100644 --- a/clang/test/ClangScanDeps/modules-no-undeclared-includes.c +++ b/clang/test/ClangScanDeps/modules-no-undeclared-includes.c @@ -1,3 +1,7 @@ +// Unsupported on AIX because we don't support the requisite "__clangast" +// section in XCOFF yet. +// UNSUPPORTED: aix + // RUN: rm -rf %t && mkdir %t // RUN: split-file %s %t -- 2.7.4