[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: FAIL: make.test
From: |
Alexandre Duret-Lutz |
Subject: |
Re: FAIL: make.test |
Date: |
13 Feb 2002 21:31:19 +0100 |
User-agent: |
Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 |
>>> "Patrick" == Patrick Welche <address@hidden> writes:
Patrick> On Wed, Feb 13, 2002 at 06:54:07PM +0100, Alexandre Duret-Lutz wrote:
>>
Patrick> config.status: creating Makefile
Patrick> + fgrep am__include = # Makefile
Patrick> FAIL: make.test
>>
>> So, what does this Makefile contains?
>>
>> Could you run
>> grep am__include /usr/src/local/automake/tests/testSubDir/Makefile
>> ?
Patrick> am__include = include
Patrick> which seems to be set in aclocal.m4:
[...]
Patrick> So has this just become an autoconf problem?
Nope, this code comes from Automake, and `am__include = include'
is the expected output.
The question is why does
fgrep 'am__include = #' Makefile && exit 1
abort the test?
Can you check how the following script works with your shell?
% cat > mumble.sh
set -e
false && echo false
echo ok
for i in a b; do
false && echo false
echo ok
done
% sh -x mumble.sh
+ set -e
+ false
+ echo ok
ok
+ false
+ echo ok
ok
+ false
+ echo ok
ok
%
Is this the only failing test? Because there are other
tests using similar constructs.
--
Alexandre Duret-Lutz
- FAIL: make.test, Patrick Welche, 2002/02/13
- Re: FAIL: make.test, Alexandre Duret-Lutz, 2002/02/13
- Re: FAIL: make.test, Patrick Welche, 2002/02/13
- Re: FAIL: make.test, Alexandre Duret-Lutz, 2002/02/13
- Re: FAIL: make.test, Patrick Welche, 2002/02/13
- Re: FAIL: make.test,
Alexandre Duret-Lutz <=
- Re: FAIL: make.test, Patrick Welche, 2002/02/13
- Re: FAIL: make.test, Alexandre Duret-Lutz, 2002/02/14
- Re: FAIL: make.test, Patrick Welche, 2002/02/14
- Re: FAIL: make.test, Patrick Welche, 2002/02/15
- Re: FAIL: make.test, Tom Tromey, 2002/02/17
- Re: FAIL: make.test, Patrick Welche, 2002/02/20