diff options
author | Joel Brobecker <brobecker@gnat.com> | 2008-09-10 17:11:11 +0000 |
---|---|---|
committer | Joel Brobecker <brobecker@gnat.com> | 2008-09-10 17:11:11 +0000 |
commit | b6db24e54972d0345d708ea0ec3d108f9a147f52 (patch) | |
tree | b61af5a7fa14d4ae18d05546ce42538efcfb8155 /gdb/testsuite/gdb.ada/fixed_points.exp | |
parent | * gdb.ada/packed_tagged.exp: Accept "boolean" as a valid type (diff) | |
download | binutils-gdb-b6db24e54972d0345d708ea0ec3d108f9a147f52.tar.gz binutils-gdb-b6db24e54972d0345d708ea0ec3d108f9a147f52.tar.bz2 binutils-gdb-b6db24e54972d0345d708ea0ec3d108f9a147f52.zip |
* gdb.ada/array_bounds.exp, gdb.ada/array_subscript_addr.exp,
gdb.ada/arrayidx.exp, gdb.ada/arrayparam.exp, gdb.ada/arrayptr.exp,
gdb.ada/assign_1.exp, gdb.ada/boolean_expr.exp,
gdb.ada/char_param.exp, gdb.ada/exprs.exp, gdb.ada/fixed_cmp.exp,
gdb.ada/fixed_points.exp, gdb.ada/fun_addr.exp,
gdb.ada/funcall_param.exp, gdb.ada/homonym.exp,
gdb.ada/interface.exp, gdb.ada/null_array.exp,
gdb.ada/packed_array.exp, gdb.ada/packed_tagged.exp,
gdb.ada/print_chars.exp, gdb.ada/print_pc.exp,
gdb.ada/str_ref_cmp.exp, gdb.ada/sym_print_name.exp,
gdb.ada/taft_type.exp, gdb.ada/tagged.exp, gdb.ada/type_coercion.exp:
Include the "= " sequence in the expected output of print tests.
Diffstat (limited to 'gdb/testsuite/gdb.ada/fixed_points.exp')
-rw-r--r-- | gdb/testsuite/gdb.ada/fixed_points.exp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/testsuite/gdb.ada/fixed_points.exp b/gdb/testsuite/gdb.ada/fixed_points.exp index 5735d3f69aa..62d427b586a 100644 --- a/gdb/testsuite/gdb.ada/fixed_points.exp +++ b/gdb/testsuite/gdb.ada/fixed_points.exp @@ -38,13 +38,13 @@ set bp_location [gdb_get_line_number "Set breakpoint here" ${testdir}/fixed_poin runto "fixed_points.adb:$bp_location" gdb_test "print base_object" \ - ".* = -50" \ + "= -50" \ "p on a fixed point type" gdb_test "print subtype_object" \ - ".* = -50" \ + "= -50" \ "p on a subtype fixed point type" gdb_test "print new_type_object" \ - ".* = -50" \ + "= -50" \ "p on a new fixed point type" |