diff options
author | Tom Tromey <tromey@redhat.com> | 2012-11-12 17:37:38 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2012-11-12 17:37:38 +0000 |
commit | bd69fc683f383772bb8fab43c5d4af8d0cd4a8b4 (patch) | |
tree | 9749d8fbee083798c2657964bd816fd1795a6300 /gdb/testsuite/gdb.base | |
parent | 2621e0fd5c40e316dfac2a492972a1344c6a0583 (diff) | |
download | gdb-bd69fc683f383772bb8fab43c5d4af8d0cd4a8b4.zip gdb-bd69fc683f383772bb8fab43c5d4af8d0cd4a8b4.tar.gz gdb-bd69fc683f383772bb8fab43c5d4af8d0cd4a8b4.tar.bz2 |
* c-typeprint.c (find_typedef_for_canonicalize,
print_name_maybe_canonical): New functions.
(c_print_type): Look up type name.
(cp_type_print_derivation_info): Add flags argument. Use
print_name_maybe_canonical.
(cp_type_print_method_args): Add wrapping.
(c_type_print_varspec_prefix): Use print_name_maybe_canonical.
(c_type_print_template_args): New function.
(c_type_print_base): Change wrapping. Use
print_name_maybe_canonical.
<TYPE_CODE_STRUCT>: Possibly create a typedef hash, and do
type name lookups.
* gdbtypes.c (types_equal): No longer static.
* gdbtypes.h (types_equal): Declare.
* typeprint.c (type_print_raw_options, default_ptype_flags):
Update.
(struct typedef_hash_table): New.
(hash_typedef_field, eq_typedef_field,
recursively_update_typedef_hash, add_template_parameters,
create_typedef_hash, free_typedef_hash, do_free_typedef_hash,
make_cleanup_free_typedef_hash, copy_typedef_hash_element,
copy_typedef_hash, find_typedef_in_hash): New functions.
* typeprint.h (struct type_print_options) <local_typedefs>:
New field.
(recursively_update_typedef_hash, add_template_parameters,
create_typedef_hash, free_typedef_hash,
make_cleanup_free_typedef_hash, copy_typedef_hash,
find_typedef_in_hash): Declare.
testsuite
* gdb.base/call-sc.exp: Use "ptype/r".
* gdb.base/volatile.exp: Don't expect "int".
* gdb.cp/ptype-flags.cc: New file.
* gdb.cp/ptype-flags.exp: New file.
* gdb.cp/templates.exp: Use ptype/r.
(test_ptype_of_templates, test_template_typedef): Likewise.
* lib/cp-support.exp (cp_test_ptype_class): Add in_ptype_arg
argument. Handle template names and template parameters.
* gdb.mi/mi-var-cmd.exp: Accept "long".
* gdb.mi/mi-var-child.exp: Accept "long".
* gdb.mi/mi-var-display.exp: Accept "long".
* gdb.mi/mi2-var-child.exp: Accept "long".
Diffstat (limited to 'gdb/testsuite/gdb.base')
-rw-r--r-- | gdb/testsuite/gdb.base/call-sc.exp | 4 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/volatile.exp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/gdb/testsuite/gdb.base/call-sc.exp b/gdb/testsuite/gdb.base/call-sc.exp index 1b2a495..703b37f 100644 --- a/gdb/testsuite/gdb.base/call-sc.exp +++ b/gdb/testsuite/gdb.base/call-sc.exp @@ -89,13 +89,13 @@ proc start_scalars_test { type } { # check that type matches what was passed in set test "ptype; ${testfile}" set foo_t "xxx" - gdb_test_multiple "ptype ${type}" "${test}" { + gdb_test_multiple "ptype/r ${type}" "${test}" { -re "type = (\[^\r\n\]*)\r\n$gdb_prompt $" { set foo_t "$expect_out(1,string)" pass "$test (${foo_t})" } } - gdb_test "ptype foo" "type = ${foo_t}" "ptype foo; ${testfile} $expect_out(1,string)" + gdb_test "ptype/r foo" "type = ${foo_t}" "ptype foo; ${testfile} $expect_out(1,string)" } diff --git a/gdb/testsuite/gdb.base/volatile.exp b/gdb/testsuite/gdb.base/volatile.exp index ade9d66..1f34b83 100644 --- a/gdb/testsuite/gdb.base/volatile.exp +++ b/gdb/testsuite/gdb.base/volatile.exp @@ -156,7 +156,7 @@ local_compiler_xfail_check gdb_test "ptype veneer" "type = volatile short( int)? \\* volatile.*" local_compiler_xfail_check -gdb_test "ptype video" "type = volatile (unsigned short|short unsigned)( int) \\* volatile.*" +gdb_test "ptype video" "type = volatile (unsigned short|short unsigned) \\* volatile.*" local_compiler_xfail_check gdb_test "ptype vacuum" "type = volatile long( int)? \\* volatile.*" |