diff options
author | Aaron Smith <aaron.smith@microsoft.com> | 2019-02-07 18:22:00 +0000 |
---|---|---|
committer | Aaron Smith <aaron.smith@microsoft.com> | 2019-02-07 18:22:00 +0000 |
commit | 981e63581a9a804ff6a2994b2d95193cd43d11f8 (patch) | |
tree | c63fbf1bd4c34d2a9c1c361d7984b0bf0a40f5ba /lldb/packages/Python/lldbsuite | |
parent | f21c022380f52b5f2275ad5433fc291b2fee820c (diff) | |
download | bcm5719-llvm-981e63581a9a804ff6a2994b2d95193cd43d11f8.tar.gz bcm5719-llvm-981e63581a9a804ff6a2994b2d95193cd43d11f8.zip |
[gdb-remote] Use lldb's portable Host::GetEnvironment() instead of getenv
Reviewers: zturner, llvm-commits, labath, serge-sans-paille
Reviewed By: labath
Subscribers: Hui, labath, lldb-commits
Differential Revision: https://reviews.llvm.org/D56230
llvm-svn: 353440
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/functionalities/platform/TestPlatformCommand.py | 1 | ||||
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/settings/quoting/TestQuoting.py | 6 |
2 files changed, 1 insertions, 6 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/functionalities/platform/TestPlatformCommand.py b/lldb/packages/Python/lldbsuite/test/functionalities/platform/TestPlatformCommand.py index 302201a9256..f6f20b0f53a 100644 --- a/lldb/packages/Python/lldbsuite/test/functionalities/platform/TestPlatformCommand.py +++ b/lldb/packages/Python/lldbsuite/test/functionalities/platform/TestPlatformCommand.py @@ -48,6 +48,7 @@ class PlatformCommandTestCase(TestBase): 'Kernel', 'Hostname']) + @expectedFailureAll(oslist=["windows"]) @no_debug_info_test def test_shell(self): """ Test that the platform shell command can invoke ls. """ diff --git a/lldb/packages/Python/lldbsuite/test/settings/quoting/TestQuoting.py b/lldb/packages/Python/lldbsuite/test/settings/quoting/TestQuoting.py index 9265b47962b..51d1e81a639 100644 --- a/lldb/packages/Python/lldbsuite/test/settings/quoting/TestQuoting.py +++ b/lldb/packages/Python/lldbsuite/test/settings/quoting/TestQuoting.py @@ -28,7 +28,6 @@ class SettingsCommandTestCase(TestBase): def test_no_quote(self): self.do_test_args("a b c", "a\0b\0c\0") - @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24557") @no_debug_info_test def test_single_quote(self): self.do_test_args("'a b c'", "a b c\0") @@ -37,17 +36,14 @@ class SettingsCommandTestCase(TestBase): def test_double_quote(self): self.do_test_args('"a b c"', "a b c\0") - @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24557") @no_debug_info_test def test_single_quote_escape(self): self.do_test_args("'a b\\' c", "a b\\\0c\0") - @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24557") @no_debug_info_test def test_double_quote_escape(self): self.do_test_args('"a b\\" c"', 'a b" c\0') - @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24557") @no_debug_info_test def test_double_quote_escape2(self): self.do_test_args('"a b\\\\" c', 'a b\\\0c\0') @@ -56,7 +52,6 @@ class SettingsCommandTestCase(TestBase): def test_single_in_double(self): self.do_test_args('"a\'b"', "a'b\0") - @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24557") @no_debug_info_test def test_double_in_single(self): self.do_test_args("'a\"b'", 'a"b\0') @@ -69,7 +64,6 @@ class SettingsCommandTestCase(TestBase): def test_bare_single(self): self.do_test_args("a\\'b", "a'b\0") - @expectedFailureAll(oslist=["windows"], bugnumber="llvm.org/pr24557") @no_debug_info_test def test_bare_double(self): self.do_test_args('a\\"b', 'a"b\0') |