From mboxrd@z Thu Jan 1 00:00:00 1970 From: "John David Anglin" To: dave@hiauly1.hia.nrc.ca (John David Anglin) Cc: binutils@sources.redhat.com Subject: Re: vax quad.exp testsuite failure Date: Wed, 14 Mar 2001 16:06:00 -0000 Message-id: <200103150005.TAA16644@hiauly1.hia.nrc.ca> References: X-SW-Source: 2001-03/msg00162.html > The following failure occurs with the cvs source from 20010202 under vax-ultrix: > > Running /xxx/gnu/binutils-2.10.91/gas/testsuite/gas/vax/quad.exp ... > GAS LISTING /xxx/gnu/binutils-2.10.91/gas/testsuite/gas/vax/quad.s > page 1 > > > 1 .text > 2 0000 7D8F7856 movq $0xaabbccdd12345678,r0 > 2 3412DDCC > 2 BBAA50 > FAIL: quad.s: quadword immediate values This patch fixes the expected test result. Dave -- J. David Anglin dave.anglin@nrc.ca National Research Council of Canada (613) 990-0752 (FAX: 952-6605) 2001-01-14 John David Anglin * gas/vax/quad.exp: Correct expected result. --- gas/vax/quad.exp.orig Mon May 3 03:28:53 1999 +++ gas/vax/quad.exp Wed Mar 14 16:30:48 2001 @@ -8,7 +8,7 @@ expect { -re "^ +2\[ \t\]+0000+ 7D8F7856\[ \t\]+movq\[^\n\]*\n" { set x1 1 } -re "^ +2\[ \t\]+3412DDCC\[^\n\]*\n" { set x2 1 } - -re "^ +2\[ \t\]+BBAA5001\[ \t\]*\r\n" { set x3 1 } + -re "^ +2\[ \t\]+BBAA50\[ \t\]*\r\n" { set x3 1 } -re "\[^\n\]*\n" { } timeout { perror "timeout\n"; break } eof { break }