[lldb] Skip target variable tests on Darwin because of chained fixups
authorJonas Devlieghere <jonas@devlieghere.com>
Fri, 12 Aug 2022 17:06:21 +0000 (10:06 -0700)
committerJonas Devlieghere <jonas@devlieghere.com>
Fri, 12 Aug 2022 17:23:15 +0000 (10:23 -0700)
commitabe9599f04f07baae46f4123d4c43d330f34df52
treed7dc6872c20e7f288962c250ece19dfc00538ec1
parenta3ac1cfaedf708dc6b0db060c24339adeeb7a1ec
[lldb] Skip target variable tests on Darwin because of chained fixups

When targeting macOS Ventura, ld64 will use authenticated fixups for
x86_64 as well as arm64 (where that has always been the case). This
results in test failures when using an Xcode 14 toolchain on an Intel
mac running macOS Ventura:

  Failed Tests (3):
    lldb-api :: commands/target/basic/TestTargetCommand.py
    lldb-api :: lang/c/global_variables/TestGlobalVariables.py
    lldb-api :: lang/cpp/char8_t/TestCxxChar8_t.py

Rather than trying to come up with a sophisticated decorator based off
the deployment target, I marked them all as skipped with a comment
explaining why.

Differential revision: https://reviews.llvm.org/D131741
lldb/test/API/commands/target/basic/TestTargetCommand.py
lldb/test/API/lang/c/global_variables/TestGlobalVariables.py
lldb/test/API/lang/cpp/char8_t/TestCxxChar8_t.py