linkage.exp: Use wildcards when matching N32.
authorKaveh R. Ghazi <ghazi@caip.rutgers.edu>
Sat, 2 Jun 2001 20:35:08 +0000 (20:35 +0000)
committerKaveh Ghazi <ghazi@gcc.gnu.org>
Sat, 2 Jun 2001 20:35:08 +0000 (20:35 +0000)
* gcc.misc-tests/linkage.exp: Use wildcards when matching N32.
Ensure logfile entry matches exec command line.

From-SVN: r42814

gcc/testsuite/ChangeLog
gcc/testsuite/gcc.misc-tests/linkage.exp

index 0c562fd..f933e1a 100644 (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.
index 47cd2e3..a58fea6 100644 (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 {