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 09feaa9 commit 493a579Copy full SHA for 493a579
lldb/test/API/commands/settings/TestSettings.py
@@ -1018,7 +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"]
+ 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)))
1025
settings_json = self.get_setting_json(setting_path)
1026
self.assertEqual(settings_json, setting_value)
0 commit comments