list.exp: Adjust "set listsize -1" to current test source's real line count.
authorPedro Alves <palves@redhat.com>
Thu, 28 Mar 2013 11:56:15 +0000 (11:56 +0000)
committerPedro Alves <palves@redhat.com>
Thu, 28 Mar 2013 11:56:15 +0000 (11:56 +0000)
The "set listsize -1" test in list.exp can't work correct anymore
nowadays, because the test's source files grew over time, and this
particular test was never updated.

This fixes it in the obvious way.

gdb/testsuite/
2013-03-28  Pedro Alves  <palves@redhat.com>

* gdb.base/list.exp (test_listsize): Adjust test to make sure we
list the whole file.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/list.exp

index 69684ef2622f6876ad47723f769cc8b9c4506855..8f97fd722b91fe48014c9cd248eb6c3d18eababb 100644 (file)
@@ -1,3 +1,8 @@
+2013-03-28  Pedro Alves  <palves@redhat.com>
+
+       * gdb.base/list.exp (test_listsize): Adjust test to make sure we
+       list the whole file.
+
 2013-03-28  Pedro Alves  <palves@redhat.com>
 
        * gdb.base/list.exp (set_listsize): Use gdb_test_no_output for
index 8684b0c975187abab1163040b153d07b7fd0aa53..97cca9165bda1bdb50a40ba519942dabdeb42cdb 100644 (file)
@@ -138,7 +138,7 @@ proc test_listsize {} {
 
     set_listsize -1
     setup_xfail "*-*-*"
-    gdb_test "list 1" "1\[ \t\]+#include .*\r\n39\[ \t\]+\}" "list line 1 with unlimited listsize"
+    gdb_test "list 1" "1\[ \t\]+#include .*\r\n43\[ \t\]+\}" "list line 1 with unlimited listsize"
 }
 
 #