Mark some tests as XFAIL with GCC due to compiler bugs
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@258284 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/catch_array_01.pass.cpp b/test/catch_array_01.pass.cpp
index 4997602..933e4b2 100644
--- a/test/catch_array_01.pass.cpp
+++ b/test/catch_array_01.pass.cpp
@@ -9,6 +9,11 @@
// Can you have a catch clause of array type that catches anything?
+
+// GCC incorrectly allows array types to be caught by reference.
+// See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=69372
+// XFAIL: gcc
+
#include <cassert>
int main()