[PATCH] D83579: [llvm-ar][AIX] Unsupport test on AIX

Steven Wan via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Jul 10 11:34:53 PDT 2020


stevewan created this revision.
Herald added subscribers: llvm-commits, rupprecht, MaskRay.
Herald added a project: LLVM.

The test `error-opening-directory.test` fails on AIX as it allows open() and read() on a directory. This patch adds `# UNSUPPORTED:
system-aix` to the test to prevent it from running on AIX.


Repository:
  rG LLVM Github Monorepo

https://reviews.llvm.org/D83579

Files:
  llvm/test/tools/llvm-ar/error-opening-directory.test


Index: llvm/test/tools/llvm-ar/error-opening-directory.test
===================================================================
--- llvm/test/tools/llvm-ar/error-opening-directory.test
+++ llvm/test/tools/llvm-ar/error-opening-directory.test
@@ -1,6 +1,6 @@
-## Unsupported on FreeBSD as FreeBSD 12 and earlier allow reading directories
-## by default.
-# UNSUPPORTED: system-freebsd
+## Unsupported on AIX and FreeBSD as AIX and FreeBSD 12 and earlier allow
+## reading directories by default.
+# UNSUPPORTED: system-freebsd, system-aix
 
 # RUN: rm -rf %t && mkdir -p %t
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D83579.277113.patch
Type: text/x-patch
Size: 575 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20200710/b71c36e3/attachment.bin>


More information about the llvm-commits mailing list