diff options
author | Zachary Turner <zturner@google.com> | 2016-02-18 18:50:02 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-02-18 18:50:02 +0000 |
commit | 5d3b3c7de2b4f8fd3c5ef0fd6928e9f96b1d472d (patch) | |
tree | 771c325ba46e70ce979201c49ae151653b227546 /lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py | |
parent | 8d39b2a213454ff495c30d6f94ed4e70a0109b59 (diff) | |
download | bcm5719-llvm-5d3b3c7de2b4f8fd3c5ef0fd6928e9f96b1d472d.tar.gz bcm5719-llvm-5d3b3c7de2b4f8fd3c5ef0fd6928e9f96b1d472d.zip |
Add target and host platform enumerations so we're not using strings.
Differential Revision: http://reviews.llvm.org/D17088
llvm-svn: 261241
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py b/lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py index 9df94e4551e..7a9ded03ad2 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/completion/TestCompletion.py @@ -10,6 +10,7 @@ import os import lldb from lldbsuite.test.decorators import * from lldbsuite.test.lldbtest import * +from lldbsuite.test import lldbplatform from lldbsuite.test import lldbutil class CommandLineCompletionTestCase(TestBase): @@ -256,7 +257,7 @@ class CommandLineCompletionTestCase(TestBase): self.complete_from_to('target va', 'target variable ') @expectedFailureAll(hostoslist=["windows"], bugnumber="llvm.org/pr24679") - @expectedFailureDarwin("llvm.org/pr25485") + @expectedFailureAll(oslist=lldbplatform.darwin_all, bugnumber="llvm.org/pr25485") def test_symbol_name(self): self.build() self.complete_from_to('''file a.out |