linkage.exp: Use wildcards when matching N32.

* gcc.misc-tests/linkage.exp: Use wildcards when matching N32.
	Ensure logfile entry matches exec command line.

From-SVN: r42814
This commit is contained in:
Kaveh R. Ghazi 2001-06-02 20:35:08 +00:00 committed by Kaveh Ghazi
parent 20f914dc05
commit 873279879c
2 changed files with 8 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2001-06-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* gcc.misc-tests/linkage.exp: Use wildcards when matching N32.
Ensure logfile entry matches exec command line.
2001-05-31 Richard Henderson <rth@redhat.com>
* gcc.c-torture/execute/memcheck/blkarg.x: Disable the test.

View File

@ -32,16 +32,16 @@ if [isnative] then {
if [ string match "*64*" $file_string ] {
set native_cflags "-64"
}
if [ string match "N32" $file_string ] {
if [ string match "*N32*" $file_string ] {
set native_cflags "-n32"
}
}
catch { exec rm -f linkage-y.o }
send_log "cc -c $srcdir/$subdir/linkage-y.c >&/dev/null\n"
send_log "cc -c $native_cflags $srcdir/$subdir/linkage-y.c >&/dev/null\n"
catch { exec cc -c $native_cflags "$srcdir/$subdir/linkage-y.c" >&/dev/null }
if ![file exists "linkage-y.o"] then {
send_log "c89 -c $srcdir/$subdir/linkage-y.c >&/dev/null\n"
send_log "c89 -c $native_cflags $srcdir/$subdir/linkage-y.c >&/dev/null\n"
catch { exec c89 -c $native_cflags "$srcdir/$subdir/linkage-y.c" >&/dev/null }
}
if [file exists "linkage-y.o"] then {