diff options
author | Eric Fiselier <eric@efcs.ca> | 2017-05-28 20:49:11 +0000 |
---|---|---|
committer | Eric Fiselier <eric@efcs.ca> | 2017-05-28 20:49:11 +0000 |
commit | f8b10f99c9466d341beeea657dd8e8283bef13b2 (patch) | |
tree | d62d95fdfdbe87372f49bcbd2dff4aff16c35172 | |
parent | 8f7952c19022b591740451d56c5c3621b450317a (diff) | |
download | llvm-f8b10f99c9466d341beeea657dd8e8283bef13b2.zip llvm-f8b10f99c9466d341beeea657dd8e8283bef13b2.tar.gz llvm-f8b10f99c9466d341beeea657dd8e8283bef13b2.tar.bz2 |
XFAIL tests which trigger coroutine debug info crash in Clang
llvm-svn: 304104
2 files changed, 8 insertions, 0 deletions
diff --git a/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/bool_await_suspend.sh.cpp b/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/bool_await_suspend.sh.cpp index 1e5c106..06ceafa 100644 --- a/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/bool_await_suspend.sh.cpp +++ b/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/bool_await_suspend.sh.cpp @@ -11,6 +11,10 @@ // UNSUPPORTED: c++98, c++03, c++11 // REQUIRES: fcoroutines-ts +// These configurations run the tests with '-g', which hits a bug in Clangs +// coroutine implementation. +// XFAIL: asan, msan, ubsan, tsan + // RUN: %build -fcoroutines-ts // RUN: %run diff --git a/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/generator.sh.cpp b/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/generator.sh.cpp index 922b3a0..f31b68a 100644 --- a/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/generator.sh.cpp +++ b/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/generator.sh.cpp @@ -11,6 +11,10 @@ // UNSUPPORTED: c++98, c++03, c++11 // REQUIRES: fcoroutines-ts +// These configurations run the tests with '-g', which hits a bug in Clangs +// coroutine implementation. +// XFAIL: asan, msan, ubsan, tsan + // RUN: %build -fcoroutines-ts // RUN: %run |