gdb: change duplicate test name in gdb.base/jit-so.exp

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.
This commit is contained in:
Simon Marchi 2020-05-11 20:10:35 -04:00 committed by Simon Marchi
parent a1becf61f7
commit ebf470809e
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,7 @@
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.

View File

@ -110,7 +110,8 @@ proc one_jit_test {count match_str} {
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"
}
}