gdb/testsuite/

* gdb.base/list.exp (test_only_end): New function.
	Call it.
This commit is contained in:
Jan Kratochvil 2012-08-06 20:14:11 +00:00
parent 78ac5f8316
commit 777f26c29b
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2012-08-06 Jan Kratochvil <jan.kratochvil@redhat.com>
* gdb.base/list.exp (test_only_end): New function.
Call it.
2012-08-06 Tom Tromey <tromey@redhat.com>
* gdb.python/py-mi.exp: Add test for printer whose children

View File

@ -505,6 +505,12 @@ proc test_forward_search {} {
verbose "Timeout is now $timeout seconds" 2
}
proc test_only_end {} {
gdb_test_no_output "set listsize 2"
gdb_test "list 1" "list 1\r\n1\[ \t\]\[^\r\n\]*\r\n2\[ \t\]\[^\r\n\]*"
gdb_test "list ,5" "list ,5\r\n4\[ \t\]\[^\r\n\]*\r\n5\[ \t\]\[^\r\n\]*"
}
# Start with a fresh gdb.
gdb_exit
@ -526,6 +532,7 @@ if [ set_listsize 10 ] then {
test_list_range
test_list_filename_and_function
test_forward_search
test_only_end
}
remote_exec build "rm -f list0.h"