diff options
author | Paul Gilliam <pgilliam@us.ibm.com> | 2005-09-20 23:40:51 +0000 |
---|---|---|
committer | Paul Gilliam <pgilliam@us.ibm.com> | 2005-09-20 23:40:51 +0000 |
commit | 1260befad1ed7a8bcec9bdc2d90892b31b07694d (patch) | |
tree | 28bcc814d98d97ef0f92a15556f647e39cf34bf2 | |
parent | fead5cd91c33f72d90553f99b10349b0f154d9df (diff) | |
download | gdb-1260befad1ed7a8bcec9bdc2d90892b31b07694d.zip gdb-1260befad1ed7a8bcec9bdc2d90892b31b07694d.tar.gz gdb-1260befad1ed7a8bcec9bdc2d90892b31b07694d.tar.bz2 |
2005-09-20 Paul Gilliam <pgilliam@us.ibm.com>
* gdb.arch/altivec-abi.exp: Elide the 'in' from what's expected
after a 'finish' command.
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.arch/altivec-abi.exp | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 6fe82ea..7f50ff1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2005-09-20 Paul Gilliam <pgilliam@us.ibm.com> + + * gdb.arch/altivec-abi.exp: Elide the 'in' from what's expected + after a 'finish' command. + 2005-09-20 Wu Zhou <woodzltc@cn.ibm.com> * c-exp.y (parse-number): Modify the float parsing logic to let it diff --git a/gdb/testsuite/gdb.arch/altivec-abi.exp b/gdb/testsuite/gdb.arch/altivec-abi.exp index dcf3360..5c74d90 100644 --- a/gdb/testsuite/gdb.arch/altivec-abi.exp +++ b/gdb/testsuite/gdb.arch/altivec-abi.exp @@ -75,7 +75,7 @@ if ![runto_main] then { gdb_test "b marker" "Breakpoint 2 at.*file.*altivec-abi.c, line \[0-9\]+." "break marker" gdb_test "continue" "Breakpoint 2.*marker.*altivec-abi.c.*" "continue to marker" -gdb_test "finish" "Run till exit from .0.*in marker.*at.*altivec-abi.c.*main \\(\\) at.*altivec-abi.c.*result = vec_func \\(vshort,.*goes in v2.*" "back to main (1)" +gdb_test "finish" "Run till exit from .0.*marker.*at.*altivec-abi.c.*main \\(\\) at.*altivec-abi.c.*result = vec_func \\(vshort,.*goes in v2.*" "back to main (1)" # now all the arguments of vec_fun are initialized @@ -100,7 +100,7 @@ gdb_test "step" \ "step into vec_fun" set pattern2 $pattern -append pattern2 " at.*altivec-abi.c.*in main.*result = vec_func .vshort,.*goes in v2.*Value returned is.*= .2, 2, 2, 2." +append pattern2 " at.*altivec-abi.c.*main.*result = vec_func .vshort,.*goes in v2.*Value returned is.*= .2, 2, 2, 2." # Let's see if the result is returned correctly. gdb_test "finish" \ |