Index: lldb/test/API/commands/target/basic/TestTargetCommand.py =================================================================== --- lldb/test/API/commands/target/basic/TestTargetCommand.py +++ lldb/test/API/commands/target/basic/TestTargetCommand.py @@ -42,7 +42,7 @@ self.buildAll() self.do_target_command() - @expectedFailureDarwin(archs=["arm64", "arm64e"]) # + @skipIfDarwin # Chained Fixups def test_target_variable_command(self): """Test 'target variable' command before and after starting the inferior.""" d = {'C_SOURCES': 'globals.c', 'EXE': self.getBuildArtifact('globals')} @@ -51,7 +51,7 @@ self.do_target_variable_command('globals') - @expectedFailureDarwin(archs=["arm64", "arm64e"]) # + @skipIfDarwin # Chained Fixups def test_target_variable_command_no_fail(self): """Test 'target variable' command before and after starting the inferior.""" d = {'C_SOURCES': 'globals.c', 'EXE': self.getBuildArtifact('globals')} Index: lldb/test/API/lang/c/global_variables/TestGlobalVariables.py =================================================================== --- lldb/test/API/lang/c/global_variables/TestGlobalVariables.py +++ lldb/test/API/lang/c/global_variables/TestGlobalVariables.py @@ -18,8 +18,8 @@ self.source, '// Set break point at this line.') self.shlib_names = ["a"] + @skipIfDarwin # Chained Fixups @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24764") - @expectedFailureDarwin(archs=["arm64", "arm64e"]) # def test_without_process(self): """Test that static initialized variables can be inspected without process.""" Index: lldb/test/API/lang/cpp/char8_t/TestCxxChar8_t.py =================================================================== --- lldb/test/API/lang/cpp/char8_t/TestCxxChar8_t.py +++ lldb/test/API/lang/cpp/char8_t/TestCxxChar8_t.py @@ -12,8 +12,8 @@ class CxxChar8_tTestCase(TestBase): + @skipIfDarwin # Chained Fixups @skipIf(compiler="clang", compiler_version=['<', '7.0']) - @expectedFailureDarwin(archs=["arm64", "arm64e"]) # def test_without_process(self): """Test that C++ supports char8_t without a running process.""" self.build()