diff options
author | Raphael Isemann <teemperor@gmail.com> | 2019-09-03 16:21:57 +0000 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2019-09-03 16:21:57 +0000 |
commit | f792054fd2d312478c1034bb36c4a9f0e9878e51 (patch) | |
tree | 76edd45ebc2fab4324a17d5e2e863c35cfc06207 /lldb/packages/Python/lldbsuite | |
parent | 6f98400189a68e4d880bc6d4d88dd930a4650d00 (diff) | |
download | bcm5719-llvm-f792054fd2d312478c1034bb36c4a9f0e9878e51.tar.gz bcm5719-llvm-f792054fd2d312478c1034bb36c4a9f0e9878e51.zip |
[lldb][NFC] Disable added frame select and all log option test on windows
llvm-svn: 370776
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/commands/frame/select/TestFrameSelect.py | 1 | ||||
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/commands/log/basic/TestLogging.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/commands/frame/select/TestFrameSelect.py b/lldb/packages/Python/lldbsuite/test/commands/frame/select/TestFrameSelect.py index ae7cb21af21..c6b665ee941 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/frame/select/TestFrameSelect.py +++ b/lldb/packages/Python/lldbsuite/test/commands/frame/select/TestFrameSelect.py @@ -11,6 +11,7 @@ class TestFrameSelect(TestBase): mydir = TestBase.compute_mydir(__file__) @no_debug_info_test + @skipIfWindows def test_relative(self): self.build() diff --git a/lldb/packages/Python/lldbsuite/test/commands/log/basic/TestLogging.py b/lldb/packages/Python/lldbsuite/test/commands/log/basic/TestLogging.py index cc3cc1155e0..5199057cadc 100644 --- a/lldb/packages/Python/lldbsuite/test/commands/log/basic/TestLogging.py +++ b/lldb/packages/Python/lldbsuite/test/commands/log/basic/TestLogging.py @@ -91,6 +91,7 @@ class LogTestCase(TestBase): self.assertEquals(contents.find("bacon"), 0) # Enable all log options and check that nothing crashes. + @skipIfWindows def test_all_log_options(self): if (os.path.exists(self.log_file)): os.remove(self.log_file) |