bug-gnulib
[Top][All Lists]
Advanced

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

new fdopendir vs OpenBSD 4.7


From: Jim Meyering
Subject: new fdopendir vs OpenBSD 4.7
Date: Fri, 08 Oct 2010 19:41:26 +0200

Once past the bison/parse-datetime compilation failure, *lots* of tests
were failing on OpenBSD 4.7.  Most failures involved rm, du, etc. and
directory hierarchy traversal.  Here's a quick demo:

    $ mkdir -p .j/k
    ./rm: traversal failed: `.j': Bad file descriptor

With the patch below, only 7 of the primary tests failed.
I ran the gnulib ones separately and there all passed but one,
which was nanosleep one hangs for 1000 seconds.  Details separately.

Here's the gnulib patch, followed by the full testsuite.log file
(I don't plan to address those failures now)


>From 33cb719a120cb631e1c0111bce0a8163388ade7a Mon Sep 17 00:00:00 2001
From: Jim Meyering <address@hidden>
Date: Fri, 8 Oct 2010 18:42:59 +0200
Subject: [PATCH] fdopendir: fix a bug on systems lacking openat and /proc 
support

OpenBSD 4.7 is one such system.  The most noticeable effect was
failure of any application making nontrivial use of fts: rm, du,
chown, chmod etc.  E.g., "mkdir -p a/b; ./rm -rf a" would fail with
  ./rm: traversal failed: `a': Bad file descriptor
Debugging that, you see that even though FD 6 was closed just
prior to the opendir call in fd_clone_opendir, its resulting
dir->dd_fd was 8, rather than the expected value of 6:

Breakpoint 3, fdopendir_with_dup (fd=6, older_dupfd=-1) at fdopendir.c:93
93                close (fd);
(gdb) n
94                dir = fd_clone_opendir (dupfd);
(gdb) n
95                saved_errno = errno;
(gdb) p dir->dd_fd
$11 = 8

Notice how it closes FD 6, then gets a DIR* pointer using FD 8.
The problem is that on OpenBSD, fd_clone_opendir has to resort
to using the old-style save/restore CWD mechanism, due to its
lack of openat/proc support, and *that* would steal the FD (6)
that opendir was supposed to use.

The fix is to squirrel away the desired FD so that save_cwd uses a
different one, and then free the dest FD right before calling opendir.
That guarantees opendir will use the required file descriptor.

* lib/fdopendir.c (fd_clone_opendir): Handle the above.
---
 ChangeLog       |   32 ++++++++++++++++++++++++++++++++
 lib/fdopendir.c |   14 ++++++++++++++
 2 files changed, 46 insertions(+), 0 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index f83934b..4855353 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,35 @@
