On Sun, 23 Aug 2009, Jim Meyering wrote:
Russell Whitaker wrote:
Source: slackware-current/source
Modified SlackBuild to build as i686
Compiler: gcc-4.4.1
Test suite ran as su
3 fails, individual logs attached
Let me know if this was helpful
Thanks,
Russ
make check-TESTS
make[1]: Entering directory `/tmp/coreutils-7.4/tests'
make[2]: Entering directory `/tmp/coreutils-7.4/tests'
FAIL: misc/stty
=============================================
GNU coreutils 7.4: tests/test-suite.log
Thanks for testing and for reporting the results.
FYI, coreutils-7.5 was released just a couple days ago.
(though it has improvements, you'll probably see these
same three failures)
Yes, just tried it: same 3 failures but no new ones.
FAIL: misc/stty (exit: 1)
FAIL: misc/stty-row-col
I haven't seen those stty test failures before,
so perhaps it something specific to your system.
On the other hand, it is not recommended to run *all*
tests as root (just in case there's a bug in a test
that can be abused). Instead, we suggest that you run only
those tests that require root privileges in order to operate.
See details in the README file.
Can you reproduce that failure while running the test as non-root?
"Chown russ:users -R *" from coreutils dir, then ran tests as user russ.
Now only misc/stty and misc/stty-row-col fails. Log4 & log5 attached.
uname -a:
Linux bigred 2.6.27.20-smp #2 SMP Fri May 8 01:32:45 PDT 2009 i686 AMD
Athlon(tm) MP 2000+ AuthenticAMD GNU/Linux
Anything else I can do to help?
Russ
FAIL: cp/cp-mv-enotsup-xattr
...
+ NON_ROOT_USERNAME=nobody
++ pwd
+ cwd=/tmp/coreutils-7.4/tests/cu-cp-mv-enotsup-xattr.xBikufnX9I
+ dd if=/dev/zero of=blob bs=8192 count=200
+ mkdir mnt
+ mkfs -t ext2 -F blob
mke2fs 1.41.3 (12-Oct-2008)
Filesystem label=
OS type: Linux
Block size=1024 (log=0)
Fragment size=1024 (log=0)
200 inodes, 1600 blocks
80 blocks (5.00%) reserved for the super user
First data block=1
Maximum filesystem blocks=1835008
1 block group
8192 blocks per group, 8192 fragments per group
200 inodes per group
Writing inode tables: 0/1done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 27 mounts or
180 days, whichever comes first. Use tune2fs -c or -i to override.
+ mount -oloop,nouser_xattr blob mnt
mount: unknown filesystem type 'ext2'
+ framework_failure
+ error_ 'failure in testing framework'
+ echo './cp/cp-mv-enotsup-xattr: failure in testing framework'
./cp/cp-mv-enotsup-xattr: failure in testing framework
Technically, this test should be skipped upon failure to mount
the just-created file system, so that the failure doesn't make
people worry that there may be a problem in the tool under test.
I've just fixed it in the repository:
From 831acb987e970ca86b72eb594965ff59bfedfd30 Mon Sep 17 00:00:00 2001
From: Jim Meyering <[email protected]>
Date: Sun, 23 Aug 2009 22:02:12 +0200
Subject: [PATCH] tests: skip (don't fail) a cp test, upon mount-related failure
* tests/cp/cp-mv-enotsup-xattr: Upon a set-up failiure, rather than
failing the test with a "framework failure" diagnostic, just skip it.
Russell Whitaker reported that this test failed on slackware.
---
tests/cp/cp-mv-enotsup-xattr | 17 ++++++++++-------
1 files changed, 10 insertions(+), 7 deletions(-)
diff --git a/tests/cp/cp-mv-enotsup-xattr b/tests/cp/cp-mv-enotsup-xattr
index 23ec4f3..8f3020b 100755
--- a/tests/cp/cp-mv-enotsup-xattr
+++ b/tests/cp/cp-mv-enotsup-xattr
@@ -30,16 +30,20 @@ require_root_
cwd=`pwd`
cleanup_() { cd /; umount "$cwd/mnt"; }
+skip=0
# Create a file system without user xattr support, then mount it.
dd if=/dev/zero of=blob bs=8192 count=200 > /dev/null 2>&1 \
- || framework_failure
-mkdir mnt || framework_failure
+ || skip=1
+mkdir mnt || skip=1
mkfs -t ext2 -F blob ||
skip_test_ "failed to create ext2 file system"
-mount -oloop,nouser_xattr blob mnt || framework_failure
-echo test > mnt/f || framework_failure
-test -s mnt/f || framework_failure
+mount -oloop,nouser_xattr blob mnt || skip=1
+echo test > mnt/f || skip=1
+test -s mnt/f || skip=1
+
+test $skip = 1 \
+ && skip_test_ "insufficient mount/ext2 support"
# testing xattr name-value pair
xattr_name="user.foo"
@@ -55,8 +59,7 @@ getfattr -d a >out_a || skip_test_ "failed to get xattr of
file"
grep -F "$xattr_pair" out_a >/dev/null \
|| skip_test_ "failed to set xattr of file"
-fail=0 || framework_failure
-
+fail=0
# This should pass without diagnostics
cp -a a mnt/ 2>err || fail=1
--
1.6.4.378.g88f2f
make check-TESTS
make[1]: Entering directory `/tmp/coreutils-7.4/tests'
make[2]: Entering directory `/tmp/coreutils-7.4/tests'
FAIL: misc/stty
=============================================
GNU coreutils 7.4: tests/test-suite.log
=============================================
1 of 1 test failed.
.. contents:: :depth: 2
FAIL: misc/stty (exit: 1)
=========================
+ stty --version
stty (GNU coreutils) 7.4
Copyright (C) 2009 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
+++ return 11
++ test 11 '!=' 11
+++ pwd
++ test_dir_=/tmp/coreutils-7.4/tests
+++ this_test_
+++ echo ././misc/stty
+++ sed 's,.*/,,'
++ this_test=stty
+++ /tmp/coreutils-7.4/src/mktemp -d --tmp=/tmp/coreutils-7.4/tests
cu-stty.XXXXXXXXXX
++ t_=/tmp/coreutils-7.4/tests/cu-stty.reTUqohxDP
++ trap remove_tmp_ 0
++ trap 'Exit $?' 1 2 13 15
++ cd /tmp/coreutils-7.4/tests/cu-stty.reTUqohxDP
++ diff --version
++ grep GNU
+ require_controlling_input_terminal_
+ tty -s
+ test -t 0
+ test '' = no
+ trap '' TTOU
+ REV_parenb=1
+ REV_parodd=1
+ REV_hupcl=1
+ REV_hup=1
+ REV_cstopb=1
+ REV_cread=1
+ REV_clocal=1
+ REV_crtscts=1
+ REV_ignbrk=1
+ REV_brkint=1
+ REV_ignpar=1
+ REV_parmrk=1
+ REV_inpck=1
+ REV_istrip=1
+ REV_inlcr=1
+ REV_igncr=1
+ REV_icrnl=1
+ REV_ixon=1
+ REV_ixoff=1
+ REV_tandem=1
+ REV_iuclc=1
+ REV_ixany=1
+ REV_imaxbel=1
+ REV_opost=1
+ REV_olcuc=1
+ REV_ocrnl=1
+ REV_onlcr=1
+ REV_onocr=1
+ REV_onlret=1
+ REV_ofill=1
+ REV_ofdel=1
+ REV_isig=1
+ REV_icanon=1
+ REV_iexten=1
+ REV_echo=1
+ REV_echoe=1
+ REV_crterase=1
+ REV_echok=1
+ REV_echonl=1
+ REV_noflsh=1
+ REV_xcase=1
+ REV_tostop=1
+ REV_echoprt=1
+ REV_prterase=1
+ REV_echoctl=1
+ REV_ctlecho=1
+ REV_echoke=1
+ REV_crtkill=1
+ REV_evenp=1
+ REV_parity=1
+ REV_oddp=1
+ REV_nl=1
+ REV_cooked=1
+ REV_raw=1
+ REV_pass8=1
+ REV_litout=1
+ REV_cbreak=1
+ REV_decctlq=1
+ REV_tabs=1
+ REV_lcase=1
+ REV_LCASE=1
+ fail=0
+ saved_state=.saved-state
+ stty --save
++ cat .saved-state
+ stty
1500:5:4bf:a3b:3:1c:7f:15:4:0:1:0:11:13:1a:0:12:f:17:16:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0
+ stty erase -
+ stty -F
+ stty -raw -F no/such/file
+ stty -raw -a
+ sed_del='/^speed/d;/^rows/d;/^columns/d;/ = /d'
++ stty -a
++ tr -s ';' '\n'
++ sed 's/^ //;/^speed/d;/^rows/d;/^columns/d;/ = /d;s/-//g'
+ options='parenb parodd cs8 hupcl cstopb cread clocal crtscts
ignbrk brkint ignpar parmrk inpck istrip inlcr igncr icrnl ixon ixoff
iuclc ixany imaxbel iutf8
opost olcuc ocrnl onlcr onocr onlret ofill ofdel nl0 cr0 tab0 bs0 vt0 ff0
isig icanon iexten echo echoe echok echonl noflsh xcase tostop echoprt
echoctl echoke'
+ for opt in '$options'
+ test parenb = parenb
+ continue
+ for opt in '$options'
+ test parodd = parenb
+ stty parodd
stty: standard input: unable to perform all requested operations
+ fail=1
+ test parodd = cread
++ eval echo '$REV_parodd'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -parodd
+ for opt in '$options'
+ test cs8 = parenb
+ stty cs8
+ test cs8 = cread
++ eval echo '$REV_cs8'
+++ echo
+ rev=
+ test -n ''
+ for opt in '$options'
+ test hupcl = parenb
+ stty hupcl
+ test hupcl = cread
++ eval echo '$REV_hupcl'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -hupcl
+ for opt in '$options'
+ test cstopb = parenb
+ stty cstopb
stty: standard input: unable to perform all requested operations
+ fail=1
+ test cstopb = cread
++ eval echo '$REV_cstopb'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -cstopb
+ for opt in '$options'
+ test cread = parenb
+ stty cread
+ test cread = cread
+ continue
+ for opt in '$options'
+ test clocal = parenb
+ stty clocal
+ test clocal = cread
++ eval echo '$REV_clocal'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -clocal
+ for opt in '$options'
+ test crtscts = parenb
+ stty crtscts
stty: standard input: unable to perform all requested operations
+ fail=1
+ test crtscts = cread
++ eval echo '$REV_crtscts'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -crtscts
+ for opt in '$options'
+ test ignbrk = parenb
+ stty ignbrk
+ test ignbrk = cread
++ eval echo '$REV_ignbrk'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -ignbrk
+ for opt in '$options'
+ test brkint = parenb
+ stty brkint
+ test brkint = cread
++ eval echo '$REV_brkint'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -brkint
+ for opt in '$options'
+ test ignpar = parenb
+ stty ignpar
+ test ignpar = cread
++ eval echo '$REV_ignpar'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -ignpar
+ for opt in '$options'
+ test parmrk = parenb
+ stty parmrk
+ test parmrk = cread
++ eval echo '$REV_parmrk'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -parmrk
+ for opt in '$options'
+ test inpck = parenb
+ stty inpck
+ test inpck = cread
++ eval echo '$REV_inpck'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -inpck
+ for opt in '$options'
+ test istrip = parenb
+ stty istrip
+ test istrip = cread
++ eval echo '$REV_istrip'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -istrip
+ for opt in '$options'
+ test inlcr = parenb
+ stty inlcr
+ test inlcr = cread
++ eval echo '$REV_inlcr'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -inlcr
+ for opt in '$options'
+ test igncr = parenb
+ stty igncr
+ test igncr = cread
++ eval echo '$REV_igncr'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -igncr
+ for opt in '$options'
+ test icrnl = parenb
+ stty icrnl
+ test icrnl = cread
++ eval echo '$REV_icrnl'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -icrnl
+ for opt in '$options'
+ test ixon = parenb
+ stty ixon
+ test ixon = cread
++ eval echo '$REV_ixon'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -ixon
+ for opt in '$options'
+ test ixoff = parenb
+ stty ixoff
+ test ixoff = cread
++ eval echo '$REV_ixoff'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -ixoff
+ for opt in '$options'
+ test iuclc = parenb
+ stty iuclc
+ test iuclc = cread
++ eval echo '$REV_iuclc'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -iuclc
+ for opt in '$options'
+ test ixany = parenb
+ stty ixany
+ test ixany = cread
++ eval echo '$REV_ixany'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -ixany
+ for opt in '$options'
+ test imaxbel = parenb
+ stty imaxbel
+ test imaxbel = cread
++ eval echo '$REV_imaxbel'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -imaxbel
+ for opt in '$options'
+ test iutf8 = parenb
+ stty iutf8
+ test iutf8 = cread
++ eval echo '$REV_iutf8'
+++ echo
+ rev=
+ test -n ''
+ for opt in '$options'
+ test opost = parenb
+ stty opost
+ test opost = cread
++ eval echo '$REV_opost'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -opost
+ for opt in '$options'
+ test olcuc = parenb
+ stty olcuc
+ test olcuc = cread
++ eval echo '$REV_olcuc'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -olcuc
+ for opt in '$options'
+ test ocrnl = parenb
+ stty ocrnl
+ test ocrnl = cread
++ eval echo '$REV_ocrnl'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -ocrnl
+ for opt in '$options'
+ test onlcr = parenb
+ stty onlcr
+ test onlcr = cread
++ eval echo '$REV_onlcr'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -onlcr
+ for opt in '$options'
+ test onocr = parenb
+ stty onocr
+ test onocr = cread
++ eval echo '$REV_onocr'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -onocr
+ for opt in '$options'
+ test onlret = parenb
+ stty onlret
+ test onlret = cread
++ eval echo '$REV_onlret'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -onlret
+ for opt in '$options'
+ test ofill = parenb
+ stty ofill
+ test ofill = cread
++ eval echo '$REV_ofill'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -ofill
+ for opt in '$options'
+ test ofdel = parenb
+ stty ofdel
+ test ofdel = cread
++ eval echo '$REV_ofdel'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -ofdel
+ for opt in '$options'
+ test nl0 = parenb
+ stty nl0
+ test nl0 = cread
++ eval echo '$REV_nl0'
+++ echo
+ rev=
+ test -n ''
+ for opt in '$options'
+ test cr0 = parenb
+ stty cr0
+ test cr0 = cread
++ eval echo '$REV_cr0'
+++ echo
+ rev=
+ test -n ''
+ for opt in '$options'
+ test tab0 = parenb
+ stty tab0
+ test tab0 = cread
++ eval echo '$REV_tab0'
+++ echo
+ rev=
+ test -n ''
+ for opt in '$options'
+ test bs0 = parenb
+ stty bs0
+ test bs0 = cread
++ eval echo '$REV_bs0'
+++ echo
+ rev=
+ test -n ''
+ for opt in '$options'
+ test vt0 = parenb
+ stty vt0
+ test vt0 = cread
++ eval echo '$REV_vt0'
+++ echo
+ rev=
+ test -n ''
+ for opt in '$options'
+ test ff0 = parenb
+ stty ff0
+ test ff0 = cread
++ eval echo '$REV_ff0'
+++ echo
+ rev=
+ test -n ''
+ for opt in '$options'
+ test isig = parenb
+ stty isig
+ test isig = cread
++ eval echo '$REV_isig'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -isig
+ for opt in '$options'
+ test icanon = parenb
+ stty icanon
+ test icanon = cread
++ eval echo '$REV_icanon'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -icanon
+ for opt in '$options'
+ test iexten = parenb
+ stty iexten
+ test iexten = cread
++ eval echo '$REV_iexten'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -iexten
+ for opt in '$options'
+ test echo = parenb
+ stty echo
+ test echo = cread
++ eval echo '$REV_echo'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -echo
+ for opt in '$options'
+ test echoe = parenb
+ stty echoe
+ test echoe = cread
++ eval echo '$REV_echoe'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -echoe
+ for opt in '$options'
+ test echok = parenb
+ stty echok
+ test echok = cread
++ eval echo '$REV_echok'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -echok
+ for opt in '$options'
+ test echonl = parenb
+ stty echonl
+ test echonl = cread
++ eval echo '$REV_echonl'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -echonl
+ for opt in '$options'
+ test noflsh = parenb
+ stty noflsh
+ test noflsh = cread
++ eval echo '$REV_noflsh'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -noflsh
+ for opt in '$options'
+ test xcase = parenb
+ stty xcase
+ test xcase = cread
++ eval echo '$REV_xcase'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -xcase
+ for opt in '$options'
+ test tostop = parenb
+ stty tostop
+ test tostop = cread
++ eval echo '$REV_tostop'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -tostop
+ for opt in '$options'
+ test echoprt = parenb
+ stty echoprt
+ test echoprt = cread
++ eval echo '$REV_echoprt'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -echoprt
+ for opt in '$options'
+ test echoctl = parenb
+ stty echoctl
+ test echoctl = cread
++ eval echo '$REV_echoctl'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -echoctl
+ for opt in '$options'
+ test echoke = parenb
+ stty echoke
+ test echoke = cread
++ eval echo '$REV_echoke'
+++ echo 1
+ rev=1
+ test -n 1
+ stty -echoke
+ test -n ''
++ cat .saved-state
+ stty
1500:5:4bf:a3b:3:1c:7f:15:4:0:1:0:11:13:1a:0:12:f:17:16:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0
+ Exit 1
+ set +e
+ exit 1
+ exit 1
+ remove_tmp_
+ __st=1
+ cleanup_
+ :
+ cd /tmp/coreutils-7.4/tests
+ chmod -R u+rwx /tmp/coreutils-7.4/tests/cu-stty.reTUqohxDP
+ rm -rf /tmp/coreutils-7.4/tests/cu-stty.reTUqohxDP
+ exit 1
======================================
1 of 1 test failed
See tests/test-suite.log
Please report to [email protected]
======================================
make[2]: *** [test-suite.log] Error 1
make[2]: Leaving directory `/tmp/coreutils-7.4/tests'
make[1]: *** [check-TESTS] Error 2
make[1]: Leaving directory `/tmp/coreutils-7.4/tests'
make: *** [check-am] Error 2
make check-TESTS
make[1]: Entering directory `/tmp/coreutils-7.4/tests'
make[2]: Entering directory `/tmp/coreutils-7.4/tests'
FAIL: misc/stty-row-col
=============================================
GNU coreutils 7.4: tests/test-suite.log
=============================================
1 of 1 test failed.
.. contents:: :depth: 2
FAIL: misc/stty-row-col (exit: 1)
=================================
+ stty --version
stty (GNU coreutils) 7.4
Copyright (C) 2009 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
+++ return 11
++ test 11 '!=' 11
+++ pwd
++ test_dir_=/tmp/coreutils-7.4/tests
+++ this_test_
+++ echo ././misc/stty-row-col
+++ sed 's,.*/,,'
++ this_test=stty-row-col
+++ /tmp/coreutils-7.4/src/mktemp -d --tmp=/tmp/coreutils-7.4/tests
cu-stty-row-col.XXXXXXXXXX
++ t_=/tmp/coreutils-7.4/tests/cu-stty-row-col.xHWKiCdOkn
++ trap remove_tmp_ 0
++ trap 'Exit $?' 1 2 13 15
++ cd /tmp/coreutils-7.4/tests/cu-stty-row-col.xHWKiCdOkn
++ grep GNU
++ diff --version
+ require_controlling_input_terminal_
+ tty -s
+ test -t 0
+ test '' = no
+ trap '' TTOU
+ tests='
1 rows_40_columns_80 40_80
2 rows_1_columns_1 1_1
3 rows_40_columns_80 40_80
4 rows_1 1_80
5 columns_1 1_1
6 rows_40 40_1
7 rows_1 1_1
8 columns_80 1_80
9 rows_30 30_80
NA LAST NA
'
+ set 1 rows_40_columns_80 40_80 2 rows_1_columns_1 1_1 3 rows_40_columns_80
40_80 4 rows_1 1_80 5 columns_1 1_1 6 rows_40 40_1 7 rows_1 1_1 8 columns_80
1_80 9 rows_30 30_80 NA LAST NA
++ stty size
+ saved_size='25 80'
+ test -n '25 80'
+ fail=0
+ :
+ test_name=1
+ args=rows_40_columns_80
++ echo 40_80
++ tr _ ' '
+ expected_result='40 80'
+ test rows_40_columns_80 = empty
+ test xrows_40_columns_80 = xLAST
++ echo xrows_40_columns_80
++ tr _ ' '
++ sed 's/^x//'
+ args='rows 40 columns 80'
+ test yes = yes
+ echo 'test 1... '
+ tr -d '\n'
test 1... + stty rows 40 columns 80
stty: standard input: Invalid argument
+ exit 1
+ remove_tmp_
+ __st=1
+ cleanup_
+ :
+ cd /tmp/coreutils-7.4/tests
+ chmod -R u+rwx /tmp/coreutils-7.4/tests/cu-stty-row-col.xHWKiCdOkn
+ rm -rf /tmp/coreutils-7.4/tests/cu-stty-row-col.xHWKiCdOkn
+ exit 1
======================================
1 of 1 test failed
See tests/test-suite.log
Please report to [email protected]
======================================
make[2]: *** [test-suite.log] Error 1
make[2]: Leaving directory `/tmp/coreutils-7.4/tests'
make[1]: *** [check-TESTS] Error 2
make[1]: Leaving directory `/tmp/coreutils-7.4/tests'
make: *** [check-am] Error 2