diff options
author | Andrew Burgess <andrew.burgess@embecosm.com> | 2021-05-13 16:56:03 +0100 |
---|---|---|
committer | Andrew Burgess <andrew.burgess@embecosm.com> | 2021-05-13 17:53:39 +0100 |
commit | 62f2f198cdf2e006f27f61dfa6210d276d7a8e37 (patch) | |
tree | 6fa3e6250917022760259a8a9ddeebcc6091a5ee /gdb/testsuite/ChangeLog | |
parent | 5c6f801d8e6740d9c1dfa7ff4a9ed2ec160a5e1d (diff) | |
download | gdb-62f2f198cdf2e006f27f61dfa6210d276d7a8e37.zip gdb-62f2f198cdf2e006f27f61dfa6210d276d7a8e37.tar.gz gdb-62f2f198cdf2e006f27f61dfa6210d276d7a8e37.tar.bz2 |
gdb/testsuite: resolve duplicate test names in gdb.guile/*.exp
This commit resolves almost all of the remaining duplicate test names
in gdb.guile/*.exp. This is done by either:
- Making use of with_test_prefix,
- Giving tests a unique name,
- Extending the existing name to make it unique,
- Not printing PASS lines for simple setup commands (e.g. loading
support modules, or adjusting GDB internal settings not relating to
guile).
gdb/testsuite/ChangeLog:
* gdb.guile/scm-frame-args.exp: Add with_test_prefix to resolve
duplicate test names.
* gdb.guile/scm-parameter.exp: Provide test names to avoid
duplicate names based on the command being run.
* gdb.guile/scm-symbol.exp: Extend test name to make it unique.
* gdb.guile/scm-type.exp (restart_gdb): Don't print PASS line when
loading a support module.
(test_equality): Update test name to match the actual test, making
the name unique in the process.
* gdb.guile/scm-value.exp (test_value_in_inferior): Add test names
to resolve duplicate tests.
(test_inferior_function_call): Likewise.
(test_subscript_regression): Likewise.
Diffstat (limited to 'gdb/testsuite/ChangeLog')
-rw-r--r-- | gdb/testsuite/ChangeLog | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index afcf2ac..287313f 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,5 +1,21 @@ 2021-05-10 Andrew Burgess <andrew.burgess@embecosm.com> + * gdb.guile/scm-frame-args.exp: Add with_test_prefix to resolve + duplicate test names. + * gdb.guile/scm-parameter.exp: Provide test names to avoid + duplicate names based on the command being run. + * gdb.guile/scm-symbol.exp: Extend test name to make it unique. + * gdb.guile/scm-type.exp (restart_gdb): Don't print PASS line when + loading a support module. + (test_equality): Update test name to match the actual test, making + the name unique in the process. + * gdb.guile/scm-value.exp (test_value_in_inferior): Add test names + to resolve duplicate tests. + (test_inferior_function_call): Likewise. + (test_subscript_regression): Likewise. + +2021-05-10 Andrew Burgess <andrew.burgess@embecosm.com> + * lib/guile.exp (gdb_scm_load_file): Use empty test name to silence PASS lines. (gdb_install_guile_module): Likewise. |