gdb/testsuite: make test names unique in gdb.python/py-explore-cc.exp

Add additional text to some test names to make them unique.  In one
case, correct the test name (copy & paste error) to make it correctly
reflect what the test is doing.

gdb/testsuite/ChangeLog:

	* gdb.python/py-explore-cc.exp: Extend test names to make them
	unique.
This commit is contained in:
Andrew Burgess 2021-03-08 18:08:36 +00:00
parent 0125fabc7a
commit 66bb1dd9cd
2 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
2021-03-12 Andrew Burgess <andrew.burgess@embecosm.com>
* gdb.python/py-explore-cc.exp: Extend test names to make them
unique.
2021-03-12 Andrew Burgess <andrew.burgess@embecosm.com>
* gdb.python/py-lookup-type.exp: Remove duplicate test.

View File

@ -66,7 +66,7 @@ gdb_test_multiple "explore b" "" {
pass "explore b"
gdb_test_multiple "0" "explore_base_class_A" {
-re "The value of 'b\.A' is a struct/class of type 'A' with no fields\." {
pass "explore_base_class_A"
pass "explore_base_class_A, exploring b"
gdb_test_multiple "\0" "return_to_b_from_A" {
-re ".*$b_desc.*Enter the field number of choice:.*" {
pass "return_to_b_from_A"
@ -85,7 +85,7 @@ gdb_test_multiple "explore b" "" {
pass "explore_field_c_of_b"
gdb_test_multiple "\0" "return_to_b_from_c" {
-re "$b_desc.*Enter the field number of choice:.*" {
pass "return_to_b_from_i"
pass "return_to_b_from_c"
}
}
}
@ -107,7 +107,7 @@ gdb_test_multiple "explore B" "" {
pass "explore B"
gdb_test_multiple "0" "explore_base_class_A" {
-re "base class 'A' of 'B' is a struct/class of type 'A' with no fields\." {
pass "explore_base_class_A"
pass "explore_base_class_A, exploring B"
gdb_test_multiple "\0" "return_to_B" {
-re "$B_desc.*Enter the field number of choice:.*" {
pass "return_to_B"
@ -116,7 +116,7 @@ gdb_test_multiple "explore B" "" {
pass "explore_field_i_of_B"
gdb_test_multiple "\0" "return_to_B_from_i" {
-re "$B_desc.*Enter the field number of choice:.*" {
pass "return_to_B_from_i"
pass "return_to_B_from_i, exploring B"
}
}
}