diff options
author | Zachary Turner <zturner@google.com> | 2016-05-13 18:26:30 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-05-13 18:26:30 +0000 |
commit | 4fd6a96008a43a6ff9e8267507211b523488bf7a (patch) | |
tree | bed7e6535cfcd75e833197dec1f21d40b3b351d8 /lldb/packages/Python/lldbsuite/test/python_api | |
parent | 609fae3893a40158983bb4b8c019f811cac06fac (diff) | |
download | bcm5719-llvm-4fd6a96008a43a6ff9e8267507211b523488bf7a.tar.gz bcm5719-llvm-4fd6a96008a43a6ff9e8267507211b523488bf7a.zip |
Clean up test results on Windows.
Remove XFAIL from some tests that now pass.
Add XFAIL to some tests that now fail.
Fix a crasher where a null pointer check isn't guarded.
Properly handle all types of errors in SymbolFilePDB.
llvm-svn: 269454
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/python_api')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/python_api/event/TestEvents.py | 1 | ||||
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/TestSymbolContextTwoFiles.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/python_api/event/TestEvents.py b/lldb/packages/Python/lldbsuite/test/python_api/event/TestEvents.py index baefd94497b..1c23f50e9d4 100644 --- a/lldb/packages/Python/lldbsuite/test/python_api/event/TestEvents.py +++ b/lldb/packages/Python/lldbsuite/test/python_api/event/TestEvents.py @@ -107,6 +107,7 @@ class EventAPITestCase(TestBase): @add_test_categories(['pyapi']) @expectedFlakeyLinux("llvm.org/pr23730") # Flaky, fails ~1/100 cases + @expectedFlakeyOS(oslist=["windows"]) def test_wait_for_event(self): """Exercise SBListener.WaitForEvent() API.""" self.build() diff --git a/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/TestSymbolContextTwoFiles.py b/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/TestSymbolContextTwoFiles.py index de3c1f266cc..1d8d7011457 100644 --- a/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/TestSymbolContextTwoFiles.py +++ b/lldb/packages/Python/lldbsuite/test/python_api/symbol-context/two-files/TestSymbolContextTwoFiles.py @@ -16,6 +16,7 @@ class SymbolContextTwoFilesTestCase(TestBase): mydir = TestBase.compute_mydir(__file__) @add_test_categories(['pyapi']) + @expectedFailureAll(oslist=["windows"]) def test_lookup_by_address(self): """Test lookup by address in a module with multiple compilation units""" self.build() |