+2010-10-08  Jim Meyering  <address@hidden>
+
+       fdopendir: fix a bug on systems lacking openat and /proc support
+       OpenBSD 4.7 is one such system.  The most noticeable effect was
+       failure of any application making nontrivial use of fts: rm, du,
+       chown, chmod etc.  E.g., "mkdir -p a/b; ./rm -rf a" would fail with
+         ./rm: traversal failed: `a': Bad file descriptor
+       Debugging that, you see that even though FD 6 was closed just
+       prior to the opendir call in fd_clone_opendir, its resulting
+       dir->dd_fd was 8, rather than the expected value of 6:
+
+       Breakpoint 3, fdopendir_with_dup (fd=6, older_dupfd=-1) at 
fdopendir.c:93
+       93                close (fd);
+       (gdb) n
+       94                dir = fd_clone_opendir (dupfd);
+       (gdb) n
+       95                saved_errno = errno;
+       (gdb) p dir->dd_fd
+       $11 = 8
+
+       Notice how it closes FD 6, then gets a DIR* pointer using FD 8.
+       The problem is that on OpenBSD, fd_clone_opendir has to resort
+       to using the old-style save/restore CWD mechanism, due to its
+       lack of openat/proc support, and *that* would steal the FD (6)
+       that opendir was supposed to use.
+
+       The fix is to squirrel away the desired FD so that save_cwd uses a
+       different one, and then free the dest FD right before calling opendir.
+       That guarantees opendir will use the required file descriptor.
+
+       * lib/fdopendir.c (fd_clone_opendir): Handle the above.
+
 2010-10-08  Eric Blake  <address@hidden>

        docs: update cygwin progress
diff --git a/lib/fdopendir.c b/lib/fdopendir.c
index 4adef63..59826ae 100644
--- a/lib/fdopendir.c
+++ b/lib/fdopendir.c
@@ -140,10 +140,23 @@ fd_clone_opendir (int fd)
         dir = opendir (name);
       saved_errno = errno;
 # else /* !REPLACE_FCHDIR */
+
+      /* Occupy the destination FD slot, so that save_cwd cannot hijack it.  */
+      int fd_reserve = dup (fd);
+      if (fd_reserve < 0)
+        {
+          saved_errno = errno;
+          dir = NULL;
+          goto fail;
+        }
+
       struct saved_cwd saved_cwd;
       if (save_cwd (&saved_cwd) != 0)
         openat_save_fail (errno);

+      /* Liberate the target file descriptor, so that opendir uses it.  */
+      close (fd_reserve);
+
       if (fchdir (fd) != 0)
         {
           dir = NULL;
@@ -162,6 +175,7 @@ fd_clone_opendir (int fd)
 # endif /* !REPLACE_FCHDIR */
     }

+ fail:
   if (proc_file != buf)
     free (proc_file);
   errno = saved_errno;
--
1.7.3.1.104.gc752e




=======================================================
   GNU coreutils 8.5.188-c8923: tests/test-suite.log
=======================================================

7 of 340 tests failed.  (88 tests were not run).

.. contents:: :depth: 2


SKIP: tail-2/inotify-race (exit: 77)
====================================

+ tail --version
tail (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Paul Rubin, David MacKenzie, Ian Lance Taylor,
and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=inotify-race
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-inotify-race.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-inotify-race.CxQ8EdYqWo
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-inotify-race.CxQ8EdYqWo
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ very_expensive_
./tail-2/inotify-race: skipping test: very expensive: disabled by default
This test is very expensive, so it is disabled by default.
To run it anyway, rerun make check with the RUN_VERY_EXPENSIVE_TESTS
environment variable set to yes.  E.g.,

  env RUN_VERY_EXPENSIVE_TESTS=yes make check


SKIP: rm/ext3-perf (exit: 77)
=============================

+ rm --version
rm (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Paul Rubin, David MacKenzie, Richard M. Stallman,
and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=ext3-perf
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-ext3-perf.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-ext3-perf.C968AyP1cz
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-ext3-perf.C968AyP1cz
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ very_expensive_
./rm/ext3-perf: skipping test: very expensive: disabled by default
This test is very expensive, so it is disabled by default.
To run it anyway, rerun make check with the RUN_VERY_EXPENSIVE_TESTS
environment variable set to yes.  E.g.,

  env RUN_VERY_EXPENSIVE_TESTS=yes make check


SKIP: cp/link-heap (exit: 77)
=============================

+ cp --version
cp (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Torbjorn Granlund, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=link-heap
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-link-heap.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-link-heap.kAQM48UbhJ
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-link-heap.kAQM48UbhJ
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ expensive_
./cp/link-heap: skipping test: expensive: disabled by default
This test is relatively expensive, so it is disabled by default.
To run it anyway, rerun make check with the RUN_EXPENSIVE_TESTS
environment variable set to yes.  E.g.,

  env RUN_EXPENSIVE_TESTS=yes make check


SKIP: tail-2/inotify-rotate (exit: 77)
======================================

+ tail --version
tail (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Paul Rubin, David MacKenzie, Ian Lance Taylor,
and Jim Meyering.
+ . ./init.sh
+ expr ././tail-2/inotify-rotate : .*/\(.*\)$
+ ME_=inotify-rotate
+ : 2
+ DUALCASE=1
+ export DUALCASE
+ test -n
+ 2> /dev/null
+ set -o posix
+ gl_shell_test_script_=
test $(echo y) = y || exit 1
score_=10
if test "$VERBOSE" = yes; then
  test -n "$( (exec 3>&1; set -x; P=1 true 2>&3) 2> /dev/null)" && score_=9
fi
test -z "$EXEEXT" && exit $score_
shopt -s expand_aliases
alias a-b="echo zoo"
v=abx
     test ${v%x} = ab \
  && test ${v#a} = bx \
  && test $(a-b) = zoo \
  && exit $score_

+ test x = x--no-reexec
+ gl_set_x_corrupts_stderr_=false
+ export gl_set_x_corrupts_stderr_
+ marginal_=
+ test __current__ = no_shell
+ test __current__ = fail
+ test __current__ = __current__
+ > /dev/null
+ 2>&1
+ st_=9
+ test 9 = 10
+ test 9: = 9:
+ marginal_=__current__
+ gl_set_x_corrupts_stderr_=true
+ test no_shell = no_shell
+ continue
+ test /bin/sh = no_shell
+ test /bin/sh = fail
+ test /bin/sh = __current__
+ /bin/sh -c
test $(echo y) = y || exit 1
score_=10
if test "$VERBOSE" = yes; then
  test -n "$( (exec 3>&1; set -x; P=1 true 2>&3) 2> /dev/null)" && score_=9
fi
test -z "$EXEEXT" && exit $score_
shopt -s expand_aliases
alias a-b="echo zoo"
v=abx
     test ${v%x} = ab \
  && test ${v#a} = bx \
  && test $(a-b) = zoo \
  && exit $score_

+ 2> /dev/null
+ st_=9
+ test 9 = 10
+ test 9:__current__ = 9:
+ test bash = no_shell
+ test bash = fail
+ test bash = __current__
+ bash -c
test $(echo y) = y || exit 1
score_=10
if test "$VERBOSE" = yes; then
  test -n "$( (exec 3>&1; set -x; P=1 true 2>&3) 2> /dev/null)" && score_=9
fi
test -z "$EXEEXT" && exit $score_
shopt -s expand_aliases
alias a-b="echo zoo"
v=abx
     test ${v%x} = ab \
  && test ${v#a} = bx \
  && test $(a-b) = zoo \
  && exit $score_

+ 2> /dev/null
+ st_=10
+ test 10 = 10
+ break
+ test bash != __current__
+ opts_=-x
+ exec bash -x ./tail-2/inotify-rotate --no-reexec
+ test yes = yes
+ set -x
+ tail --version
tail (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Paul Rubin, David MacKenzie, Ian Lance Taylor,
and Jim Meyering.
+ . ./init.sh
+++ expr ././tail-2/inotify-rotate : '.*/\(.*\)$'
++ ME_=inotify-rotate
++ : 2
++ DUALCASE=1
++ export DUALCASE
++ test -n ''
++ case `(set -o) 2>/dev/null` in
++ set -o posix
++ gl_shell_test_script_='
test $(echo y) = y || exit 1
score_=10
if test "$VERBOSE" = yes; then
  test -n "$( (exec 3>&1; set -x; P=1 true 2>&3) 2> /dev/null)" && score_=9
fi
test -z "$EXEEXT" && exit $score_
shopt -s expand_aliases
alias a-b="echo zoo"
v=abx
     test ${v%x} = ab \
  && test ${v#a} = bx \
  && test $(a-b) = zoo \
  && exit $score_
'
++ test x--no-reexec = x--no-reexec
++ shift
++ test -n ''
++ : 87
++ export MALLOC_PERTURB_
++ test -f ./init.cfg
++ . ./init.cfg
+++ stderr_fileno_=9
+++ sanitize_path_
+++ local 'saved_IFS=
'
+++ IFS=:
+++ set -- /u/guest/meyering/coreutils-8.5.188-c8923/src 
/u/guest/meyering/p/bin /usr/local/bin /sbin /bin /usr/sbin /usr/bin 
/usr/X11R6/bin /usr/local/sbin /usr/local/bin
+++ IFS='
'
+++ local d d1
+++ local colon=
+++ local new_path=
+++ for d in '"$@"'
+++ test -z /u/guest/meyering/coreutils-8.5.188-c8923/src
+++ d1=/u/guest/meyering/coreutils-8.5.188-c8923/src
+++ ls -d /u/guest/meyering/coreutils-8.5.188-c8923/src/.
+++ new_path=/u/guest/meyering/coreutils-8.5.188-c8923/src
+++ colon=:
+++ for d in '"$@"'
+++ test -z /u/guest/meyering/p/bin
+++ d1=/u/guest/meyering/p/bin
+++ ls -d /u/guest/meyering/p/bin/.
+++ 
new_path=/u/guest/meyering/coreutils-8.5.188-c8923/src:/u/guest/meyering/p/bin
+++ colon=:
+++ for d in '"$@"'
+++ test -z /usr/local/bin
+++ d1=/usr/local/bin
+++ ls -d /usr/local/bin/.
+++ 
new_path=/u/guest/meyering/coreutils-8.5.188-c8923/src:/u/guest/meyering/p/bin:/usr/local/bin
+++ colon=:
+++ for d in '"$@"'
+++ test -z /sbin
+++ d1=/sbin
+++ ls -d /sbin/.
+++ 
new_path=/u/guest/meyering/coreutils-8.5.188-c8923/src:/u/guest/meyering/p/bin:/usr/local/bin:/sbin
+++ colon=:
+++ for d in '"$@"'
+++ test -z /bin
+++ d1=/bin
+++ ls -d /bin/.
+++ 
new_path=/u/guest/meyering/coreutils-8.5.188-c8923/src:/u/guest/meyering/p/bin:/usr/local/bin:/sbin:/bin
+++ colon=:
+++ for d in '"$@"'
+++ test -z /usr/sbin
+++ d1=/usr/sbin
+++ ls -d /usr/sbin/.
+++ 
new_path=/u/guest/meyering/coreutils-8.5.188-c8923/src:/u/guest/meyering/p/bin:/usr/local/bin:/sbin:/bin:/usr/sbin
+++ colon=:
+++ for d in '"$@"'
+++ test -z /usr/bin
+++ d1=/usr/bin
+++ ls -d /usr/bin/.
+++ 
new_path=/u/guest/meyering/coreutils-8.5.188-c8923/src:/u/guest/meyering/p/bin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
+++ colon=:
+++ for d in '"$@"'
+++ test -z /usr/X11R6/bin
+++ d1=/usr/X11R6/bin
+++ ls -d /usr/X11R6/bin/.
+++ 
new_path=/u/guest/meyering/coreutils-8.5.188-c8923/src:/u/guest/meyering/p/bin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin
+++ colon=:
+++ for d in '"$@"'
+++ test -z /usr/local/sbin
+++ d1=/usr/local/sbin
+++ ls -d /usr/local/sbin/.
+++ 
new_path=/u/guest/meyering/coreutils-8.5.188-c8923/src:/u/guest/meyering/p/bin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/sbin
+++ colon=:
+++ for d in '"$@"'
+++ test -z /usr/local/bin
+++ d1=/usr/local/bin
+++ ls -d /usr/local/bin/.
+++ 
new_path=/u/guest/meyering/coreutils-8.5.188-c8923/src:/u/guest/meyering/p/bin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/sbin:/usr/local/bin
+++ colon=:
+++ 
PATH=/u/guest/meyering/coreutils-8.5.188-c8923/src:/u/guest/meyering/p/bin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/sbin:/usr/local/bin
+++ export PATH
++ setup_
++ test yes = yes
++ true
++ warn_ 'using SHELL=/usr/local/bin/bash with '\''set -x'\'' corrupts stderr'
++ echo 'using SHELL=/usr/local/bin/bash with '\''set -x'\'' corrupts stderr'
++ initial_cwd_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+++ testdir_prefix_
+++ printf gt
++ pfx_=gt
+++ mktempd_ /u/guest/meyering/coreutils-8.5.188-c8923/tests 
gt-inotify-rotate.XXXX
+++ case $# in
+++ destdir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+++ template_=gt-inotify-rotate.XXXX
+++ MAX_TRIES_=4
+++ case $destdir_ in
+++ case $template_ in
+++ fail=0
++++ unset TMPDIR
++++ mktemp -d -t -p /u/guest/meyering/coreutils-8.5.188-c8923/tests 
gt-inotify-rotate.XXXX
+++ d=/u/guest/meyering/coreutils-8.5.188-c8923/tests/gt-inotify-rotate.H46H
+++ case $d in
+++ test -d 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/gt-inotify-rotate.H46H
++++ ls -dgo 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/gt-inotify-rotate.H46H
++++ tr S -
+++ perms='drwx------ 2 512 Oct  8 09:17 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/gt-inotify-rotate.H46H'
+++ case $perms in
+++ test 0 = 0
+++ echo /u/guest/meyering/coreutils-8.5.188-c8923/tests/gt-inotify-rotate.H46H
+++ return
++ 
test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/gt-inotify-rotate.H46H
++ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/gt-inotify-rotate.H46H
++ for sig_ in 1 2 3 13 15
+++ expr 1 + 128
++ eval 'trap '\''Exit 129'\'' 1'
+++ trap 'Exit 129' 1
++ for sig_ in 1 2 3 13 15
+++ expr 2 + 128
++ eval 'trap '\''Exit 130'\'' 2'
+++ trap 'Exit 130' 2
++ for sig_ in 1 2 3 13 15
+++ expr 3 + 128
++ eval 'trap '\''Exit 131'\'' 3'
+++ trap 'Exit 131' 3
++ for sig_ in 1 2 3 13 15
+++ expr 13 + 128
++ eval 'trap '\''Exit 141'\'' 13'
+++ trap 'Exit 141' 13
++ for sig_ in 1 2 3 13 15
+++ expr 15 + 128
++ eval 'trap '\''Exit 143'\'' 15'
+++ trap 'Exit 143' 15
++ trap remove_tmp_ 0
+ path_prepend_ ../src
+ test 1 '!=' 0
+ path_dir_=../src
+ case $path_dir_ in
++ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/../src
++ echo /u/guest/meyering/coreutils-8.5.188-c8923/src
+ abs_path_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/src
+ case $abs_path_dir_ in
+ 
PATH=/u/guest/meyering/coreutils-8.5.188-c8923/src:/u/guest/meyering/coreutils-8.5.188-c8923/src:/u/guest/meyering/p/bin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/sbin:/usr/local/bin
+ create_exe_shims_ /u/guest/meyering/coreutils-8.5.188-c8923/src
+ case $EXEEXT in
+ return 0
+ shift
+ test 0 '!=' 0
+ export PATH
+ expensive_
+ test '' '!=' yes
+ skip_test_ 'expensive: disabled by default
This test is relatively expensive, so it is disabled by default.
To run it anyway, rerun make check with the RUN_EXPENSIVE_TESTS
environment variable set to yes.  E.g.,

  env RUN_EXPENSIVE_TESTS=yes make check
'
+ head -1
+ echo './tail-2/inotify-rotate: skipping test: expensive: disabled by default
This test is relatively expensive, so it is disabled by default.
To run it anyway, rerun make check with the RUN_EXPENSIVE_TESTS
environment variable set to yes.  E.g.,

  env RUN_EXPENSIVE_TESTS=yes make check
'
+ echo './tail-2/inotify-rotate: skipping test: expensive: disabled by default
This test is relatively expensive, so it is disabled by default.
To run it anyway, rerun make check with the RUN_EXPENSIVE_TESTS
environment variable set to yes.  E.g.,

  env RUN_EXPENSIVE_TESTS=yes make check
'
./tail-2/inotify-rotate: skipping test: expensive: disabled by default
This test is relatively expensive, so it is disabled by default.
To run it anyway, rerun make check with the RUN_EXPENSIVE_TESTS
environment variable set to yes.  E.g.,

  env RUN_EXPENSIVE_TESTS=yes make check

+ Exit 77
+ set +e
+ exit 77
+ exit 77
+ remove_tmp_
+ __st=77
+ cleanup_
+ :
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests
+ chmod -R u+rwx 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/gt-inotify-rotate.H46H
+ rm -rf /u/guest/meyering/coreutils-8.5.188-c8923/tests/gt-inotify-rotate.H46H
+ exit 77

FAIL: chmod/no-x (exit: 1)
==========================

+ chmod --version
chmod (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David MacKenzie and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=no-x
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-no-x.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-no-x.cS4gp5dqtD
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-no-x.cS4gp5dqtD
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ skip_if_root_
+ mkdir -p d/no-x/y a/b
+ chmod u=rw d/no-x
+ chmod -R o=r d
+ > /dev/null
+ 2> out
+ prog=chmod
+ sed s/^chmod: cannot access /chmod: / out
+ > t
+ mv t out
+ sed s/^chmod: cannot read directory /chmod: / out
+ > t
+ mv t out
+ sed s,d/no-x/y,d/no-x, out
+ > t
+ mv t out
+ cat
+ << EOF
+ > exp
+ compare out exp
+ fail=1
+ cd a
+ chmod a-x . b
+ 2> /dev/null
+ test 1 = 1
+ Exit 1

SKIP: chgrp/basic (exit: 77)
============================

+ chgrp --version
chgrp (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David MacKenzie and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=basic
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-basic.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-basic.7eiNaCxz3w
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-basic.7eiNaCxz3w
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_membership_in_two_groups_
./chgrp/basic: skipping test: requires membership in two groups
this test requires that you be a member of more than one group,
but running `id -G' either failed or found just one.  If you really
are a member of at least two groups, then rerun this test with
COREUTILS_GROUPS set in your environment to the space-separated list
of group names or numbers.  E.g.,

  env COREUTILS_GROUPS=users cdrom make check



