diff options
-rw-r--r-- | clang/test/CodeGenCXX/castexpr-basepathsize-threshold.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/CodeGenCXX/castexpr-basepathsize-threshold.cpp b/clang/test/CodeGenCXX/castexpr-basepathsize-threshold.cpp index 61272b1..2d5f2e4 100644 --- a/clang/test/CodeGenCXX/castexpr-basepathsize-threshold.cpp +++ b/clang/test/CodeGenCXX/castexpr-basepathsize-threshold.cpp @@ -3,9 +3,9 @@ // https://bugs.llvm.org/show_bug.cgi?id=38356 // We only check that we do not crash. -// ASAN increases stack usage, so we are hitting stack overflow before reaching -// recursive template instantiation limit. -// XFAIL: darwin && asan +// This test can exceed stack usage in some configurations, so unless we can +// properly handle that don't run it. +// REQUIRES: thread_support template <typename a, a b(unsigned), int c, unsigned...> struct d : d<a, b, c - 1> {}; |