From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8570 invoked by alias); 4 Jun 2010 22:16:48 -0000 Received: (qmail 8560 invoked by uid 22791); 4 Jun 2010 22:16:47 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from smtp-outbound-2.vmware.com (HELO smtp-outbound-2.vmware.com) (65.115.85.73) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 04 Jun 2010 22:16:43 +0000 Received: from jupiter.vmware.com (mailhost5.vmware.com [10.16.68.131]) by smtp-outbound-2.vmware.com (Postfix) with ESMTP id 7B3C047008 for ; Fri, 4 Jun 2010 15:16:42 -0700 (PDT) Received: from msnyder-server.eng.vmware.com (promd-2s-dhcp138.eng.vmware.com [10.20.124.138]) by jupiter.vmware.com (Postfix) with ESMTP id 7295ADC1D6 for ; Fri, 4 Jun 2010 15:16:42 -0700 (PDT) Message-ID: <4C097B4A.8080005@vmware.com> Date: Fri, 04 Jun 2010 22:16:00 -0000 From: Michael Snyder User-Agent: Thunderbird 2.0.0.22 (X11/20090609) MIME-Version: 1.0 To: "gdb-patches@sourceware.org" Subject: [patch] gdb.base/pending.exp replace gdb_test_multi Content-Type: multipart/mixed; boundary="------------060506060802080502080908" X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2010-06/txt/msg00147.txt.bz2 This is a multi-part message in MIME format. --------------060506060802080502080908 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 27 This is a simplification. --------------060506060802080502080908 Content-Type: text/plain; name="pending.txt" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="pending.txt" Content-length: 882 2010-06-04 Michael Snyder * gdb.base/pending.exp: Replace gdb_test_multiple with gdb_test. Index: pending.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.base/pending.exp,v retrieving revision 1.20 diff -u -p -r1.20 pending.exp --- pending.exp 1 Jun 2010 21:29:21 -0000 1.20 +++ pending.exp 4 Jun 2010 22:13:08 -0000 @@ -123,11 +123,11 @@ gdb_test "info break" \ # # Test not setting a pending breakpoint # -gdb_test_multiple "break pendfunc2" "Don't set pending breakpoint" { - -re ".*Make breakpoint pending.*y or \\\[n\\\]. $" { - gdb_test "n" "" "Don't set pending breakpoint" - } -} +gdb_test "break pendfunc2" \ + "" \ + "Don't set pending breakpoint" \ + ".*Make breakpoint pending.*y or \\\[n\\\]. $" \ + "n" # # Add condition to pending breakpoint --------------060506060802080502080908--