SKIP: rm/fail-eperm (exit: 77)
==============================

fail-eperm: considering /tmp/.
fail-eperm: considering /tmp/..
fail-eperm: considering /tmp/.X11-unix
fail-eperm: considering /tmp/.ICE-unix
fail-eperm: considering /var/tmp/.
fail-eperm: considering /var/tmp/..
fail-eperm: considering /var/tmp/vi.recover
fail-eperm: couldn't find a file not owned by you
 in any of the following directories:
  /tmp /var/tmp /usr/tmp
...so, skipping this test

SKIP: tail-2/assert (exit: 77)
==============================

+ tail --version
tail (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Paul Rubin, David MacKenzie, Ian Lance Taylor,
and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=assert
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-assert.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-assert.5Sg1wd8vtq
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-assert.5Sg1wd8vtq
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ very_expensive_
./tail-2/assert: skipping test: very expensive: disabled by default
This test is very expensive, so it is disabled by default.
To run it anyway, rerun make check with the RUN_VERY_EXPENSIVE_TESTS
environment variable set to yes.  E.g.,

  env RUN_VERY_EXPENSIVE_TESTS=yes make check


SKIP: rm/hash (exit: 77)
========================

+ rm --version
rm (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Paul Rubin, David MacKenzie, Richard M. Stallman,
and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=hash
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-hash.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-hash.5Y36JzW8NO
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-hash.5Y36JzW8NO
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ expensive_
./rm/hash: skipping test: expensive: disabled by default
This test is relatively expensive, so it is disabled by default.
To run it anyway, rerun make check with the RUN_EXPENSIVE_TESTS
environment variable set to yes.  E.g.,

  env RUN_EXPENSIVE_TESTS=yes make check


SKIP: rm/inaccessible (exit: 77)
================================

+ rm --version
rm (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Paul Rubin, David MacKenzie, Richard M. Stallman,
and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=inaccessible
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-inaccessible.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-inaccessible.3StAfnnOZW
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-inaccessible.3StAfnnOZW
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_openat_support_
./rm/inaccessible: skipping test: this system lacks openat support

FAIL: rm/rm2 (exit: 1)
======================

+ rm --version
rm (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Paul Rubin, David MacKenzie, Richard M. Stallman,
and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=rm2
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-rm2.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-rm2.b2Q07QtHti
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-rm2.b2Q07QtHti
+ 2>&1
+ > /dev/null
+ grep GNU
+ diff --version
+ < /dev/null
+ 2>&1
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ skip_if_root_
+ mkdir -p a/0
+ mkdir -p a/1/2 b/3
+ mkdir a/2 a/3
+ chmod u-x a/1 b
+ rm -rf a b
+ > out
+ 2>&1
+ cat
+ << \EOF
+ > exp
+ cat
+ << \EOF
+ > exp-solaris
+ cmp out exp
+ > /dev/null
+ 2>&1
+ cmp out exp-solaris
+ > /dev/null
+ 2>&1
+ fail=1
+ test 1 = 1
+ diff out exp
+ 2> /dev/null
1c1,2
< rm: unable to record current working directory: Bad file descriptor
---
> rm: cannot remove `a/1': Permission denied
> rm: cannot remove `b': Permission denied
+ test -d a/0
+ test -d a/1
+ test -d a/2
+ fail=1
+ test -d a/3
+ fail=1
+ chmod u+x b
+ test -d b/3
+ Exit 1

SKIP: chgrp/default-no-deref (exit: 77)
=======================================

+ chgrp --version
chgrp (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David MacKenzie and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=default-no-deref
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-default-no-deref.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-default-no-deref.wLI9atUP05
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-default-no-deref.wLI9atUP05
+ 2>&1
+ > /dev/null
+ grep GNU
+ diff --version
+ < /dev/null
+ 2>&1
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_membership_in_two_groups_
./chgrp/default-no-deref: skipping test: requires membership in two groups
this test requires that you be a member of more than one group,
but running `id -G' either failed or found just one.  If you really
are a member of at least two groups, then rerun this test with
COREUTILS_GROUPS set in your environment to the space-separated list
of group names or numbers.  E.g.,

  env COREUTILS_GROUPS=users cdrom make check



SKIP: chgrp/deref (exit: 77)
============================

+ chgrp --version
chgrp (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David MacKenzie and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=deref
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-deref.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-deref.tRngdSqNuf
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-deref.tRngdSqNuf
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_membership_in_two_groups_
./chgrp/deref: skipping test: requires membership in two groups
this test requires that you be a member of more than one group,
but running `id -G' either failed or found just one.  If you really
are a member of at least two groups, then rerun this test with
COREUTILS_GROUPS set in your environment to the space-separated list
of group names or numbers.  E.g.,

  env COREUTILS_GROUPS=users cdrom make check



SKIP: chgrp/no-x (exit: 77)
===========================

+ chgrp --version
chgrp (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David MacKenzie and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=no-x
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-no-x.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-no-x.pq6hUhlCwA
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-no-x.pq6hUhlCwA
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_membership_in_two_groups_
./chgrp/no-x: skipping test: requires membership in two groups
this test requires that you be a member of more than one group,
but running `id -G' either failed or found just one.  If you really
are a member of at least two groups, then rerun this test with
COREUTILS_GROUPS set in your environment to the space-separated list
of group names or numbers.  E.g.,

  env COREUTILS_GROUPS=users cdrom make check



SKIP: chgrp/posix-H (exit: 77)
==============================

+ chgrp --version
chgrp (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David MacKenzie and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=posix-H
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-posix-H.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-posix-H.4XALLni7GB
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-posix-H.4XALLni7GB
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_membership_in_two_groups_
./chgrp/posix-H: skipping test: requires membership in two groups
this test requires that you be a member of more than one group,
but running `id -G' either failed or found just one.  If you really
are a member of at least two groups, then rerun this test with
COREUTILS_GROUPS set in your environment to the space-separated list
of group names or numbers.  E.g.,

  env COREUTILS_GROUPS=users cdrom make check



SKIP: chgrp/recurse (exit: 77)
==============================

+ chgrp --version
chgrp (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David MacKenzie and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=recurse
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-recurse.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-recurse.OhpFV9QdiA
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-recurse.OhpFV9QdiA
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_membership_in_two_groups_
./chgrp/recurse: skipping test: requires membership in two groups
this test requires that you be a member of more than one group,
but running `id -G' either failed or found just one.  If you really
are a member of at least two groups, then rerun this test with
COREUTILS_GROUPS set in your environment to the space-separated list
of group names or numbers.  E.g.,

  env COREUTILS_GROUPS=users cdrom make check



SKIP: misc/seq-long-double (exit: 77)
=====================================

+ seq --version
seq (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Ulrich Drepper.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=seq-long-double
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-seq-long-double.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-seq-long-double.q4UXD6ZtqT
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-seq-long-double.q4UXD6ZtqT
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ getlimits_
+ cat
+ << \EOF
+ > long.c
+ gcc -std=gnu99 -c long.c
long.c:1:22: error: features.h: No such file or directory
long.c:5: error: expected identifier or '(' before string constant
+ skip_test_ this test runs only on systems with glibc and long double != double
./misc/seq-long-double: skipping test: this test runs only on systems with 
glibc and long double != double

SKIP: tail-2/tail-n0f (exit: 77)
================================

+ tail --version
tail (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Paul Rubin, David MacKenzie, Ian Lance Taylor,
and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=tail-n0f
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-tail-n0f.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-tail-n0f.cAgBvmRQKd
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-tail-n0f.cAgBvmRQKd
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_proc_pid_status_
./tail-2/tail-n0f: skipping test: /proc/21035/status: missing or 'different'

SKIP: misc/arch (exit: 77)
==========================

arch: not built
./misc/arch: skipping test: required program(s) not built

SKIP: misc/pwd-unreadable-parent (exit: 77)
===========================================

+ env -- pwd --version
pwd (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Jim Meyering.
+ readlink --version
readlink (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Dmitry V. Levin.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=pwd-unreadable-parent
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-pwd-unreadable-parent.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-pwd-unreadable-parent.Kx3Ud78uKf
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-pwd-unreadable-parent.Kx3Ud78uKf
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ test openbsd4.7 != linux-gnu
+ skip_test_ vendor getcwd may be inadequate
./misc/pwd-unreadable-parent: skipping test: vendor getcwd may be inadequate

SKIP: misc/cat-proc (exit: 77)
==============================

+ cat --version
cat (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Torbjorn Granlund and Richard M. Stallman.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=cat-proc
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-cat-proc.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-cat-proc.p7Xv95ihUW
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-cat-proc.p7Xv95ihUW
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ f=/proc/cpuinfo
+ test -f /proc/cpuinfo
+ skip_test_ no /proc/cpuinfo
./misc/cat-proc: skipping test: no /proc/cpuinfo

SKIP: misc/id-context (exit: 77)
================================

+ id --version
id (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Arnold Robbins and David MacKenzie.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=id-context
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-id-context.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-id-context.08jdWSVG6k
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-id-context.08jdWSVG6k
+ 2>&1
+ > /dev/null
+ grep GNU
+ diff --version
+ < /dev/null
+ 2>&1
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_selinux_
./misc/id-context: skipping test: this system (or maybe just the current file 
system) lacks SELinux support

SKIP: misc/printf-surprise (exit: 77)
=====================================

+ env printf --version
printf (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David MacKenzie.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=printf-surprise
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-printf-surprise.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-printf-surprise.tQH1JTcjx6
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-printf-surprise.tQH1JTcjx6
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_ulimit_
./misc/printf-surprise: skipping test: this shell lacks ulimit support

SKIP: misc/sort-benchmark-random (exit: 77)
===========================================

sort (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Haertel and Paul Eggert.
./misc/sort-benchmark-random: skipping test: very expensive: disabled by default
This test is very expensive, so it is disabled by default.
To run it anyway, rerun make check with the RUN_VERY_EXPENSIVE_TESTS
environment variable set to yes.  E.g.,

  env RUN_VERY_EXPENSIVE_TESTS=yes make check


FAIL: misc/sort-compress (exit: 1)
==================================

+ sort --version
sort (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Haertel and Paul Eggert.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=sort-compress
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-sort-compress.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-sort-compress.0GWtcjN2Ph
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-sort-compress.0GWtcjN2Ph
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ seq -w 2000
+ > exp
+ tac exp
+ > in
+ SORT=/u/guest/meyering/coreutils-8.5.188-c8923/src/sort
+ TMPDIR=.
+ export TMPDIR
+ sort -S 1k in
+ > out
+ compare exp out
+ cat
+ << \EOF
+ > gzip
+ chmod +x gzip
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/kill -l CHLD
+ 2> /dev/null
+ sig=20
+ trap  20
+ exec sort -S 1k --compress-program=gzip in
+ > /dev/null
+ 
PATH=.:/u/guest/meyering/coreutils-8.5.188-c8923/src:/u/guest/meyering/p/bin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/sbin:/usr/local/bin
sort: read failed: ./sortWfRjkW: Interrupted system call
+ fail=1
+ sort -S 1k --compress-program=gzip in
+ > out
+ 
PATH=.:/u/guest/meyering/coreutils-8.5.188-c8923/src:/u/guest/meyering/p/bin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/sbin:/usr/local/bin
sort: read failed: ./sortCPXZD5: Interrupted system call
+ fail=1
+ compare exp out
+ fail=1
+ test -f ok
+ rm -f ok
+ sort -S 1k in
+ > out
+ 
PATH=.:/u/guest/meyering/coreutils-8.5.188-c8923/src:/u/guest/meyering/p/bin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/sbin:/usr/local/bin
+ compare exp out
+ test -f ok
+ fail=1
+ mv gzip dzip
+ sort --compress-program=./dzip -S 1k in
+ > out
sort: read failed: ./sortS3S20C: Interrupted system call
+ fail=1
+ compare exp out
+ fail=1
+ test -f ok
+ rm -f ok
+ sort --compress-program=dzip -S 1k in
+ > out
+ 
PATH=.:/u/guest/meyering/coreutils-8.5.188-c8923/src:/u/guest/meyering/p/bin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/sbin:/usr/local/bin
tr: read error: Resource temporarily unavailable
sort: read failed: ./sorttCBT3m: Interrupted system call
+ fail=1
+ compare exp out
+ fail=1
+ test -f ok
+ rm -f dzip ok
+ Exit 1

SKIP: misc/sort-continue (exit: 77)
===================================

+ sort --version
sort (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Haertel and Paul Eggert.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=sort-continue
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-sort-continue.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-sort-continue.hl8UBDFrCC
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-sort-continue.hl8UBDFrCC
+ 2>&1
+ > /dev/null
+ grep GNU
+ diff --version
+ < /dev/null
+ 2>&1
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ ulimit -n 6
+ sort
+ < /dev/null
./misc/sort-continue[28]: too many files open in shell
+ skip_test_ fd-limited sort failed; are you running under valgrind?
./misc/sort-continue: skipping test: fd-limited sort failed; are you running 
under valgrind?

SKIP: misc/sort-merge-fdlimit (exit: 77)
========================================

+ sort --version
sort (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Haertel and Paul Eggert.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=sort-merge-fdlimit
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-sort-merge-fdlimit.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-sort-merge-fdlimit.N9cxqlM3JJ
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-sort-merge-fdlimit.N9cxqlM3JJ
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_ulimit_
./misc/sort-merge-fdlimit: skipping test: this shell lacks ulimit support

SKIP: misc/sort-month (exit: 77)
================================

+ sort --version
sort (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Haertel and Paul Eggert.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=sort-month
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-sort-month.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-sort-month.RuTKWaukHt
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-sort-month.RuTKWaukHt
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ grep GNU
+ < /dev/null
+ 2>&1
+ fail=0
+ locale --version
+ > /dev/null
+ 2>&1
+ skip_test_ The locale utility is not present
./misc/sort-month: skipping test: The locale utility is not present

SKIP: misc/stty (exit: 77)
==========================

+ stty --version
stty (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David MacKenzie.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=stty
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-stty.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-stty.hKq9WzgD3e
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-stty.hKq9WzgD3e
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_controlling_input_terminal_
./misc/stty: skipping test: requires controlling input terminal
This test must have a controlling input "terminal", so it may not be
run via "batch", "at", or "ssh".  On some systems, it may not even be
run in the background.

SKIP: misc/stty-invalid (exit: 77)
==================================

+ stty --version
stty (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David MacKenzie.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=stty-invalid
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-stty-invalid.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-stty-invalid.M4t7Hu5xZt
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-stty-invalid.M4t7Hu5xZt
+ 2>&1
+ > /dev/null
+ grep GNU
+ diff --version
+ < /dev/null
+ 2>&1
+ 2>&1
+ > /dev/null
+ grep GNU
+ cmp --version
+ < /dev/null
+ 2>&1
+ fail=0
+ require_controlling_input_terminal_
./misc/stty-invalid: skipping test: requires controlling input terminal
This test must have a controlling input "terminal", so it may not be
run via "batch", "at", or "ssh".  On some systems, it may not even be
run in the background.

SKIP: misc/stty-row-col (exit: 77)
==================================

+ stty --version
stty (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David MacKenzie.
+ COLUMNS=80
+ export COLUMNS
+ LC_ALL=C
+ export LC_ALL
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=stty-row-col
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-stty-row-col.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-stty-row-col.6aj5f2Locb
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-stty-row-col.6aj5f2Locb
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_controlling_input_terminal_
./misc/stty-row-col: skipping test: requires controlling input terminal
This test must have a controlling input "terminal", so it may not be
run via "batch", "at", or "ssh".  On some systems, it may not even be
run in the background.

SKIP: misc/su-fail (exit: 77)
=============================

su: not built
./misc/su-fail: skipping test: required program(s) not built

SKIP: misc/tac-continue (exit: 77)
==================================

+ tac --version
tac (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Jay Lepreau and David MacKenzie.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=tac-continue
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-tac-continue.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-tac-continue.0q77hnfd0M
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-tac-continue.0q77hnfd0M
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ grep GNU
+ cmp --version
+ < /dev/null
+ 2>&1
+ fail=0
+ test x = x
+ skip_test_ FULL_PARTITION_TMPDIR not defined
./misc/tac-continue: skipping test: FULL_PARTITION_TMPDIR not defined

SKIP: misc/tty-eof (exit: 77)
=============================

tty-eof: this script requires Perl's Expect package >=1.11

SKIP: misc/uniq (exit: 77)
==========================

uniq: skipping this test -- no appropriate locale

SKIP: misc/xattr (exit: 77)
===========================

+ cp --version
cp (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Torbjorn Granlund, David MacKenzie, and Jim Meyering.
+ mv --version
mv (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Parker, David MacKenzie, and Jim Meyering.
+ ginstall --version
install (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David MacKenzie.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=xattr
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-xattr.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-xattr.N07zTVc6Uz
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-xattr.N07zTVc6Uz
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ touch src dest
+ cp --preserve=xattr -n src dest
cp: cannot preserve extended attributes, cp is built without xattr support
+ skip_test_ coreutils built without xattr support
./misc/xattr: skipping test: coreutils built without xattr support

SKIP: cp/acl (exit: 77)
=======================

+ mv --version
mv (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Parker, David MacKenzie, and Jim Meyering.
+ getfacl --version
./cp/acl[27]: getfacl: not found
+ setfacl --version
./cp/acl[27]: setfacl: not found
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=acl
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-acl.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-acl.TgLBOFseTD
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-acl.TgLBOFseTD
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_acl_
./cp/acl: skipping test: This test requires getfacl and setfacl.

SKIP: cp/existing-perm-race (exit: 77)
======================================

+ cp --version
cp (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Torbjorn Granlund, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=existing-perm-race
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-existing-perm-race.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-existing-perm-race.Axv68exHQF
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-existing-perm-race.Axv68exHQF
+ 2>&1
+ > /dev/null
+ grep GNU
+ diff --version
+ < /dev/null
+ 2>&1
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_membership_in_two_groups_
./cp/existing-perm-race: skipping test: requires membership in two groups
this test requires that you be a member of more than one group,
but running `id -G' either failed or found just one.  If you really
are a member of at least two groups, then rerun this test with
COREUTILS_GROUPS set in your environment to the space-separated list
of group names or numbers.  E.g.,

  env COREUTILS_GROUPS=users cdrom make check



SKIP: cp/perm (exit: 77)
========================

+ cp --version
cp (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Torbjorn Granlund, David MacKenzie, and Jim Meyering.
+ mv --version
mv (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Parker, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=perm
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-perm.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-perm.BuAIWAxdWM
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-perm.BuAIWAxdWM
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ very_expensive_
./cp/perm: skipping test: very expensive: disabled by default
This test is very expensive, so it is disabled by default.
To run it anyway, rerun make check with the RUN_VERY_EXPENSIVE_TESTS
environment variable set to yes.  E.g.,

  env RUN_VERY_EXPENSIVE_TESTS=yes make check


SKIP: cp/preserve-slink-time (exit: 77)
=======================================

+ cp --version
cp (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Torbjorn Granlund, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=preserve-slink-time
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-preserve-slink-time.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-preserve-slink-time.WT31I2NiIl
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-preserve-slink-time.WT31I2NiIl
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ grep GNU
+ cmp --version
+ < /dev/null
+ 2>&1
+ fail=0
+ grep ^#define HAVE_UTIMENSAT 1 
/u/guest/meyering/coreutils-8.5.188-c8923/lib/config.h
+ > /dev/null
+ grep ^#define HAVE_LUTIMES 1 
/u/guest/meyering/coreutils-8.5.188-c8923/lib/config.h
+ > /dev/null
+ skip_test_ this system lacks the utimensat function
./cp/preserve-slink-time: skipping test: this system lacks the utimensat 
function

SKIP: cp/proc-short-read (exit: 77)
===================================

+ cp --version
cp (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Torbjorn Granlund, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=proc-short-read
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-proc-short-read.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-proc-short-read.jqlDjKXqNm
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-proc-short-read.jqlDjKXqNm
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ kall=/proc/kallsyms
+ test -r /proc/kallsyms
+ skip_test_ your system lacks /proc/kallsyms
./cp/proc-short-read: skipping test: your system lacks /proc/kallsyms

SKIP: cp/reflink-auto (exit: 77)
================================

+ cp --version
cp (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Torbjorn Granlund, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=reflink-auto
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-reflink-auto.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-reflink-auto.SVXrPuKDkb
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-reflink-auto.SVXrPuKDkb
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ . /u/guest/meyering/coreutils-8.5.188-c8923/tests/other-fs-tmpdir
+ test  = set
+ CANDIDATE_TMP_DIRS=. /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
+ other_partition_tmpdir=
+ stat -c %d .
+ dot_mount_point=1024
+ test -d .
+ stat -L -c %d .
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /tmp
+ stat -L -c %d /tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /dev/shm
+ continue
+ test -d /var/tmp
+ stat -L -c %d /var/tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /usr/tmp
+ continue
+ test -d /u/guest/meyering
+ stat -L -c %d /u/guest/meyering
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -z
+ skip_test_ requires a writable directory on a different disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.
./cp/reflink-auto: skipping test: requires a writable directory on a different 
disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.

SKIP: dd/direct (exit: 77)
==========================

+ dd --version
dd (coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Paul Rubin, David MacKenzie, and Stuart Kemp.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=direct
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-direct.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-direct.pXU64ya8mn
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-direct.pXU64ya8mn
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ truncate -s 8192 in
+ dd if=in oflag=direct of=out
+ 2> /dev/null
+ skip_test_ this file system lacks support for O_DIRECT
./dd/direct: skipping test: this file system lacks support for O_DIRECT

SKIP: du/2g (exit: 77)
======================

+ du --version
du (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Torbjorn Granlund, David MacKenzie, Paul Eggert,
and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=2g
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-2g.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-2g.NyQ7tb1yCV
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-2g.NyQ7tb1yCV
+ 2>&1
+ > /dev/null
+ grep GNU
+ diff --version
+ < /dev/null
+ 2>&1
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ very_expensive_
./du/2g: skipping test: very expensive: disabled by default
This test is very expensive, so it is disabled by default.
To run it anyway, rerun make check with the RUN_VERY_EXPENSIVE_TESTS
environment variable set to yes.  E.g.,

  env RUN_VERY_EXPENSIVE_TESTS=yes make check


SKIP: du/fd-leak (exit: 77)
===========================

+ du --version
du (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Torbjorn Granlund, David MacKenzie, Paul Eggert,
and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=fd-leak
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-fd-leak.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-fd-leak.HoR9V3e41J
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-fd-leak.HoR9V3e41J
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ expensive_
./du/fd-leak: skipping test: expensive: disabled by default
This test is relatively expensive, so it is disabled by default.
To run it anyway, rerun make check with the RUN_EXPENSIVE_TESTS
environment variable set to yes.  E.g.,

  env RUN_EXPENSIVE_TESTS=yes make check


FAIL: du/inacc-dest (exit: 1)
=============================

+ du --version
du (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Torbjorn Granlund, David MacKenzie, Paul Eggert,
and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=inacc-dest
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-inacc-dest.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-inacc-dest.kuPTXbX4Hi
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-inacc-dest.kuPTXbX4Hi
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ skip_if_root_
+ mkdir f
+ cd f
+ mkdir a b c d e
+ touch c/j
+ chmod a-x c
+ du
+ > ../t
+ 2>&1
+ sed s/^[0-9][0-9]*    // ../t
+ sort -u
+ > out
+ cat
+ << \EOF
+ > exp
+ sed s,/c/j': ,/c': , out
+ > t
+ mv t out
+ sed s,cannot access,cannot read directory, out
+ > t
+ mv t out
+ compare out exp
+ fail=1
+ Exit 1

FAIL: du/inaccessible-cwd (exit: 1)
===================================

+ du --version
du (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Torbjorn Granlund, David MacKenzie, Paul Eggert,
and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=inaccessible-cwd
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-inaccessible-cwd.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-inaccessible-cwd.q4Ah2Qg3YK
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-inaccessible-cwd.q4Ah2Qg3YK
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ skip_if_root_
+ pwd
+ 
cwd=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-inaccessible-cwd.q4Ah2Qg3YK
+ mkdir -p no-x a/b
+ cd no-x
+ chmod 0 .
+ du 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-inaccessible-cwd.q4Ah2Qg3YK/a
+ > /dev/null
du: unable to record current working directory: Permission denied
+ fail=1
+ Exit 1

SKIP: du/long-from-unreadable (exit: 77)
========================================

+ du --version
du (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Torbjorn Granlund, David MacKenzie, Paul Eggert,
and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=long-from-unreadable
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-long-from-unreadable.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-long-from-unreadable.Dv8Arg3hAF
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-long-from-unreadable.Dv8Arg3hAF
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ proc_file=/proc/self/fd
+ test ! -d /proc/self/fd
+ skip_test_ This test would fail, since your system lacks /proc support.
./du/long-from-unreadable: skipping test: This test would fail, since your 
system lacks /proc support.

FAIL: du/no-x (exit: 1)
=======================

+ du --version
du (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Torbjorn Granlund, David MacKenzie, Paul Eggert,
and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=no-x
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-no-x.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-no-x.PfgS5SD8tS
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-no-x.PfgS5SD8tS
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ skip_if_root_
+ mkdir -p d/no-x/y
+ chmod u=rw d/no-x
+ du d
+ > /dev/null
+ 2> out
+ prog=du
+ sed s/^du: cannot access /du: / out
+ > t
+ mv t out
+ sed s/^du: cannot read directory /du: / out
+ > t
+ mv t out
+ sed s,d/no-x/y,d/no-x, out
+ > t
+ mv t out
+ cat
+ << EOF
+ > exp
+ compare out exp
+ fail=1
+ Exit 1

SKIP: id/no-context (exit: 77)
==============================

+ id --version
id (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Arnold Robbins and David MacKenzie.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=no-context
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-no-context.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-no-context.3SDmyzTZEb
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-no-context.3SDmyzTZEb
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_selinux_
./id/no-context: skipping test: this system (or maybe just the current file 
system) lacks SELinux support

SKIP: install/install-C-selinux (exit: 77)
==========================================

+ ginstall --version
install (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David MacKenzie.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=install-C-selinux
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-install-C-selinux.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-install-C-selinux.avIY192r0a
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-install-C-selinux.avIY192r0a
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_selinux_
./install/install-C-selinux: skipping test: this system (or maybe just the 
current file system) lacks SELinux support

SKIP: ls/no-cap (exit: 77)
==========================

+ ls --version
ls (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Richard M. Stallman and David MacKenzie.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=no-cap
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-no-cap.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-no-cap.hW6zWYSfh8
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-no-cap.hW6zWYSfh8
+ 2>&1
+ > /dev/null
+ grep GNU
+ diff --version
+ < /dev/null
+ 2>&1
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_strace_ capget
./ls/no-cap: skipping test: no strace program

SKIP: ls/readdir-mountpoint-inode (exit: 77)
============================================

+ ls --version
ls (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Richard M. Stallman and David MacKenzie.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=readdir-mountpoint-inode
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-readdir-mountpoint-inode.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-readdir-mountpoint-inode.dqGtclAuAM
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-readdir-mountpoint-inode.dqGtclAuAM
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ df --local -P
+ 2>&1
+ sed -n s,.*[0-9]% \(/.\),\1,p
+ mount_points=
+ test -z
+ skip_test_ this test requires a non-root mount point
./ls/readdir-mountpoint-inode: skipping test: this test requires a non-root 
mount point

SKIP: ls/stat-free-symlinks (exit: 77)
======================================

+ ls --version
ls (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Richard M. Stallman and David MacKenzie.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=stat-free-symlinks
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-stat-free-symlinks.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-stat-free-symlinks.DpM8q7iQy4
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-stat-free-symlinks.DpM8q7iQy4
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_strace_ stat
./ls/stat-free-symlinks: skipping test: no strace program

SKIP: mkdir/selinux (exit: 77)
==============================

+ mkdir --version
mkdir (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David MacKenzie.
+ mkfifo --version
mkfifo (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David MacKenzie.
+ mknod --version
./mkdir/selinux[24]: mknod: --: unknown option
./mkdir/selinux[24]: usage: mknod [-m mode] name [b | c] major minor
./mkdir/selinux[24]: usage: mknod [-m mode] name p
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=selinux
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-selinux.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-selinux.B1WScj84qE
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-selinux.B1WScj84qE
+ 2>&1
+ > /dev/null
+ diff --version
+ grep GNU
+ < /dev/null
+ 2>&1
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_selinux_enforcing_
./mkdir/selinux[31]: getenforce: not found
./mkdir/selinux: skipping test: This test is useful only with SELinux in 
Enforcing mode.

SKIP: mv/acl (exit: 77)
=======================

+ mv --version
mv (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Parker, David MacKenzie, and Jim Meyering.
+ getfacl --version
./mv/acl[25]: getfacl: not found
+ setfacl --version
./mv/acl[25]: setfacl: not found
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=acl
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-acl.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-acl.LXTyuujLNI
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-acl.LXTyuujLNI
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_acl_
./mv/acl: skipping test: This test requires getfacl and setfacl.

SKIP: mv/atomic (exit: 77)
==========================

+ mv --version
mv (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Parker, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=atomic
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-atomic.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-atomic.06k19fupn2
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-atomic.06k19fupn2
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_strace_ unlink
./mv/atomic: skipping test: no strace program

SKIP: mv/atomic2 (exit: 77)
===========================

+ mv --version
mv (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Parker, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=atomic2
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-atomic2.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-atomic2.THaBb9ZJSj
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-atomic2.THaBb9ZJSj
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_strace_ unlink
./mv/atomic2: skipping test: no strace program

SKIP: mv/backup-is-src (exit: 77)
=================================

+ mv --version
mv (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Parker, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=backup-is-src
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-backup-is-src.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-backup-is-src.OaJWD6OQ66
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-backup-is-src.OaJWD6OQ66
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ . /u/guest/meyering/coreutils-8.5.188-c8923/tests/other-fs-tmpdir
+ test  = set
+ CANDIDATE_TMP_DIRS=. /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
+ other_partition_tmpdir=
+ stat -c %d .
+ dot_mount_point=1024
+ test -d .
+ stat -L -c %d .
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /tmp
+ stat -L -c %d /tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /dev/shm
+ continue
+ test -d /var/tmp
+ stat -L -c %d /var/tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /usr/tmp
+ continue
+ test -d /u/guest/meyering
+ stat -L -c %d /u/guest/meyering
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -z
+ skip_test_ requires a writable directory on a different disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.
./mv/backup-is-src: skipping test: requires a writable directory on a different 
disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.

SKIP: mv/hard-link-1 (exit: 77)
===============================

+ mv --version
mv (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Parker, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=hard-link-1
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-hard-link-1.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-hard-link-1.4Wj3cxlHR7
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-hard-link-1.4Wj3cxlHR7
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ . /u/guest/meyering/coreutils-8.5.188-c8923/tests/other-fs-tmpdir
+ test  = set
+ CANDIDATE_TMP_DIRS=. /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
+ other_partition_tmpdir=
+ stat -c %d .
+ dot_mount_point=1024
+ test -d .
+ stat -L -c %d .
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /tmp
+ stat -L -c %d /tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /dev/shm
+ continue
+ test -d /var/tmp
+ stat -L -c %d /var/tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /usr/tmp
+ continue
+ test -d /u/guest/meyering
+ stat -L -c %d /u/guest/meyering
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -z
+ skip_test_ requires a writable directory on a different disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.
./mv/hard-link-1: skipping test: requires a writable directory on a different 
disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.

FAIL: mv/i-3 (exit: 1)
======================

+ mv --version
mv (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Parker, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=i-3
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-i-3.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-i-3.OvRa4oYsD3
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-i-3.OvRa4oYsD3
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_controlling_input_terminal_
+ skip_if_root_
+ trap  TTIN
+ touch f g h i
+ chmod 0 g i
+ ls /dev/stdin
+ > /dev/null
+ 2>&1
+ test -r /dev/stdin
+ 2>&1
+ pid=3402
+ retry_delay_ check_overwrite_prompt .1 5
+ mv f g
+ < /dev/stdin
+ > out
+ 2>&1
+ fail=1
+ kill 3402
./mv/i-3[53]: kill: 3402: No such process
+ mv -f h i
+ > out
+ 2>&1
+ test -f i
+ test -f h
+ cat out
+ Exit 1

SKIP: mv/into-self-2 (exit: 77)
===============================

+ mv --version
mv (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Parker, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=into-self-2
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-into-self-2.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-into-self-2.8dnBXIZTuB
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-into-self-2.8dnBXIZTuB
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ . /u/guest/meyering/coreutils-8.5.188-c8923/tests/other-fs-tmpdir
+ test  = set
+ CANDIDATE_TMP_DIRS=. /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
+ other_partition_tmpdir=
+ stat -c %d .
+ dot_mount_point=1024
+ test -d .
+ stat -L -c %d .
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /tmp
+ stat -L -c %d /tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /dev/shm
+ continue
+ test -d /var/tmp
+ stat -L -c %d /var/tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /usr/tmp
+ continue
+ test -d /u/guest/meyering
+ stat -L -c %d /u/guest/meyering
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -z
+ skip_test_ requires a writable directory on a different disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.
./mv/into-self-2: skipping test: requires a writable directory on a different 
disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.

SKIP: mv/leak-fd (exit: 77)
===========================

+ mv --version
mv (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Parker, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=leak-fd
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-leak-fd.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-leak-fd.oPNet1aUxr
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-leak-fd.oPNet1aUxr
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ skip_if_root_
+ . /u/guest/meyering/coreutils-8.5.188-c8923/tests/other-fs-tmpdir
+ test  = set
+ CANDIDATE_TMP_DIRS=. /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
+ other_partition_tmpdir=
+ stat -c %d .
+ dot_mount_point=1024
+ test -d .
+ stat -L -c %d .
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /tmp
+ stat -L -c %d /tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /dev/shm
+ continue
+ test -d /var/tmp
+ stat -L -c %d /var/tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /usr/tmp
+ continue
+ test -d /u/guest/meyering
+ stat -L -c %d /u/guest/meyering
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -z
+ skip_test_ requires a writable directory on a different disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.
./mv/leak-fd: skipping test: requires a writable directory on a different disk 
partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.

SKIP: mv/mv-special-1 (exit: 77)
================================

+ mv --version
mv (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Parker, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=mv-special-1
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-mv-special-1.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-mv-special-1.ZjA3GOJ3AT
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-mv-special-1.ZjA3GOJ3AT
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ . /u/guest/meyering/coreutils-8.5.188-c8923/tests/other-fs-tmpdir
+ test  = set
+ CANDIDATE_TMP_DIRS=. /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
+ other_partition_tmpdir=
+ stat -c %d .
+ dot_mount_point=1024
+ test -d .
+ stat -L -c %d .
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /tmp
+ stat -L -c %d /tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /dev/shm
+ continue
+ test -d /var/tmp
+ stat -L -c %d /var/tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /usr/tmp
+ continue
+ test -d /u/guest/meyering
+ stat -L -c %d /u/guest/meyering
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -z
+ skip_test_ requires a writable directory on a different disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.
./mv/mv-special-1: skipping test: requires a writable directory on a different 
disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.

SKIP: mv/part-fail (exit: 77)
=============================

+ mv --version
mv (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Parker, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=part-fail
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-part-fail.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-part-fail.U5cArYFiCY
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-part-fail.U5cArYFiCY
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ skip_if_root_
+ . /u/guest/meyering/coreutils-8.5.188-c8923/tests/other-fs-tmpdir
+ test  = set
+ CANDIDATE_TMP_DIRS=. /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
+ other_partition_tmpdir=
+ stat -c %d .
+ dot_mount_point=1024
+ test -d .
+ stat -L -c %d .
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /tmp
+ stat -L -c %d /tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /dev/shm
+ continue
+ test -d /var/tmp
+ stat -L -c %d /var/tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /usr/tmp
+ continue
+ test -d /u/guest/meyering
+ stat -L -c %d /u/guest/meyering
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -z
+ skip_test_ requires a writable directory on a different disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.
./mv/part-fail: skipping test: requires a writable directory on a different 
disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.
chmod: cannot access `': No such file or directory

SKIP: mv/part-hardlink (exit: 77)
=================================

+ mv --version
mv (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Parker, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=part-hardlink
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-part-hardlink.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-part-hardlink.sFFwu0nBrt
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-part-hardlink.sFFwu0nBrt
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ . /u/guest/meyering/coreutils-8.5.188-c8923/tests/other-fs-tmpdir
+ test  = set
+ CANDIDATE_TMP_DIRS=. /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
+ other_partition_tmpdir=
+ stat -c %d .
+ dot_mount_point=1024
+ test -d .
+ stat -L -c %d .
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /tmp
+ stat -L -c %d /tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /dev/shm
+ continue
+ test -d /var/tmp
+ stat -L -c %d /var/tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /usr/tmp
+ continue
+ test -d /u/guest/meyering
+ stat -L -c %d /u/guest/meyering
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -z
+ skip_test_ requires a writable directory on a different disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.
./mv/part-hardlink: skipping test: requires a writable directory on a different 
disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.

SKIP: mv/part-rename (exit: 77)
===============================

+ mv --version
mv (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Parker, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=part-rename
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-part-rename.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-part-rename.gnAt17ZTIq
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-part-rename.gnAt17ZTIq
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ . /u/guest/meyering/coreutils-8.5.188-c8923/tests/other-fs-tmpdir
+ test  = set
+ CANDIDATE_TMP_DIRS=. /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
+ other_partition_tmpdir=
+ stat -c %d .
+ dot_mount_point=1024
+ test -d .
+ stat -L -c %d .
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /tmp
+ stat -L -c %d /tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /dev/shm
+ continue
+ test -d /var/tmp
+ stat -L -c %d /var/tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /usr/tmp
+ continue
+ test -d /u/guest/meyering
+ stat -L -c %d /u/guest/meyering
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -z
+ skip_test_ requires a writable directory on a different disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.
./mv/part-rename: skipping test: requires a writable directory on a different 
disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.

SKIP: mv/part-symlink (exit: 77)
================================

+ mv --version
mv (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Parker, David MacKenzie, and Jim Meyering.
+ cp --version
cp (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Torbjorn Granlund, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=part-symlink
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-part-symlink.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-part-symlink.hKvgEvL4LX
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-part-symlink.hKvgEvL4LX
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ . /u/guest/meyering/coreutils-8.5.188-c8923/tests/other-fs-tmpdir
+ test  = set
+ CANDIDATE_TMP_DIRS=. /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
+ other_partition_tmpdir=
+ stat -c %d .
+ dot_mount_point=1024
+ test -d .
+ stat -L -c %d .
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /tmp
+ stat -L -c %d /tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /dev/shm
+ continue
+ test -d /var/tmp
+ stat -L -c %d /var/tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /usr/tmp
+ continue
+ test -d /u/guest/meyering
+ stat -L -c %d /u/guest/meyering
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -z
+ skip_test_ requires a writable directory on a different disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.
./mv/part-symlink: skipping test: requires a writable directory on a different 
disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.

SKIP: mv/partition-perm (exit: 77)
==================================

+ mv --version
mv (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Parker, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=partition-perm
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-partition-perm.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-partition-perm.MA8ijrGZKG
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-partition-perm.MA8ijrGZKG
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ . /u/guest/meyering/coreutils-8.5.188-c8923/tests/other-fs-tmpdir
+ test  = set
+ CANDIDATE_TMP_DIRS=. /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
+ other_partition_tmpdir=
+ stat -c %d .
+ dot_mount_point=1024
+ test -d .
+ stat -L -c %d .
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /tmp
+ stat -L -c %d /tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /dev/shm
+ continue
+ test -d /var/tmp
+ stat -L -c %d /var/tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /usr/tmp
+ continue
+ test -d /u/guest/meyering
+ stat -L -c %d /u/guest/meyering
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -z
+ skip_test_ requires a writable directory on a different disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.
./mv/partition-perm: skipping test: requires a writable directory on a 
different disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.

SKIP: mv/to-symlink (exit: 77)
==============================

+ mv --version
mv (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Parker, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=to-symlink
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-to-symlink.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-to-symlink.90jpbuZzl2
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-to-symlink.90jpbuZzl2
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ . /u/guest/meyering/coreutils-8.5.188-c8923/tests/other-fs-tmpdir
+ test  = set
+ CANDIDATE_TMP_DIRS=. /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
+ other_partition_tmpdir=
+ stat -c %d .
+ dot_mount_point=1024
+ test -d .
+ stat -L -c %d .
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /tmp
+ stat -L -c %d /tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /dev/shm
+ continue
+ test -d /var/tmp
+ stat -L -c %d /var/tmp
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -d /usr/tmp
+ continue
+ test -d /u/guest/meyering
+ stat -L -c %d /u/guest/meyering
+ d_mount_point=1024
+ test x1024 = x1024
+ continue
+ test -z
+ skip_test_ requires a writable directory on a different disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.
./mv/to-symlink: skipping test: requires a writable directory on a different 
disk partition,
and I couldn't find one.  I tried these:
  . /tmp /dev/shm /var/tmp /usr/tmp /u/guest/meyering
Set your environment variable CANDIDATE_TMP_DIRS to make
this test use a different list.

SKIP: tail-2/assert-2 (exit: 77)
================================

+ tail --version
tail (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Paul Rubin, David MacKenzie, Ian Lance Taylor,
and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=assert-2
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-assert-2.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-assert-2.ZoYc4QwYLU
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-assert-2.ZoYc4QwYLU
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ very_expensive_
./tail-2/assert-2: skipping test: very expensive: disabled by default
This test is very expensive, so it is disabled by default.
To run it anyway, rerun make check with the RUN_VERY_EXPENSIVE_TESTS
environment variable set to yes.  E.g.,

  env RUN_VERY_EXPENSIVE_TESTS=yes make check


SKIP: tail-2/big-4gb (exit: 77)
===============================

+ tail --version
tail (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Paul Rubin, David MacKenzie, Ian Lance Taylor,
and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=big-4gb
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-big-4gb.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-big-4gb.QNy66ZGymF
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-big-4gb.QNy66ZGymF
+ 2>&1
+ > /dev/null
+ grep GNU
+ diff --version
+ < /dev/null
+ 2>&1
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ expensive_
./tail-2/big-4gb: skipping test: expensive: disabled by default
This test is relatively expensive, so it is disabled by default.
To run it anyway, rerun make check with the RUN_EXPENSIVE_TESTS
environment variable set to yes.  E.g.,

  env RUN_EXPENSIVE_TESTS=yes make check


SKIP: touch/no-dereference (exit: 77)
=====================================

+ touch --version
touch (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Paul Rubin, Arnold Robbins, Jim Kingdon,
David MacKenzie, and Randy Smith.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=no-dereference
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-no-dereference.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-no-dereference.NyDGN90nUR
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-no-dereference.NyDGN90nUR
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ ln -s nowhere dangling
+ touch file
+ ln -s file link
+ touch -h no-file
+ 2> err
+ test -s err
+ touch -h -c no-file
+ 2> err
+ test -s err
+ touch -h file
+ touch -h -r dangling file
+ test -f nowhere
+ grep ^#define HAVE_UTIMENSAT 1 
/u/guest/meyering/coreutils-8.5.188-c8923/lib/config.h
+ > /dev/null
+ grep ^#define HAVE_LUTIMES 1 
/u/guest/meyering/coreutils-8.5.188-c8923/lib/config.h
+ > /dev/null
+ skip_test_ this system lacks the utimensat function
./touch/no-dereference: skipping test: this system lacks the utimensat function

SKIP: chown/basic (exit: 77)
============================

+ chgrp --version
chgrp (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David MacKenzie and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=basic
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-basic.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-basic.EgDefkmGkH
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-basic.EgDefkmGkH
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ grep GNU
+ cmp --version
+ < /dev/null
+ 2>&1
+ fail=0
+ require_root_
./chown/basic: skipping test: must be run as root

SKIP: cp/cp-a-selinux (exit: 77)
================================

+ cp --version
cp (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Torbjorn Granlund, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=cp-a-selinux
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-cp-a-selinux.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-cp-a-selinux.tiAkDnLW5a
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-cp-a-selinux.tiAkDnLW5a
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_root_
./cp/cp-a-selinux: skipping test: must be run as root

SKIP: cp/preserve-gid (exit: 77)
================================

./cp/preserve-gid: skipping test: must be run as root

SKIP: cp/special-bits (exit: 77)
================================

+ cp --version
cp (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Torbjorn Granlund, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=special-bits
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-special-bits.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-special-bits.SIfcK94C21
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-special-bits.SIfcK94C21
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_root_
./cp/special-bits: skipping test: must be run as root

SKIP: cp/cp-mv-enotsup-xattr (exit: 77)
=======================================

+ cp --version
cp (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Torbjorn Granlund, David MacKenzie, and Jim Meyering.
+ mv --version
mv (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Parker, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=cp-mv-enotsup-xattr
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-cp-mv-enotsup-xattr.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-cp-mv-enotsup-xattr.j37QQC0xdO
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-cp-mv-enotsup-xattr.j37QQC0xdO
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_root_
./cp/cp-mv-enotsup-xattr: skipping test: must be run as root

SKIP: cp/capability (exit: 77)
==============================

+ ls --version
ls (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Richard M. Stallman and David MacKenzie.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=capability
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-capability.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-capability.y4pPulPiHr
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-capability.y4pPulPiHr
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_root_
./cp/capability: skipping test: must be run as root

SKIP: dd/skip-seek-past-dev (exit: 77)
======================================

+ dd --version
dd (coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Paul Rubin, David MacKenzie, and Stuart Kemp.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=skip-seek-past-dev
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-skip-seek-past-dev.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-skip-seek-past-dev.nv7IraJmfy
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-skip-seek-past-dev.nv7IraJmfy
+ 2>&1
+ > /dev/null
+ grep GNU
+ diff --version
+ < /dev/null
+ 2>&1
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_root_
./dd/skip-seek-past-dev: skipping test: must be run as root

SKIP: install/install-C-root (exit: 77)
=======================================

+ ginstall --version
install (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David MacKenzie.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=install-C-root
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-install-C-root.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-install-C-root.Uh0Hyhp6ng
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-install-C-root.Uh0Hyhp6ng
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_root_
./install/install-C-root: skipping test: must be run as root

SKIP: ls/capability (exit: 77)
==============================

+ ls --version
ls (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Richard M. Stallman and David MacKenzie.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=capability
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-capability.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-capability.rFkOYK5r8a
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-capability.rFkOYK5r8a
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_root_
./ls/capability: skipping test: must be run as root

SKIP: ls/nameless-uid (exit: 77)
================================

+ ls --version
ls (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Richard M. Stallman and David MacKenzie.
+ : .
+ . ./require-perl
+ : perl
+ perl -e use warnings
+ > /dev/null
+ 2>&1
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=nameless-uid
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-nameless-uid.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-nameless-uid.2u2q4E0k2r
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-nameless-uid.2u2q4E0k2r
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_root_
./ls/nameless-uid: skipping test: must be run as root

SKIP: misc/chcon (exit: 77)
===========================

+ chcon --version
chcon (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Russell Coker and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=chcon
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-chcon.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-chcon.FZOg9OG1d9
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-chcon.FZOg9OG1d9
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_root_
./misc/chcon: skipping test: must be run as root

SKIP: misc/chroot-credentials (exit: 77)
========================================

+ chroot --version
chroot (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Roland McGrath.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=chroot-credentials
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-chroot-credentials.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-chroot-credentials.r2bd0atbMI
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-chroot-credentials.r2bd0atbMI
+ 2>&1
+ > /dev/null
+ grep GNU
+ diff --version
+ < /dev/null
+ 2>&1
+ 2>&1
+ > /dev/null
+ grep GNU
+ cmp --version
+ < /dev/null
+ 2>&1
+ fail=0
+ require_root_
./misc/chroot-credentials: skipping test: must be run as root

SKIP: misc/selinux (exit: 77)
=============================

+ chcon --version
chcon (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Russell Coker and Jim Meyering.
+ cp --version
cp (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Torbjorn Granlund, David MacKenzie, and Jim Meyering.
+ ls --version
ls (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Richard M. Stallman and David MacKenzie.
+ mv --version
mv (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Parker, David MacKenzie, and Jim Meyering.
+ stat --version
stat (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Michael Meskes.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=selinux
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-selinux.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-selinux.iLSAHutz2m
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-selinux.iLSAHutz2m
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_root_
./misc/selinux: skipping test: must be run as root

SKIP: misc/truncate-owned-by-other (exit: 77)
=============================================

+ truncate --version
truncate (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Padraig Brady.
+ . ./envvar-check
+ > /dev/null
+ 2>&1
+ as_unset=unset
+ envvar_check_fail=0
+ vars=
  _POSIX2_VERSION
  BLOCKSIZE
  BLOCK_SIZE
  CDPATH
  COLUMNS
  DF_BLOCK_SIZE
  DU_BLOCK_SIZE
  LANGUAGE
  LS_BLOCK_SIZE
  LS_COLORS
  POSIXLY_CORRECT
  QUOTING_STYLE
  SIMPLE_BACKUP_SUFFIX
  TABSIZE
  TERM
  TIME_STYLE
  TMPDIR
  VERSION_CONTROL

+ unset _POSIX2_VERSION
+ eval test "${_POSIX2_VERSION+set}" = set
+ test  = set
+ unset BLOCKSIZE
+ eval test "${BLOCKSIZE+set}" = set
+ test  = set
+ unset BLOCK_SIZE
+ eval test "${BLOCK_SIZE+set}" = set
+ test  = set
+ unset CDPATH
+ eval test "${CDPATH+set}" = set
+ test  = set
+ unset COLUMNS
+ eval test "${COLUMNS+set}" = set
+ test  = set
+ unset DF_BLOCK_SIZE
+ eval test "${DF_BLOCK_SIZE+set}" = set
+ test  = set
+ unset DU_BLOCK_SIZE
+ eval test "${DU_BLOCK_SIZE+set}" = set
+ test  = set
+ unset LANGUAGE
+ eval test "${LANGUAGE+set}" = set
+ test  = set
+ unset LS_BLOCK_SIZE
+ eval test "${LS_BLOCK_SIZE+set}" = set
+ test  = set
+ unset LS_COLORS
+ eval test "${LS_COLORS+set}" = set
+ test  = set
+ unset POSIXLY_CORRECT
+ eval test "${POSIXLY_CORRECT+set}" = set
+ test  = set
+ unset QUOTING_STYLE
+ eval test "${QUOTING_STYLE+set}" = set
+ test  = set
+ unset SIMPLE_BACKUP_SUFFIX
+ eval test "${SIMPLE_BACKUP_SUFFIX+set}" = set
+ test  = set
+ unset TABSIZE
+ eval test "${TABSIZE+set}" = set
+ test  = set
+ unset TERM
+ eval test "${TERM+set}" = set
+ test  = set
+ unset TIME_STYLE
+ eval test "${TIME_STYLE+set}" = set
+ test  = set
+ unset TMPDIR
+ eval test "${TMPDIR+set}" = set
+ test  = set
+ unset VERSION_CONTROL
+ eval test "${VERSION_CONTROL+set}" = set
+ test  = set
+ test 0 = 1
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=truncate-owned-by-other
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-truncate-owned-by-other.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-truncate-owned-by-other.3QFsToIDn3
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-truncate-owned-by-other.3QFsToIDn3
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_root_
./misc/truncate-owned-by-other: skipping test: must be run as root

SKIP: mkdir/writable-under-readonly (exit: 77)
==============================================

+ mkdir --version
mkdir (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by David MacKenzie.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=writable-under-readonly
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-writable-under-readonly.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-writable-under-readonly.4RK3vP6fRL
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-writable-under-readonly.4RK3vP6fRL
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_root_
./mkdir/writable-under-readonly: skipping test: must be run as root

SKIP: mv/sticky-to-xpart (exit: 77)
===================================

+ mv --version
mv (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Mike Parker, David MacKenzie, and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=sticky-to-xpart
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-sticky-to-xpart.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-sticky-to-xpart.WH8BZ7wRnA
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-sticky-to-xpart.WH8BZ7wRnA
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_root_
./mv/sticky-to-xpart: skipping test: must be run as root

SKIP: rm/fail-2eperm (exit: 77)
===============================

+ rm --version
rm (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Paul Rubin, David MacKenzie, Richard M. Stallman,
and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=fail-2eperm
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-fail-2eperm.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-fail-2eperm.LfiZtxJdXg
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-fail-2eperm.LfiZtxJdXg
+ 2>&1
+ > /dev/null
+ grep GNU
+ diff --version
+ < /dev/null
+ 2>&1
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_root_
./rm/fail-2eperm: skipping test: must be run as root

SKIP: rm/no-give-up (exit: 77)
==============================

+ rm --version
rm (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Paul Rubin, David MacKenzie, Richard M. Stallman,
and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=no-give-up
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-no-give-up.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-no-give-up.wPF5PhL3Ep
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-no-give-up.wPF5PhL3Ep
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_root_
./rm/no-give-up: skipping test: must be run as root

SKIP: rm/one-file-system (exit: 77)
===================================

+ rm --version
rm (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Paul Rubin, David MacKenzie, Richard M. Stallman,
and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=one-file-system
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-one-file-system.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-one-file-system.HXLsmpjWIT
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-one-file-system.HXLsmpjWIT
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_root_
./rm/one-file-system: skipping test: must be run as root

SKIP: rm/read-only (exit: 77)
=============================

+ rm --version
rm (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Paul Rubin, David MacKenzie, Richard M. Stallman,
and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=read-only
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-read-only.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-read-only.5BusjTVObx
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-read-only.5BusjTVObx
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_root_
./rm/read-only: skipping test: must be run as root

SKIP: tail-2/append-only (exit: 77)
===================================

+ tail --version
tail (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Paul Rubin, David MacKenzie, Ian Lance Taylor,
and Jim Meyering.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=append-only
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests cu-append-only.XXXXXXXXXX
+ t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-append-only.WJK7rGs5Hy
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd /u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-append-only.WJK7rGs5Hy
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ cmp --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ fail=0
+ require_root_
./tail-2/append-only: skipping test: must be run as root

SKIP: touch/now-owned-by-other (exit: 77)
=========================================

+ touch --version
touch (GNU coreutils) 8.5.188-c8923
Copyright (C) 2010 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by Paul Rubin, Arnold Robbins, Jim Kingdon,
David MacKenzie, and Randy Smith.
+ . ./test-lib.sh
+ unset function_test
+ eval function_test() { return 11; }; function_test
+ function_test
+ test 11 != 11
+ test -f ./init.cfg
+ . ./init.cfg
+ stderr_fileno_=9
+ sanitize_path_
+ pwd
+ test_dir_=/u/guest/meyering/coreutils-8.5.188-c8923/tests
+ this_test_
+ this_test=now-owned-by-other
+ /u/guest/meyering/coreutils-8.5.188-c8923/src/mktemp -d 
--tmp=/u/guest/meyering/coreutils-8.5.188-c8923/tests 
cu-now-owned-by-other.XXXXXXXXXX
+ 
t_=/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-now-owned-by-other.5JrcHyxEtV
+ trap remove_tmp_ 0
+ trap Exit 129 1
+ trap Exit 130 2
+ trap Exit 131 3
+ trap Exit 141 13
+ trap Exit 143 15
+ cd 
/u/guest/meyering/coreutils-8.5.188-c8923/tests/cu-now-owned-by-other.5JrcHyxEtV
+ 2>&1
+ > /dev/null
+ diff --version
+ < /dev/null
+ 2>&1
+ grep GNU
+ 2>&1
+ > /dev/null
+ grep GNU
+ cmp --version
+ < /dev/null
+ 2>&1
+ fail=0
+ require_root_
./touch/now-owned-by-other: skipping test: must be run as root



reply via email to

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