diff options
author | Stephen Tozer <Stephen.Tozer@Sony.com> | 2023-09-06 16:09:47 +0100 |
---|---|---|
committer | Stephen Tozer <Stephen.Tozer@Sony.com> | 2023-09-06 16:12:04 +0100 |
commit | 43d70e4640124e381c03264d61deef5a0a853ef9 (patch) | |
tree | 8902f9674d2dbb0422d7a0e098d8b0e181f66214 /cross-project-tests | |
parent | 3401b308f82a503f7f1650e0f2eca8d1f8f9ff63 (diff) | |
download | llvm-43d70e4640124e381c03264d61deef5a0a853ef9.zip llvm-43d70e4640124e381c03264d61deef5a0a853ef9.tar.gz llvm-43d70e4640124e381c03264d61deef5a0a853ef9.tar.bz2 |
[DebugInfoTests] Mark debuginfo 'optnone-*' tests unsupported on darwin
The optnone tests, following the removal of the Dexter builder in a
prior patch (45a40c16), are experiencing intermittent failures. This
patch marks them unsupported to be fixed in a new commit, rather than
reverting the Dexter patch.
Diffstat (limited to 'cross-project-tests')
4 files changed, 8 insertions, 4 deletions
diff --git a/cross-project-tests/debuginfo-tests/dexter-tests/optnone-fastmath.cpp b/cross-project-tests/debuginfo-tests/dexter-tests/optnone-fastmath.cpp index 2161898..9f47f6a 100644 --- a/cross-project-tests/debuginfo-tests/dexter-tests/optnone-fastmath.cpp +++ b/cross-project-tests/debuginfo-tests/dexter-tests/optnone-fastmath.cpp @@ -6,7 +6,8 @@ // RUN: --binary %t --debugger 'lldb' -- %s // REQUIRES: lldb -// UNSUPPORTED: system-windows +// Currently getting intermittent failures on darwin. +// UNSUPPORTED: system-windows, system-darwin //// Check that the debugging experience with __attribute__((optnone)) at O2 //// matches O0. Test scalar floating point arithmetic with -ffast-math. diff --git a/cross-project-tests/debuginfo-tests/dexter-tests/optnone-simple-functions.cpp b/cross-project-tests/debuginfo-tests/dexter-tests/optnone-simple-functions.cpp index 398ea5a..e585c20 100644 --- a/cross-project-tests/debuginfo-tests/dexter-tests/optnone-simple-functions.cpp +++ b/cross-project-tests/debuginfo-tests/dexter-tests/optnone-simple-functions.cpp @@ -6,7 +6,8 @@ // RUN: --binary %t --debugger 'lldb' -- %s // REQUIRES: lldb, D136396 -// UNSUPPORTED: system-windows +// Currently getting intermittent failures on darwin. +// UNSUPPORTED: system-windows, system-darwin //// Check that the debugging experience with __attribute__((optnone)) at O2 //// matches O0. Test simple functions performing simple arithmetic diff --git a/cross-project-tests/debuginfo-tests/dexter-tests/optnone-struct-and-methods.cpp b/cross-project-tests/debuginfo-tests/dexter-tests/optnone-struct-and-methods.cpp index 57e8925..6aebd50 100644 --- a/cross-project-tests/debuginfo-tests/dexter-tests/optnone-struct-and-methods.cpp +++ b/cross-project-tests/debuginfo-tests/dexter-tests/optnone-struct-and-methods.cpp @@ -6,7 +6,8 @@ // RUN: --binary %t --debugger 'lldb' -- %s // REQUIRES: lldb -// UNSUPPORTED: system-windows +// Currently getting intermittent failures on darwin. +// UNSUPPORTED: system-windows, system-darwin //// Check that the debugging experience with __attribute__((optnone)) at O2 //// matches O0. Test simple structs and methods. diff --git a/cross-project-tests/debuginfo-tests/dexter-tests/optnone-vectors-and-functions.cpp b/cross-project-tests/debuginfo-tests/dexter-tests/optnone-vectors-and-functions.cpp index f1289e5..5c4cfc0 100644 --- a/cross-project-tests/debuginfo-tests/dexter-tests/optnone-vectors-and-functions.cpp +++ b/cross-project-tests/debuginfo-tests/dexter-tests/optnone-vectors-and-functions.cpp @@ -6,7 +6,8 @@ // RUN: --binary %t --debugger 'lldb' -- %s // REQUIRES: lldb -// UNSUPPORTED: system-windows +// Currently getting intermittent failures on darwin. +// UNSUPPORTED: system-windows, system-darwin //// Check that the debugging experience with __attribute__((optnone)) at O2 //// matches O0. Test simple template functions performing simple arithmetic |