When running gdb.base/jit-so.exp, we see duplicate test names:
$ grep PASS testsuite/gdb.sum | sort | uniq -c | sort -n
...
2 PASS: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
2 PASS: gdb.base/jit-so.exp: one_jit_test-2: info function jit_function
Give an explicit name to one test to avoid this.
gdb/testsuite/ChangeLog:
* gdb.base/jit-so.exp (one_jit_test): Change test name.
+2020-05-11 Simon Marchi <simon.marchi@polymtl.ca>
+
+ * gdb.base/jit-so.exp (one_jit_test): Change test name.
+
2020-05-11 Andrew Burgess <andrew.burgess@embecosm.com>
* lib/check-test-names.exp (all_test_names): New module variable.
gdb_continue_to_breakpoint "break here 2"
# All jit librares must have been unregistered
gdb_test "info function jit_function" \
- "All functions matching regular expression \"jit_function\":"
+ "All functions matching regular expression \"jit_function\":" \
+ "info function jit_function after unregistration"
}
}