diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2018-10-01 17:20:57 +0000 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2018-10-01 17:20:57 +0000 |
commit | 23b62aa6d44b8547a039672df7072fb0daff9d08 (patch) | |
tree | c9a5c96f3bb968b2e3e8a7ec5b9526350b5ff5c1 /lldb/packages/Python/lldbsuite/test/settings | |
parent | 0c83c3ff387a3d84424cd6c9cfba551dd82b9215 (diff) | |
download | bcm5719-llvm-23b62aa6d44b8547a039672df7072fb0daff9d08.tar.gz bcm5719-llvm-23b62aa6d44b8547a039672df7072fb0daff9d08.zip |
Fix tests affected by printing change.
I forgot to update some tests that were affected by the escaping of
backticks in the format string, landed in r343471.
llvm-svn: 343502
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/settings')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/settings/TestSettings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/settings/TestSettings.py b/lldb/packages/Python/lldbsuite/test/settings/TestSettings.py index d6fa5a93b72..e04502f9b3e 100644 --- a/lldb/packages/Python/lldbsuite/test/settings/TestSettings.py +++ b/lldb/packages/Python/lldbsuite/test/settings/TestSettings.py @@ -132,7 +132,7 @@ class SettingsCommandTestCase(TestBase): # Change the default format to print function.name rather than # function.name-with-args - format_string = "frame #${frame.index}: ${frame.pc}{ ${module.file.basename}`${function.name}{${function.pc-offset}}}{ at ${line.file.fullpath}:${line.number}}{, lang=${language}}\n" + format_string = "frame #${frame.index}: ${frame.pc}{ ${module.file.basename}\`${function.name}{${function.pc-offset}}}{ at ${line.file.fullpath}:${line.number}}{, lang=${language}}\n" self.runCmd("settings set frame-format %s" % format_string) # Immediately test the setting. |