bug-automake
[Top][All Lists]
Advanced

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

bug#11896: aclocal7.sh test fails sometimes with automake-1.12.2


From: Adam Sampson
Subject: bug#11896: aclocal7.sh test fails sometimes with automake-1.12.2
Date: Tue, 10 Jul 2012 12:18:44 +0100
User-agent: Mutt/1.5.21 (2010-09-15)

Hi,

I've just built automake-1.12.2 and had the aclocal7.sh test fail. After
a bit of investigation, it's because the test:

- creates a .m4 file;
- calls aclocal;
- calls automake;
- sleeps for a bit;
- calls aclocal again;
- calls automake again;
- checks that those two calls didn't actually write any files.
  [then goes on to test some other stuff that works fine]

The problem is that aclocal decides whether to rewrite its output file
by checking that all of the input files it's read are older than the
existing output file. If aclocal takes less than a second to run in the
sequence above, it's possible for its output file to have the same
timestamp as the .m4 file -- and then the second call to aclocal will
decide the output file needs rewriting, and the test fails.

The attached patch adds a $sleep after creating the .m4 file, so it'll
definitely be older than the first aclocal's output.

Thanks,

-- 
Adam Sampson <address@hidden>                         <http://offog.org/>

Attachment: fasttest.diff
Description: Text document


reply via email to

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