mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-03-31 16:10:35 +08:00
Fix execute mode test for OSF/1 5.1.
* tests/execute-mode.at (execute mode): Do not use grep -F with an empty pattern. * THANKS: Update. Report by Jay K. Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
This commit is contained in:
parent
64377ca9da
commit
fdc9248662
@ -1,5 +1,11 @@
|
||||
2010-06-19 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||
|
||||
Fix execute mode test for OSF/1 5.1.
|
||||
* tests/execute-mode.at (execute mode): Do not use grep -F
|
||||
with an empty pattern.
|
||||
* THANKS: Update.
|
||||
Report by Jay K.
|
||||
|
||||
Use config.cache variable for PIC flag, to allow override.
|
||||
* libltdl/m4/libtool.m4 (_LT_COMPILER_PIC) <lt_prog_compiler_pic>:
|
||||
Save result, and allow override, through cache variable
|
||||
|
1
THANKS
1
THANKS
@ -106,6 +106,7 @@
|
||||
Jakub Bogusz qboosh@pld-linux.org
|
||||
Jacob Meuser jakemsr@jakemsr.com
|
||||
James Su james.su@gmail.com
|
||||
Jay K jay.krell@cornell.edu
|
||||
Jeff Squyres jsquyres@lam-mpi.org
|
||||
Jeremy C. Reed reed@reedmedia.net
|
||||
Jim Meyering jim@meyering.net
|
||||
|
@ -1,6 +1,6 @@
|
||||
# execute-mode.at -- libtool --mode=execute -*- Autotest -*-
|
||||
#
|
||||
# Copyright (C) 2008, 2009 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2008, 2009, 2010 Free Software Foundation, Inc.
|
||||
# Written by Ralf Wildenhues, 2008
|
||||
#
|
||||
# This file is part of GNU Libtool.
|
||||
@ -193,19 +193,19 @@ do
|
||||
fi
|
||||
AT_CHECK([$LIBTOOL --mode=execute ./foo abc "$arg1" "$arg2" xyz], [], [stdout], [ignore])
|
||||
AT_CHECK([$FGREP "$arg1" stdout], [], [ignore])
|
||||
AT_CHECK([$FGREP "$arg2" stdout], [], [ignore])
|
||||
AT_CHECK([test -z "$arg2" || $FGREP "$arg2" stdout], [], [ignore])
|
||||
AT_CHECK([test `sed -n '/^abc$/,/^xyz$/p' stdout | wc -l` -eq 4])
|
||||
AT_CHECK([$LIBTOOL --mode=execute ./lt-wrapper abc "$arg1" "$arg2" xyz </dev/null], [], [stdout])
|
||||
AT_CHECK([$FGREP "$arg1" stdout], [], [ignore])
|
||||
AT_CHECK([$FGREP "$arg2" stdout], [], [ignore])
|
||||
AT_CHECK([test -z "$arg2" || $FGREP "$arg2" stdout], [], [ignore])
|
||||
AT_CHECK([test `sed -n '/^abc$/,/^xyz$/p' stdout | wc -l` -eq 4])
|
||||
AT_CHECK([$LIBTOOL --mode=execute ./foo lt-wrapper abc "$arg1" "$arg2" xyz], [], [stdout])
|
||||
AT_CHECK([$FGREP "$arg1" stdout], [], [ignore])
|
||||
AT_CHECK([$FGREP "$arg2" stdout], [], [ignore])
|
||||
AT_CHECK([test -z "$arg2" || $FGREP "$arg2" stdout], [], [ignore])
|
||||
AT_CHECK([test `sed -n '/^abc$/,/^xyz$/p' stdout | wc -l` -eq 4])
|
||||
AT_CHECK([$LIBTOOL --mode=execute ./main$EXEEXT abc "$arg1" "$arg2" xyz], [], [stdout])
|
||||
AT_CHECK([$FGREP "$arg1" stdout], [], [ignore])
|
||||
AT_CHECK([$FGREP "$arg2" stdout], [], [ignore])
|
||||
AT_CHECK([test -z "$arg2" || $FGREP "$arg2" stdout], [], [ignore])
|
||||
# Do not match EOL here, cross setups may have an extra \r here.
|
||||
AT_CHECK([test `sed -n '/^abc/,/^xyz/p' stdout | wc -l` -eq 4])
|
||||
arg1=
|
||||
|
Loading…
x
Reference in New Issue
Block a user