gdb: fix error message for $_gdb_maint_setting
authorAndrew Burgess <aburgess@redhat.com>
Tue, 9 May 2023 14:18:51 +0000 (15:18 +0100)
committerAndrew Burgess <aburgess@redhat.com>
Fri, 12 May 2023 09:54:25 +0000 (10:54 +0100)
I spotted this behaviour:

  (gdb) p $_gdb_maint_setting("xxx")
  First argument of $_gdb_maint_setting must be a valid setting of the 'show' command.

Notice that GDB claims I need to use a setting from the 'show'
command, which isn't correct for $_gdb_maint_setting, in this case I
need to use a setting from 'maintenance show'.

This same issue is present for $_gdb_maint_setting_str.

This commit fixes this minor issue.

Approved-By: Simon Marchi <simon.marchi@efficios.com>
gdb/cli/cli-cmds.c
gdb/testsuite/gdb.base/settings.exp

index d466cc6c34d72fece830e82f09a081dedfd14553..b7b65303a0b51f26c3a59f0d90766f86e39685de 100644 (file)
@@ -2219,8 +2219,16 @@ setting_cmd (const char *fnname, struct cmd_list_element *showlist,
   cmd_list_element *cmd = lookup_cmd (&a0, showlist, "", NULL, -1, 0);
 
   if (cmd == nullptr || cmd->type != show_cmd)
-    error (_("First argument of %s must be a "
-            "valid setting of the 'show' command."), fnname);
+    {
+      gdb_assert (showlist->prefix != nullptr);
+      std::vector<std::string> components
+       = showlist->prefix->command_components ();
+      std::string full_name = components[0];
+      for (int i = 1; i < components.size (); ++i)
+       full_name += " " + components[i];
+      error (_("First argument of %s must be a valid setting of the "
+              "'%s' command."), fnname, full_name.c_str ());
+    }
 
   return cmd;
 }
index eb127d246d27608133b433d35cc83a22021a1b3c..6248ba3e49573f0148bcefe6bd9f54c433bd0202 100644 (file)
@@ -625,6 +625,19 @@ proc test-string {variant} {
     test_gdb_complete_none "$show_cmd "
 }
 
+# Check that $_gdb_setting & co report the correct error strings.
+proc test-setting-error {} {
+    gdb_test {print $_gdb_setting("xxx")} \
+       "First argument of \\\$_gdb_setting must be a valid setting of the 'show' command\\."
+    gdb_test {print $_gdb_setting_str("xxx")} \
+       "First argument of \\\$_gdb_setting_str must be a valid setting of the 'show' command\\."
+
+    gdb_test {print $_gdb_maint_setting("xxx")} \
+       "First argument of \\\$_gdb_maint_setting must be a valid setting of the 'maintenance show' command\\."
+    gdb_test {print $_gdb_maint_setting_str("xxx")} \
+       "First argument of \\\$_gdb_maint_setting_str must be a valid setting of the 'maintenance show' command\\."
+}
+
 foreach variant {
     uinteger
     integer
@@ -651,3 +664,5 @@ foreach variant {
        test-string $variant
     }
 }
+
+test-setting-error