]> Git Repo - binutils.git/blobdiff - gdb/unittests/command-def-selftests.c
Unify gdb printf functions
[binutils.git] / gdb / unittests / command-def-selftests.c
index 1eaa5714db19a0ce47afa1de6375fa5319a561c6..da158d9e8640da1e3877d24364da175e97d7c6ba 100644 (file)
@@ -37,8 +37,8 @@ static unsigned int nr_failed_invariants;
 static void
 broken_doc_invariant (const char *prefix, const char *name, const char *msg)
 {
-  printf_filtered ("help doc broken invariant: command '%s%s' help doc %s\n",
-                  prefix, name, msg);
+  gdb_printf ("help doc broken invariant: command '%s%s' help doc %s\n",
+             prefix, name, msg);
   nr_failed_invariants++;
 }
 
@@ -129,12 +129,12 @@ traverse_command_structure (struct cmd_list_element **list,
   auto dupl = lists.find (list);
   if (dupl != lists.end ())
     {
-      printf_filtered ("list %p duplicated,"
-                      " reachable via prefix '%s' and '%s'."
-                      "  Duplicated list first command is '%s'\n",
-                      list,
-                      prefix, dupl->second,
-                      (*list)->name);
+      gdb_printf ("list %p duplicated,"
+                 " reachable via prefix '%s' and '%s'."
+                 "  Duplicated list first command is '%s'\n",
+                 list,
+                 prefix, dupl->second,
+                 (*list)->name);
       nr_duplicates++;
       return;
     }
@@ -163,15 +163,15 @@ traverse_command_structure (struct cmd_list_element **list,
          || (prefixcmd == nullptr && *list != cmdlist))
        {
          if (c->prefix == nullptr)
-           printf_filtered ("list %p reachable via prefix '%s'."
-                            "  command '%s' has null prefixcmd\n",
-                            list,
-                            prefix, c->name);
+           gdb_printf ("list %p reachable via prefix '%s'."
+                       "  command '%s' has null prefixcmd\n",
+                       list,
+                       prefix, c->name);
          else
-           printf_filtered ("list %p reachable via prefix '%s'."
-                            "  command '%s' has a different prefixcmd\n",
-                            list,
-                            prefix, c->name);
+           gdb_printf ("list %p reachable via prefix '%s'."
+                       "  command '%s' has a different prefixcmd\n",
+                       list,
+                       prefix, c->name);
          nr_invalid_prefixcmd++;
        }
     }
This page took 0.030621 seconds and 4 git commands to generate.