From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28543 invoked by alias); 16 Jan 2003 01:56:16 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 28531 invoked from network); 16 Jan 2003 01:56:15 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 16 Jan 2003 01:56:15 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id h0G1RsB03596 for ; Wed, 15 Jan 2003 20:27:54 -0500 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [172.16.52.156]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id h0G1uEa27810 for ; Wed, 15 Jan 2003 20:56:14 -0500 Received: from localhost.redhat.com (romulus-int.sfbay.redhat.com [172.16.27.46]) by pobox.corp.redhat.com (8.11.6/8.11.6) with ESMTP id h0G1uC313163 for ; Wed, 15 Jan 2003 20:56:13 -0500 Received: by localhost.redhat.com (Postfix, from userid 469) id 5D593FF79; Wed, 15 Jan 2003 21:00:28 -0500 (EST) From: Elena Zannoni MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15910.4668.217371.606116@localhost.redhat.com> Date: Thu, 16 Jan 2003 01:56:00 -0000 To: gdb-patches@sources.redhat.com Cc: carlton@math.stanford.edu Subject: [PATCH/commit] Fix fallout from until changes X-SW-Source: 2003-01/txt/msg00589.txt.bz2 Committed. David, try now. Elena 2003-01-15 Elena Zannoni * gdb.base/break.exp: Fix change of default location, because of removal of until tests. * gdb.base/help.exp: Update test for new 'until' help message. Add test for help on 'advance'. Index: break.exp =================================================================== RCS file: /cvs/uberbaum/gdb/testsuite/gdb.base/break.exp,v retrieving revision 1.13 diff -u -p -r1.13 break.exp --- break.exp 15 Jan 2003 14:25:11 -0000 1.13 +++ break.exp 16 Jan 2003 01:53:21 -0000 @@ -375,6 +375,12 @@ gdb_expect { timeout {fail "(timeout) break on non-existent source line"} } +# Run to the desired default location. If not positioned here, the +# tests below don't work. +# +gdb_test "until 79" "main .* at .*:79.*" "until 79" + + # Verify that GDB allows one to just say "break", which is treated # as the "default" breakpoint. Note that GDB gets cute when printing # the informational message about other breakpoints at the same Index: help.exp =================================================================== RCS file: /cvs/uberbaum/gdb/testsuite/gdb.base/help.exp,v retrieving revision 1.12 diff -u -p -r1.12 help.exp --- help.exp 18 Oct 2002 18:54:55 -0000 1.12 +++ help.exp 16 Jan 2003 01:53:40 -0000 @@ -36,6 +36,8 @@ gdb_test "set height 400" "" "test set h # use a larger expect input buffer for long help outputs. # test help add-symbol-file gdb_test "help add-symbol-file" "Usage: add-symbol-file FILE ADDR \\\[-s -s \.\.\.\\\]\[\r\n\]+Load the symbols from FILE, assuming FILE has been dynamically loaded\.\[\r\n\]+ADDR is the starting address of the file's text\.\[\r\n\]+The optional arguments are section-name section-address pairs and\[\r\n\]+should be specified if the data and bss segments are not contiguous\[\r\n\]+with the text\. SECT is a section name to be loaded at SECT_ADDR\." "help add-symbol-file" +# test help advance +gdb_test "help advance" "Continue the program up to the given location \\(same form as args for break command\\)\.\[\r\n]+Execution will also stop upon exit from the current stack frame\." "help advance" # test help aliases gdb_test "help aliases" "Aliases of other commands\.\[\r\n\]+List of commands\:.*\[\r\n\]+Type \"help\" followed by command name for full documentation\.\[\r\n\]+Command name abbreviations are allowed if unambiguous\." "help aliases" # test help append @@ -562,9 +564,9 @@ gdb_test "help tbreak" "Set a temporary # test help tty gdb_test "help tty" "Set terminal for future runs of program being debugged\." "help tty" # test help until "u" abbreviation -gdb_test "help u" "Execute until the program reaches a source line greater than the current\[\r\n\]+or a specified line or address or function \\(same args as break command\\)\.\[\r\n\]+Execution will also stop upon exit from the current stack frame\." "help until \"u\" abbreviation" +gdb_test "help u" "Execute until the program reaches a source line greater than the current\[\r\n\]+or a specified location \\(same args as break command\\) within the current frame\." "help until \"u\" abbreviation" # test help until -gdb_test "help until" "Execute until the program reaches a source line greater than the current\[\r\n\]+or a specified line or address or function \\(same args as break command\\)\.\[\r\n\]+Execution will also stop upon exit from the current stack frame\." "help until" +gdb_test "help until" "Execute until the program reaches a source line greater than the current\[\r\n\]+or a specified location \\(same args as break command\\) within the current frame\." "help until" # test help undisplay gdb_test "help undisplay" "Cancel some expressions to be displayed when program stops\.\[\r\n\]+Arguments are the code numbers of the expressions to stop displaying\.\[\r\n\]+No argument means cancel all automatic-display expressions\.\[\r\n\]+\"delete display\" has the same effect as this command\.\[\r\n\]+Do \"info display\" to see current list of code numbers\." "help undisplay" # test help unset environment