Relax regexp in gdb.rust/unsized.exp
authorTom Tromey <tom@tromey.com>
Sat, 12 Mar 2022 21:36:43 +0000 (14:36 -0700)
committerTom Tromey <tom@tromey.com>
Sat, 12 Mar 2022 21:37:37 +0000 (14:37 -0700)
With nightly rustc, gdb.rust/unsized.exp fails:

    (gdb) ptype *us
    Structure has no component named operator*.

rustc changed to emit a bit more debug info for unsized types.
Because the original test is just to make sure that ptype of an
unsized array looks right, this patch relaxes the regexp and changes
the expression.  I think this keeps the original test meaning, but
also works with nightly.  I also tested stable and 1.48.

gdb/testsuite/gdb.rust/unsized.exp

index 388e1727fd4698d256afcd5a3c179d97d99cfd84..76d0bbb739b8b3c25338002e29bde0ad6a193cf0 100644 (file)
@@ -31,5 +31,4 @@ if {![runto ${srcfile}:$line]} {
     return -1
 }
 
-gdb_test "ptype *us" \
-    " = struct \[a-z:\]*V<\\\[u8\\\]> {.* data: \\\[u8\\\],.*}"
+gdb_test "ptype us" " = .*V<\\\[u8\\\]>.*"