We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 493a579 commit 10f60e7Copy full SHA for 10f60e7
lldb/test/API/commands/settings/TestSettings.py
@@ -1020,8 +1020,7 @@ def test_settings_api(self):
1020
setting_path = "target.debug-file-search-paths"
1021
path1 = os.path.join(self.getSourceDir(), "tmp")
1022
path2 = os.path.join(self.getSourceDir(), "tmp2")
1023
- setting_value = [path1, path2]
1024
- self.runCmd("settings set %s %s" % (setting_path, " ".join(setting_value)))
+ self.runCmd("settings set %s '%s' '%s'" % (setting_path, path1, path2))
1025
settings_json = self.get_setting_json(setting_path)
1026
self.assertEqual(settings_json, setting_value)
1027
0 commit comments