From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 25 21:23:04 2014 Received: (at submit) by debbugs.gnu.org; 26 Oct 2014 01:23:04 +0000 Received: from localhost ([127.0.0.1]:35576 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XiCXv-00007a-CR for submit@debbugs.gnu.org; Sat, 25 Oct 2014 21:23:03 -0400 Received: from eggs.gnu.org ([208.118.235.92]:38598) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from ) id 1XiCXr-00006v-IK for submit@debbugs.gnu.org; Sat, 25 Oct 2014 21:23:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XiCXf-0007Bh-JR for submit@debbugs.gnu.org; Sat, 25 Oct 2014 21:22:54 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:48097) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XiCXf-0007Bd-H6 for submit@debbugs.gnu.org; Sat, 25 Oct 2014 21:22:47 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40296) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XiCXZ-0000OF-9N for bug-guix@gnu.org; Sat, 25 Oct 2014 21:22:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XiCXT-0007Ao-9m for bug-guix@gnu.org; Sat, 25 Oct 2014 21:22:41 -0400 Received: from world.peace.net ([96.39.62.75]:48164) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XiCXT-0007Ak-5R for bug-guix@gnu.org; Sat, 25 Oct 2014 21:22:35 -0400 Received: from c-24-62-95-23.hsd1.ma.comcast.net ([24.62.95.23] helo=jojen) by world.peace.net with esmtpsa (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1XiCXM-0002H2-53; Sat, 25 Oct 2014 21:22:28 -0400 From: Mark H Weaver To: bug-guix@gnu.org Subject: zsh test suite failures, possibly due to 'noatime' mount flag Date: Sat, 25 Oct 2014 21:22:26 -0400 Message-ID: <877fznbp65.fsf@netris.org> MIME-Version: 1.0 Content-Type: text/plain X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) Twice recently, once on x86_64 and once on i686, zsh has failed its test suite while being built by hydra. Here's the output in both cases: --8<---------------cut here---------------start------------->8--- Test ./C02cond.ztst failed: bad status 1, expected 0 from: print -u $ZTST_fd 'This test takes two seconds...' sleep 2 cat unmodified touch newnewnew if [[ $OSTYPE == "cygwin" ]]; then print -u$ZTST_fd "Warning: not testing [[ -N file ]] (not supported on Cygwin)" true elif [[ "$(find . -prune -fstype nfs 2>/dev/null)" == "." ]]; then print -u$ZTST_fd "Warning: not testing [[ -N file ]] (not supported with NFS)" true elif test -f /etc/mtab && { grep $(df . 2>/dev/null| tail -n1 | awk '{print $1}') /etc/mtab | grep -q noatime; }; then print -u$ZTST_fd "Warning: not testing [[ -N file ]] (not supported with noatime file system)" true else [[ -N newnewnew && ! -N unmodified ]] fi Was testing: -N cond ./C02cond.ztst: test failed. The following may (or may not) help identifying the cause: This test can fail on NFS-mounted filesystems as the access and modification times are not updated separately. The test will fail on HFS+ (Apple Mac OS X default) filesystems because access times are not recorded. Also, Linux ext3 filesystems may be mounted with the noatime option which does not update access times. Failures in these cases do not indicate a problem in the shell. --8<---------------cut here---------------end--------------->8--- I restarted the x86_64 build and it succeeded on the second try. Now it has failed on i686: http://hydra.gnu.org/build/128208 My first guess is that one of our build machines has the 'noatime' mount option set on its /tmp. Is there a way to tell from the URL above which build machine was used? Mark