From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4983 invoked by alias); 18 Jun 2004 19:43:55 -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 4969 invoked from network); 18 Jun 2004 19:43:54 -0000 Received: from unknown (HELO tisch.mail.mindspring.net) (207.69.200.157) by sourceware.org with SMTP; 18 Jun 2004 19:43:54 -0000 Received: from user-119a90a.biz.mindspring.com ([66.149.36.10] helo=berman.michael-chastain.com) by tisch.mail.mindspring.net with esmtp (Exim 3.33 #1) id 1BbPHB-0000ED-00; Fri, 18 Jun 2004 15:43:50 -0400 Received: by berman.michael-chastain.com (Postfix, from userid 502) id BD21A4B104; Fri, 18 Jun 2004 15:43:50 -0400 (EDT) To: cagney@gnu.org, keiths@redhat.com, mec.gnu@mindspring.com Subject: Re: RFA: patch to fix gdb/1680 Cc: drow@false.org, gdb-patches@sources.redhat.com, jimb@redhat.com Message-Id: <20040618194350.BD21A4B104@berman.michael-chastain.com> Date: Fri, 18 Jun 2004 19:43:00 -0000 From: mec.gnu@mindspring.com (Michael Elizabeth Chastain) X-SW-Source: 2004-06/txt/msg00441.txt.bz2 Literally, the test that blows up is: foreach r {0 1 2 3 4 5 6 7} { gdb_test "print \$xmm$r.v4_float" \ ".. = {$r, $r.25, $r.5, $r.75}.*" \ "check contents of %xmm$r" } I ripped out most of the other meta-characters and this still blows up: gdb_test "print xmm0.v4_float" \ ".. = {0, 0.25, 0.5, 0.75}.*" \ "check contents of xmm0" "blows up" means: ERROR: Process no longer exists What Daniel is saying, and I'm agreeing, is that gdb.cp/*.exp has a lot of similar tests. And they are not blowing up. Michael C