GNU bug report logs - #13911
make check errors for coreutils-8.21 on Solaris 10

Previous Next

Package: coreutils;

Reported by: Marc Girod <marc.girod <at> gmail.com>

Date: Sat, 9 Mar 2013 19:20:01 UTC

Severity: normal

Tags: moreinfo

Done: Assaf Gordon <assafgordon <at> gmail.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 13911 in the body.
You can then email your comments to 13911 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-coreutils <at> gnu.org:
bug#13911; Package coreutils. (Sat, 09 Mar 2013 19:20:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Marc Girod <marc.girod <at> gmail.com>:
New bug report received and forwarded. Copy sent to bug-coreutils <at> gnu.org. (Sat, 09 Mar 2013 19:20:04 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Marc Girod <marc.girod <at> gmail.com>
To: bug-coreutils <at> gnu.org
Subject: make check errors for coreutils-8.21 on Solaris 10
Date: Sat, 9 Mar 2013 14:15:37 +0000
[Message part 1 (text/plain, inline)]
Hello,

FAIL: tests/tail-2/F-vs-missing.sh (exit: 1)
FAIL: tests/tail-2/F-vs-rename.sh (exit: 1)
FAIL: tests/cp/backup-dir.sh (exit: 1)
FAIL: tests/cp/preserve-link.sh (exit: 1)
FAIL: tests/cp/reflink-perm.sh (exit: 1)
FAIL: tests/ls/stat-vs-dirent.sh (exit: 1)
FAIL: tests/ls/stat-vs-dirent.sh (exit: 1)
...
7 of 406 tests failed
(132 tests were not run)

I join config.log and test-suite.log
I am building with a binary distribution of gcc 4.3.3, in order to
build a later gcc.

Thanks,
Marc
[config.log (application/octet-stream, attachment)]
[test-suite.log (application/octet-stream, attachment)]

Information forwarded to bug-coreutils <at> gnu.org:
bug#13911; Package coreutils. (Sun, 10 Mar 2013 22:37:01 GMT) Full text and rfc822 format available.

Message #8 received at 13911 <at> debbugs.gnu.org (full text, mbox):

From: Bernhard Voelker <mail <at> bernhard-voelker.de>
To: Marc Girod <marc.girod <at> gmail.com>
Cc: 13911 <at> debbugs.gnu.org
Subject: Re: bug#13911: make check errors for coreutils-8.21 on Solaris 10
Date: Sun, 10 Mar 2013 23:35:53 +0100
On 03/09/2013 03:15 PM, Marc Girod wrote:

Hi Marc,

thanks for reporting the test failures.

> FAIL: tests/tail-2/F-vs-missing.sh (exit: 1)

This one is a failure during the cleanup after the actual test ...

> + cleanup_
> + :
> + cd /proj/vobadm100/tmp/coreutils-8.21
> + chmod -R u+rwx /proj/vobadm100/tmp/coreutils-8.21/gt-F-vs-missing.sh.wlBi
> + rm -rf /proj/vobadm100/tmp/coreutils-8.21/gt-F-vs-missing.sh.wlBi
> rm: cannot remove '/proj/vobadm100/tmp/coreutils-8.21/gt-F-vs-missing.sh.wlBi': File exists
> + test 0 = 0
> + __st=1
> + exit 1

... and it reminds me to a similar issue we recently fixed
for another test:
  http://lists.gnu.org/archive/html/coreutils/2013-02/msg00039.html

I suspect you're on NFS, and for some reason, the cleanup fails.
The reason could be that the tail process didn't exit yet.

Does the following additional 'wait' help?

diff --git a/tests/tail-2/F-vs-missing.sh b/tests/tail-2/F-vs-missing.sh
index 0f74404..22982b6 100755
--- a/tests/tail-2/F-vs-missing.sh
+++ b/tests/tail-2/F-vs-missing.sh
@@ -45,6 +45,7 @@ tail_re='has appeared' retry_delay_ check_tail_output .1 7 ||
   { echo "$0: file: unexpected delay?"; cat out; fail=1; }

 kill -HUP $pid
+wait

 cleanup()
 {



> FAIL: tests/tail-2/F-vs-rename.sh (exit: 1)

same as above.

> FAIL: tests/cp/backup-dir.sh (exit: 1)
> FAIL: tests/cp/preserve-link.sh (exit: 1)
> FAIL: tests/cp/reflink-perm.sh (exit: 1)
> FAIL: tests/cp/src-base-dot.sh (exit: 1)

Somehow, preserving fails on that file system with
  "Operation not applicable".
What file system type is it?
You're not on MVFS, i.e. in a ClearCase dynamic view, are you?
(BTW, I've never seen so many ClearCase-VOBs being cross-mounted,
~2000, wow!)


> FAIL: tests/ls/stat-vs-dirent.sh (exit: 1)

This one is also strange, and it indicates again that
you're maybe using a strange file system type:

> ++ stat --format=%i /proj/2gsim
> + st_ino=17529
> + test -n 16609
> + test 16609 '!=' 17529
> + echo './tests/ls/stat-vs-dirent.sh: test failed: /proj/2gsim: d_ino(16609) != st_ino(17529)
>         This may indicate a flaw in your kernel or file system implementation.
>         The flaw isn'\''t serious for coreutils, but it might break other tools,
>         so you should report it to your operating system vendor.'

Have a nice day,
Berny




Information forwarded to bug-coreutils <at> gnu.org:
bug#13911; Package coreutils. (Thu, 18 Oct 2018 23:56:02 GMT) Full text and rfc822 format available.

Message #11 received at 13911 <at> debbugs.gnu.org (full text, mbox):

From: Assaf Gordon <assafgordon <at> gmail.com>
To: 13911 <at> debbugs.gnu.org
Subject: Re: bug#13911: make check errors for coreutils-8.21 on Solaris 10
Date: Thu, 18 Oct 2018 17:55:11 -0600
tags 13911 moreinfo
close 13911
stop

(triaging old bugs)


On 10/03/13 04:35 PM, Bernhard Voelker wrote:
> 
> I suspect you're on NFS, and for some reason, the cleanup fails.
> The reason could be that the tail process didn't exit yet.
> 
> Does the following additional 'wait' help?
> 

With no further follow-ups in 5 years, I'm closing this bug.
Discussion can continue by replying to this thread.

-assaf





Added tag(s) moreinfo. Request was from Assaf Gordon <assafgordon <at> gmail.com> to control <at> debbugs.gnu.org. (Thu, 18 Oct 2018 23:56:02 GMT) Full text and rfc822 format available.

bug closed, send any further explanations to 13911 <at> debbugs.gnu.org and Marc Girod <marc.girod <at> gmail.com> Request was from Assaf Gordon <assafgordon <at> gmail.com> to control <at> debbugs.gnu.org. (Thu, 18 Oct 2018 23:56:02 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Fri, 16 Nov 2018 12:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 6 years and 299 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.