Currently, if you diff testsuite/gdb.sum of two builds built from different
source directories you see this spurious hunk:
  -PASS: gdb.gdb/unittest.exp: maintenance check xml-descriptions /home/pedro/gdb1/src/gdb/testsuite/../features
  +PASS: gdb.gdb/unittest.exp: maintenance check xml-descriptions /home/pedro/gdb2/src/gdb/testsuite/../features
After this commit we'll show instead:
  PASS: gdb.gdb/unittest.exp: maintenance check xml-descriptions ${srcdir}/../features
gdb/testsuite/ChangeLog:
2017-10-24  Pedro Alves  <palves@redhat.com>
	* gdb.gdb/unittest.exp ('maintenance check xml-descriptions'): Use
	custom test name.
+2017-10-24  Pedro Alves  <palves@redhat.com>
+
+       * gdb.gdb/unittest.exp ('maintenance check xml-descriptions'): Use
+       custom test name.
+
 2017-10-24  Pedro Alves  <palves@redhat.com>
 
        * gdb.base/startup-with-shell.exp ('touch $unique_file'): Don't
 
 
 if { ![is_remote host] } {
     gdb_test "maintenance check xml-descriptions ${srcdir}/../features" \
-       "Tested $decimal XML files, 0 failed"
+       "Tested $decimal XML files, 0 failed" \
+       "maintenance check xml-descriptions \${srcdir}/../features"
 }