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.
2 parents 3b64a45 + 5286511 commit 00bffa9Copy full SHA for 00bffa9
lldb/test/API/commands/settings/TestSettings.py
@@ -1018,8 +1018,9 @@ def test_settings_api(self):
1018
1019
# Test OptionValueFileSpec and OptionValueFileSpecList
1020
setting_path = "target.debug-file-search-paths"
1021
- setting_value = ["/tmp" "/tmp2"]
1022
- self.runCmd("settings set %s %s" % (setting_path, " ".join(setting_value)))
+ path1 = os.path.join(self.getSourceDir(), "tmp")
+ path2 = os.path.join(self.getSourceDir(), "tmp2")
1023
+ self.runCmd("settings set %s '%s' '%s'" % (setting_path, path1, path2))
1024
settings_json = self.get_setting_json(setting_path)
1025
self.assertEqual(settings_json, setting_value)
1026
0 commit comments