When running test-case gdb.ada/array_ptr_renaming.exp we run into:
...
(gdb) print ntp^M
$3 = (3 => 30, 40)^M
(gdb) KFAIL: gdb.ada/array_ptr_renaming.exp: print ntp (PRMS: gdb/NNNN)
...
I've opened PR25883 for this failure. Reference the PR from the KFAIL, such
that we have:
...
KFAIL: gdb.ada/array_ptr_renaming.exp: print ntp (PRMS: gdb/25883)
...
gdb/testsuite/ChangeLog:
2020-04-28 Tom de Vries <tdevries@suse.de>
* gdb.ada/array_ptr_renaming.exp: Add PR number in KFAIL.
+2020-04-28 Tom de Vries <tdevries@suse.de>
+
+ * gdb.ada/array_ptr_renaming.exp: Add PR number in KFAIL.
+
2020-04-28 Tom de Vries <tdevries@suse.de>
* gdb.dwarf2/main-foo.c: New test.
# representation with GNAT (fat pointers). In this case, GDB "forgets" that
# it's dealing with an access and prints directly the array contents. This
# should be fixed some day.
-setup_kfail "gdb/NNNN" *-*-*
+setup_kfail "gdb/25883" *-*-*
gdb_test "print ntp" " = \\(access pack\\.table_type\\) $hex.*"
gdb_test "print ntp.all" " = \\(3 => 30, 40\\)"
gdb_test "print ntp(3)" " = 30"