diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2020-01-01 14:19:41 -0800 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2020-01-01 14:22:49 -0800 |
commit | fb170fd652bf2fcc4c2cd54aaf384591d8df266b (patch) | |
tree | 54aa9e4aa216ae61246a8ac8c275cf578745885d /lldb/packages/Python/lldbsuite/test/commands/settings/TestSettings.py | |
parent | 8dd9a1361958f0cc53d100124e158cbe691c4628 (diff) | |
download | bcm5719-llvm-fb170fd652bf2fcc4c2cd54aaf384591d8df266b.tar.gz bcm5719-llvm-fb170fd652bf2fcc4c2cd54aaf384591d8df266b.zip |
tests: XFAIL/UNSUPPORTED tests on Windows
Now that we are building the python bindings on Windows once more, the
extended testsuite is running. Mark a few failing tests and skip a few
tests which hang. This should at least bring the bot back to green
without reverting the Python changes which are an improvement for the
build system and enable another ~35% of the test suite which was
previously disabled.
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/commands/settings/TestSettings.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/commands/settings/TestSettings.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/commands/settings/TestSettings.py b/lldb/packages/Python/lldbsuite/test/commands/settings/TestSettings.py index 3b9f64707bb..1130821bac0 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/settings/TestSettings.py +++ b/lldb/packages/Python/lldbsuite/test/commands/settings/TestSettings.py @@ -58,6 +58,7 @@ class SettingsCommandTestCase(TestBase): '[3]: "b"', '[4]: "c"']) + @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr44430") def test_replace_target_run_args(self): """Test that 'replace target.run-args' works.""" # Set the run-args and then replace the index-0 element. @@ -106,6 +107,7 @@ class SettingsCommandTestCase(TestBase): substrs=["term-width (int) = 70"]) # rdar://problem/10712130 + @skipIf(oslist=["windows"], bugnumber="llvm.org/pr44431") def test_set_frame_format(self): """Test that 'set frame-format' with a backtick char in the format string works as well as fullpath.""" self.build() @@ -356,6 +358,7 @@ class SettingsCommandTestCase(TestBase): 'thread-format (format-string) = "abc def "') self.runCmd('settings clear thread-format') + @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr44430") def test_settings_with_trailing_whitespace(self): # boolean |