aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFred Riss <friss@apple.com>2020-03-23 09:13:40 -0700
committerFred Riss <friss@apple.com>2020-03-23 09:15:16 -0700
commit7e10581e8c15af39e6f0820768c5d43587f9088d (patch)
tree58090f72bf6a28ec394f63850d962ea33c2c2077
parent0ca19efe7b557cc833c0d665f76a3c0d49421f86 (diff)
downloadllvm-7e10581e8c15af39e6f0820768c5d43587f9088d.zip
llvm-7e10581e8c15af39e6f0820768c5d43587f9088d.tar.gz
llvm-7e10581e8c15af39e6f0820768c5d43587f9088d.tar.bz2
[lldb/testsuite] Skip part of TestSettings.py on windows
The newly introduced tests for unsetting environment variables is failing on Windows. Skip the test there to allow investigation. It seems like setting inherit-env to false was never tested before. Could it be that the Windows process launcher doesn't honor this setting?
-rw-r--r--lldb/test/API/commands/settings/TestSettings.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lldb/test/API/commands/settings/TestSettings.py b/lldb/test/API/commands/settings/TestSettings.py
index 2936085..c0cdc08 100644
--- a/lldb/test/API/commands/settings/TestSettings.py
+++ b/lldb/test/API/commands/settings/TestSettings.py
@@ -286,6 +286,7 @@ class SettingsCommandTestCase(TestBase):
"Environment variable 'MY_ENV_VAR' successfully passed."])
@skipIfRemote # it doesn't make sense to send host env to remote target
+ @skipIf(oslist=["windows"])
def test_pass_host_env_vars(self):
"""Test that the host env vars are passed to the launched process."""
self.build()