diff --git a/lldb/test/API/commands/settings/TestSettings.py b/lldb/test/API/commands/settings/TestSettings.py index 29360856a735bf..fc872f6240fef1 100644 --- a/lldb/test/API/commands/settings/TestSettings.py +++ b/lldb/test/API/commands/settings/TestSettings.py @@ -203,10 +203,12 @@ def test_disassembler_settings(self): substrs=["5ah"]) @skipIfDarwinEmbedded # debugserver on ios etc can't write files + @skipIfReproducer def test_run_args_and_env_vars(self): self.do_test_run_args_and_env_vars(use_launchsimple=False) @skipIfDarwinEmbedded # debugserver on ios etc can't write files + @skipIfReproducer def test_launchsimple_args_and_env_vars(self): self.do_test_run_args_and_env_vars(use_launchsimple=True) @@ -286,6 +288,7 @@ def do_test_run_args_and_env_vars(self, use_launchsimple): "Environment variable 'MY_ENV_VAR' successfully passed."]) @skipIfRemote # it doesn't make sense to send host env to remote target + @skipIfReproducer def test_pass_host_env_vars(self): """Test that the host env vars are passed to the launched process.""" self.build() @@ -382,6 +385,7 @@ def unset_env_variables(): "The host environment variable 'MY_HOST_ENV_VAR2' successfully passed."]) @skipIfDarwinEmbedded # debugserver on ios etc can't write files + @skipIfReproducer def test_set_error_output_path(self): """Test that setting target.error/output-path for the launched process works.""" self.build() diff --git a/lldb/test/API/commands/settings/quoting/TestQuoting.py b/lldb/test/API/commands/settings/quoting/TestQuoting.py index d7581951a147ed..a415ea8ee24746 100644 --- a/lldb/test/API/commands/settings/quoting/TestQuoting.py +++ b/lldb/test/API/commands/settings/quoting/TestQuoting.py @@ -64,6 +64,7 @@ def test_bare_single(self): def test_bare_double(self): self.do_test_args('a\\"b', 'a"b\0') + @skipIfReproducer # Reproducers don't know about output.txt def do_test_args(self, args_in, args_out): """Test argument parsing. Run the program with args_in. The program dumps its arguments to stdout. Compare the stdout with args_out."""