emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-bug-tracker] bug#9242: closed (distcheck fails when having TEST i


From: GNU bug Tracking System
Subject: [Emacs-bug-tracker] bug#9242: closed (distcheck fails when having TEST in sub-directory)
Date: Tue, 16 Aug 2011 17:01:02 +0000

Your message dated Tue, 16 Aug 2011 18:58:37 +0200
with message-id <address@hidden>
and subject line Re: bug#9242: distcheck fails when having TEST in sub-directory
has caused the GNU bug report #9242,
regarding distcheck fails when having TEST in sub-directory
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
9242: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9242
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: distcheck fails when having TEST in sub-directory Date: Thu, 4 Aug 2011 13:53:37 -0400 Hello automakers,

I have a non-recursive Makefile.am but keep the tests in sub-directory named test. Surprisingly distcheck fails for me with this set up, which to me seems to be caused by some VPATH issue.

Below is a trimmed down test case that fails for me with

make  check-TESTS
make[2]: *** No rule to make target `test/foo.test', needed by `check-TESTS'.  Stop.
make[1]: *** [check-am] Error 2
make: *** [distcheck] Error 1


cat > configure.ac <<EOF
AC_INIT([foo], [1])
AM_INIT_AUTOMAKE([foreign])
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
EOF

cat > Makefile.am <<EOF
TEST_EXTENSIONS = .test
TESTS = test/foo.test
EOF

mkdir -p test
cat > test/foo.test <<EOF
echo hello world
exit 0
EOF
chmod 755 test/foo.test

autoreconf -ivf
./configure
make all
make check
make distcheck

Is this a bug or am I doing something wrong?

I'm using Automake 1.11.1

Thanks,
Peter

--- End Message ---
--- Begin Message --- Subject: Re: bug#9242: distcheck fails when having TEST in sub-directory Date: Tue, 16 Aug 2011 18:58:37 +0200 User-agent: KMail/1.13.3 (Linux/2.6.30-2-686; KDE/4.4.4; i686; ; )
On Friday 05 August 2011, Stefano Lattarini wrote:
> On Thursday 04 August 2011, Peter Johansson wrote:
>
> > cat > Makefile.am <<EOF
> > TEST_EXTENSIONS = .test
> > TESTS = test/foo.test
> > EOF
> > 
> You've forgotten to add $(TESTS) to $(EXTRA_DIST) here:
> 
>   EXTRA_DIST = $(TESTS)
> 
> If you add the above line to your Makefile.am (both the reduced one
> and the original one), does you problem disappear?  If yes, I'll
> close this bug report.
> 
No further reply from Peter, so I assume my diagnosis was correct and
the issue has been solved.  Peter, feel free to re-open the report if
this is not the case,

Regards,
  Stefano


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]