[clang] a7b47fa - [NFC] Disable test on AIX due to different default output

Jake Egan via cfe-commits cfe-commits at lists.llvm.org
Tue Jan 17 22:14:55 PST 2023


Author: Jake Egan
Date: 2023-01-18T01:14:47-05:00
New Revision: a7b47fa17c37485a1658ce44e0d87edf69e4b8be

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

LOG: [NFC] Disable test on AIX due to different default output

Previous attempt to stop this test from running on AIX didn't work,
so revert it and require not system-aix instead.

This reverts commit b1ac375e11c801be2a1e07e87be91ae54decf2eb.

Added: 
    

Modified: 
    clang/test/Driver/module-output.cppm

Removed: 
    


################################################################################
diff  --git a/clang/test/Driver/module-output.cppm b/clang/test/Driver/module-output.cppm
index a01531b889a3..b3505ef44194 100644
--- a/clang/test/Driver/module-output.cppm
+++ b/clang/test/Driver/module-output.cppm
@@ -2,7 +2,9 @@
 // in Windows and Linux. So we disable the test on Windows
 // here.
 // REQUIRES: !system-windows
-// REQUIRES: x86-registered-target
+// On AIX, the default output for `-c` may be `.s` instead of `.o`,
+// which makes the test fail. So disable the test on AIX.
+// REQUIRES: !system-aix
 //
 // RUN: rm -rf %t
 // RUN: mkdir %t


        


More information about the cfe-commits mailing list