diff options
Diffstat (limited to 'gdb/testsuite/gdb.cp/casts.exp')
-rw-r--r-- | gdb/testsuite/gdb.cp/casts.exp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/testsuite/gdb.cp/casts.exp b/gdb/testsuite/gdb.cp/casts.exp index 7272a29..ee499d7 100644 --- a/gdb/testsuite/gdb.cp/casts.exp +++ b/gdb/testsuite/gdb.cp/casts.exp @@ -141,7 +141,7 @@ gdb_test "print dynamic_cast<Alpha &> (derived)" \ "dynamic_cast simple upcast to reference" gdb_test "print dynamic_cast<Derived *> (ad)" \ - " = \\(Derived \\*\\) $nonzero_hex" \ + " = \\(Derived \\*\\) ${nonzero_hex}( <vtable for Derived.*>)?" \ "dynamic_cast simple downcast" gdb_test "print dynamic_cast<VirtuallyDerived *> (add)" \ @@ -157,7 +157,7 @@ gdb_test "print dynamic_cast<VirtuallyDerived &> (*ad)" \ "dynamic_cast to reference to non-existing base" gdb_test "print dynamic_cast<DoublyDerived *> (add)" \ - " = \\(DoublyDerived \\*\\) $nonzero_hex" \ + " = \\(DoublyDerived \\*\\) ${nonzero_hex}( <vtable for DoublyDerived.*>)?" \ "dynamic_cast unique downcast" gdb_test "print dynamic_cast<Gamma *> (add)" \ |