From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28462 invoked by alias); 18 Feb 2002 22:37:27 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 28346 invoked from network); 18 Feb 2002 22:37:19 -0000 Received: from unknown (HELO duracef.shout.net) (204.253.184.12) by sources.redhat.com with SMTP; 18 Feb 2002 22:37:19 -0000 Received: (from mec@localhost) by duracef.shout.net (8.11.6/8.11.6) id g1IMbH122114 for gdb@sources.redhat.com; Mon, 18 Feb 2002 16:37:17 -0600 Date: Mon, 18 Feb 2002 14:37:00 -0000 From: Michael Elizabeth Chastain Message-Id: <200202182237.g1IMbH122114@duracef.shout.net> To: gdb@sources.redhat.com Subject: how to call gdb_test "" ... ? X-SW-Source: 2002-02/txt/msg00233.txt.bz2 I am reworking gdb.base/list.exp and in the process I'm converting a lot of send_gdb calls to gdb_test. (If you want to know why I'm reworking it, I'm getting rid of the "testcnt" mechanism, which list.exp uses instead of just issuing a PASS when a test succeeds). In one place I want to do this: gdb_test "list list0.c:10" "..." gdb_test "" "..." gdb_test "" "..." gdb_test "" "..." That is to say, I want to send a "list" command, and then send some empty commands and look at the results as usual. gdb_test does not work with an argument of "". Is there an easy way to do this, or should I just stick with send_gdb "\n"? The test script already calls send_gdb "\n" and I don't mind keeping it that way. I'm just wondering if someone knows a better idiom. Michael C