diff options
author | Zachary Turner <zturner@google.com> | 2016-02-09 21:36:02 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2016-02-09 21:36:02 +0000 |
commit | 0c3e00369738f8ad33b6f656412dd05d594d1cfe (patch) | |
tree | 93fdb11fbff66e63893bb041c6ca4042f9250b2b /lldb/packages/Python/lldbsuite/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py | |
parent | 1dc30a48bf32c1076a79283def826b7f87829f3f (diff) | |
download | bcm5719-llvm-0c3e00369738f8ad33b6f656412dd05d594d1cfe.tar.gz bcm5719-llvm-0c3e00369738f8ad33b6f656412dd05d594d1cfe.zip |
Remove expected failure and skip decorators for host os.
All decorator invocations are updated to use the generic
expectedFailureAll and skipIf decorators.
llvm-svn: 260288
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py b/lldb/packages/Python/lldbsuite/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py index afe1ef7d6ad..6f5882636cb 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/single-quote-in-filename-to-lldb/TestSingleQuoteInFilename.py @@ -27,7 +27,7 @@ class SingleQuoteInCommandLineTestCase(TestBase): except: pass - @expectedFailureHostWindows("llvm.org/pr22274: need a pexpect replacement for windows") + @expectedFailureAll(hostoslist=["windows"], bugnumber="llvm.org/pr22274: need a pexpect replacement for windows") @no_debug_info_test def test_lldb_invocation_with_single_quote_in_filename(self): """Test that 'lldb my_file_name' works where my_file_name is a string with a single quote char in it.""" |