* gdb.base/exprs.exp ("sizeof (long long) > sizeof (long) (true)"):

Don't forget to match the GDB prompt.
This commit is contained in:
Jim Blandy 2001-06-06 18:25:46 +00:00
parent 42c6598756
commit b18bced9af
2 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,8 @@
2001-06-06 Jim Blandy <jimb@redhat.com>
* gdb.base/exprs.exp ("sizeof (long long) > sizeof (long) (true)"):
Don't forget to match the GDB prompt.
* gdb.trace/gdb_c_test.c, actions.c: Fix misspellings.
2001-06-04 Jim Blandy <jimb@redhat.com>

View File

@ -238,11 +238,11 @@ test_expr "set variable v_unsigned_long = 0" "print (void*)v_unsigned_long" "\\$
#
send_gdb "print sizeof (long long) > sizeof (long)\n"
gdb_expect {
-re "\\$\[0-9\]* = $true" {
-re "\\$\[0-9\]* = $true.*$gdb_prompt" {
set ok 1
pass "sizeof (long long) > sizeof (long) (true)"
}
-re "\\$\[0-9\]* = $false" {
-re "\\$\[0-9\]* = $false.*$gdb_prompt" {
set ok 0
pass "sizeof (long long) > sizeof (long) (false)"
}