Received: (at 21061) by debbugs.gnu.org; 18 Jul 2015 11:10:53 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Sat Jul 18 07:10:52 2015 Received: from localhost ([127.0.0.1]:52573 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1ZGQ16-0005lU-Dy for submit <at> debbugs.gnu.org; Sat, 18 Jul 2015 07:10:52 -0400 Received: from mail2.vodafone.ie ([213.233.128.44]:39125) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from <P@HIDDEN>) id 1ZGQ14-0005lG-M9 for 21061 <at> debbugs.gnu.org; Sat, 18 Jul 2015 07:10:51 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AnEHAJMzqlVtTeVh/2dsb2JhbABbgkFSVGm9WoV7AoEoTAEBAQEBAYELhCMBAQEDATIBSwsLDQEKCRYECwkDAgECAUUGAQwIAQGIIgwBvGuQCAELAR+LTIQaZwyEKwEEjDiIGoRviHVGhliIDYgZJoI+gT89MYJLAQEB Received: from unknown (HELO localhost.localdomain) ([109.77.229.97]) by mail2.vodafone.ie with ESMTP; 18 Jul 2015 12:10:43 +0100 Message-ID: <55AA3433.8010104@HIDDEN> Date: Sat, 18 Jul 2015 12:10:43 +0100 From: =?windows-1252?Q?P=E1draig_Brady?= <P@HIDDEN> User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: Peter Bray <pdb_ml@HIDDEN>, 21061 <at> debbugs.gnu.org Subject: Re: bug#21061: coreutils-8.24 - Partially reproducible failures of tests/misc/timeout-parameters.sh References: <55A6266C.7030009@HIDDEN> <55A63663.7020604@HIDDEN> <55A74AAA.1090401@HIDDEN> <55A763B5.2020901@HIDDEN> <55A874C2.1090901@HIDDEN> <55A8C327.7040304@HIDDEN> <55A9C35E.7030108@HIDDEN> In-Reply-To: <55A9C35E.7030108@HIDDEN> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 21061 X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: 0.0 (/) On 18/07/15 04:09, Peter Bray wrote: > On 17/07/15 06:56 PM, Pádraig Brady wrote: >> while true; do time gtimeout 0.1 sleep inf; test $? != 124 && break; done > > Run this code on S10U8/32 for almost 12 hours without it stopping > itself. An almost 10 hours on S10U11/32 with the same result (not > stopping itself). Cool. That suggests it's a kernel issue with large timeout values. > > Made the requested change to src/timeout.c > > Backup : src/timeout.c.orig > Editted : src/timeout.c > > Command : gdiff > > 139c139 > < if (timer_create (CLOCK_REALTIME, NULL, &timerid) == 0) > --- > > if (timer_create (CLOCK_MONOTONIC, NULL, &timerid) == 0) > > Run as an unprivileged user, gives the following error summary: > > % egrep '(FAIL|ERROR) ' tests/test-suite.log | sed -e 's/FAIL /FAIL /' > FAIL tests/misc/tee.sh (exit status: 1) > FAIL tests/misc/timeout-blocked.pl (exit status: 1) > FAIL tests/tail-2/wait.sh (exit status: 1) > FAIL tests/tail-2/retry.sh (exit status: 1) > FAIL tests/tail-2/symlink.sh (exit status: 1) > FAIL tests/ls/infloop.sh (exit status: 1) > FAIL tests/tail-2/follow-name.sh (exit status: 1) > FAIL tests/tail-2/follow-stdin.sh (exit status: 1) That's a strange restriction. Linux doesn't have that at least. > > On Solaris 10 Update 8 with Solaris 10 Update 11 and Solaris 11.2 have > the additional tmpfs build problems mentioned in BUG-21062 > > With the following executive summary: > > % grep "timer_create: Not owner" ./tests/test-suite.log | sort | uniq -c > 1 + timeout: warning: timer_create: Not owner > 7 +timeout: warning: timer_create: Not owner > 29 timeout: warning: timer_create: Not owner > > When run as "root" on Solaris 10 Update 8, the attached > "test-suite.log-monotonic-root" shows that two tests FAIL: > > % egrep '(FAIL|ERROR) ' test-suite.log-*-root | sed -e 's/FAIL /FAIL /' > FAIL tests/misc/tee.sh (exit status: 1) > FAIL tests/misc/timeout-parameters.sh (exit status: 1) > > With the following section of the attached log, showing a sequence of > failures (exit status = 124) on the root execution of the checks: > > +++ date +%s > ++ expr 2147483647 - 1437184440 + 100 > + KERNEL_OVERFLOW_LIMIT=710299307 > + timeout 710299307 sleep 0 > + test 0 '!=' 124 > + timeout 4294967296 sleep 0 > + test 124 = 0 > + fail=1 > ++ expr 4294967295 / 86400 + 1 > + timeout 49711d sleep 0 > + test 124 = 0 > + fail=1 > + timeout 999999999999999999999999999999999999999999999999999999999999d > sleep 0 > + test 124 = 0 > + fail=1 > + timeout 2.34e+5d sleep 0 > + test 124 = 0 > + fail=1 > + timeout 2.34 sleep 0 > + test 0 = 0 > + timeout .999999999 sleep 0 > + timeout --signal=invalid 1 sleep 0 > timeout: invalid: invalid signal > Try 'timeout --help' for more information. > > On Solaris 10 Update 11 as root, attached as > "test-suite.log-monotonic-root-s10u11" shows a more promising result but > still failure: > > +++ date +%s > ++ expr 2147483647 - 1437187249 + 100 > + KERNEL_OVERFLOW_LIMIT=710296498 Note we already check for similar 32 bit Linux/HPPA kernel issues in this test. If we found a maximal value that was problematic for solaris and ran the gating test in a loop 10 times say. The non determinism of this is awkward though. > The requirement for "root" privileges to use MONOTONIC is a non-starter > in my books as the utility can not lower privileges for the command it > runs - I hope you would agree. It seems that the tests fail even with > the CLOCK_MONOTONIC option. +! > I hope I am provided the requested / required information this time :-) Yes thanks for the extensive testing. Pádraig.
bug-coreutils@HIDDEN
:bug#21061
; Package coreutils
.
Full text available.Received: (at 21061) by debbugs.gnu.org; 18 Jul 2015 06:35:55 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Sat Jul 18 02:35:55 2015 Received: from localhost ([127.0.0.1]:52496 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1ZGLj0-0007gx-OV for submit <at> debbugs.gnu.org; Sat, 18 Jul 2015 02:35:55 -0400 Received: from nm37-vm6.bullet.mail.bf1.yahoo.com ([72.30.238.206]:44231) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from <pdb_ml@HIDDEN>) id 1ZGIVX-0002r4-W0 for 21061 <at> debbugs.gnu.org; Fri, 17 Jul 2015 23:09:48 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com.au; s=s2048; t=1437188982; bh=nwKgiy5xlki/Vzw6wezEmClGS9cAR5C9TOVF02z8cnI=; h=Date:From:To:Subject:References:In-Reply-To:From:Subject; b=av2CK/PzxdC83L/P/Wu5SNi5EQ4ScmyFGBW89uhkFvEmPctcedswgW8t1BiOhpzC1oCtF+3CPUl3VLkmiVTFNEHtAS25Eylm5Le6+qhDws0iiyxuhb0PbIjZwqs2+2TXOnmJ+whPniytdG96ozE9Ic85W/GmSemjc7WOJHYcP978HqTCLC0O8nbnLVb181n0bdJCYmTrzbHe294GmxQeHh5Q6CwDnXhb/Xo3f2QLnUHd/BIKn/w8VVmrlDDG4lg7C0tOGzmCdQGheyJFAaM6hSgAZKyY1ubGlOWs0JF/OQP6kFdVAMB7QYBWjbZ/VUhrEsGi96yix5vIGIA6F5B47w== Received: from [98.139.170.180] by nm37.bullet.mail.bf1.yahoo.com with NNFMP; 18 Jul 2015 03:09:42 -0000 Received: from [98.139.211.198] by tm23.bullet.mail.bf1.yahoo.com with NNFMP; 18 Jul 2015 03:09:41 -0000 Received: from [127.0.0.1] by smtp207.mail.bf1.yahoo.com with NNFMP; 18 Jul 2015 03:09:40 -0000 X-Yahoo-Newman-Id: 675517.82670.bm@HIDDEN X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: O1IAJEUVM1luX0_mxgOL.AdooKl2P1l0_AjAwoB9rlKAsC_ Q7umucMOwy2XXC9TLvYLCasifRSW0Bj2cBOAUCRV7I2ixE2prUlkar0tEe8q d0ntU6.Md3R7h.x0pbAXA60sax5h8V_LJTUX1xviuppUS6.uHrxPUd7DlHOC K2QGZuRExDNm8CqIKy_rZaexyfm6LG4vRgCNu3j.mManeN4BJ4Lk0eeyAmh8 6JsANNHzRHP0YRlcnqr1jV6tuX4oqaBMdIY7zYj6I2Yr1AYDq6b5nv_dSVPJ QNFZ9WWb.2S5TcCdZ9Yb_Dmz6FVFyNfpjcCdsrUd8YqL_EEoTU9UC6ow2Ea8 b73x9z02IlIteC9nnj9he85XwRsAghelmQ9pT8oFsLm5qyu6luxYgxnIXHRI KPTLrkEUmom1rmQ7a6aYzQeOGjxzxEYdcIAT0kh.9JM6cGE0YyJyVAIEJToY i3vJi3ZR4IcUK2sbzJGRYlbp0ZLEAr4e5CR47chc8UXm10URi5n4u7XtvpX9 BAtpVP.7TXmjZNfZ.OKFIVQ-- X-Yahoo-SMTP: wy_7AdSswBBaijFlmVnVzTL.0g-- Message-ID: <55A9C35E.7030108@HIDDEN> Date: Sat, 18 Jul 2015 13:09:18 +1000 From: Peter Bray <pdb_ml@HIDDEN> User-Agent: Mozilla/5.0 (X11; SunOS i86pc; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: =?windows-1252?Q?P=E1draig_Brady?= <P@HIDDEN>, 21061 <at> debbugs.gnu.org Subject: Re: bug#21061: coreutils-8.24 - Partially reproducible failures of tests/misc/timeout-parameters.sh References: <55A6266C.7030009@HIDDEN> <55A63663.7020604@HIDDEN> <55A74AAA.1090401@HIDDEN> <55A763B5.2020901@HIDDEN> <55A874C2.1090901@HIDDEN> <55A8C327.7040304@HIDDEN> In-Reply-To: <55A8C327.7040304@HIDDEN> Content-Type: multipart/mixed; boundary="------------020004060108090304020300" X-Debbugs-Envelope-To: 21061 X-Mailman-Approved-At: Sat, 18 Jul 2015 02:35:48 -0400 X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> This is a multi-part message in MIME format. --------------020004060108090304020300 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit On 17/07/15 06:56 PM, Pádraig Brady wrote: > while true; do time gtimeout 0.1 sleep inf; test $? != 124 && break; done Run this code on S10U8/32 for almost 12 hours without it stopping itself. An almost 10 hours on S10U11/32 with the same result (not stopping itself). Made the requested change to src/timeout.c Backup : src/timeout.c.orig Editted : src/timeout.c Command : gdiff 139c139 < if (timer_create (CLOCK_REALTIME, NULL, &timerid) == 0) --- > if (timer_create (CLOCK_MONOTONIC, NULL, &timerid) == 0) Run as an unprivileged user, gives the following error summary: % egrep '(FAIL|ERROR) ' tests/test-suite.log | sed -e 's/FAIL /FAIL /' FAIL tests/misc/tee.sh (exit status: 1) FAIL tests/misc/timeout-blocked.pl (exit status: 1) FAIL tests/tail-2/wait.sh (exit status: 1) FAIL tests/tail-2/retry.sh (exit status: 1) FAIL tests/tail-2/symlink.sh (exit status: 1) FAIL tests/ls/infloop.sh (exit status: 1) FAIL tests/tail-2/follow-name.sh (exit status: 1) FAIL tests/tail-2/follow-stdin.sh (exit status: 1) On Solaris 10 Update 8 with Solaris 10 Update 11 and Solaris 11.2 have the additional tmpfs build problems mentioned in BUG-21062 With the following executive summary: % grep "timer_create: Not owner" ./tests/test-suite.log | sort | uniq -c 1 + timeout: warning: timer_create: Not owner 7 +timeout: warning: timer_create: Not owner 29 timeout: warning: timer_create: Not owner When run as "root" on Solaris 10 Update 8, the attached "test-suite.log-monotonic-root" shows that two tests FAIL: % egrep '(FAIL|ERROR) ' test-suite.log-*-root | sed -e 's/FAIL /FAIL /' FAIL tests/misc/tee.sh (exit status: 1) FAIL tests/misc/timeout-parameters.sh (exit status: 1) With the following section of the attached log, showing a sequence of failures (exit status = 124) on the root execution of the checks: +++ date +%s ++ expr 2147483647 - 1437184440 + 100 + KERNEL_OVERFLOW_LIMIT=710299307 + timeout 710299307 sleep 0 + test 0 '!=' 124 + timeout 4294967296 sleep 0 + test 124 = 0 + fail=1 ++ expr 4294967295 / 86400 + 1 + timeout 49711d sleep 0 + test 124 = 0 + fail=1 + timeout 999999999999999999999999999999999999999999999999999999999999d sleep 0 + test 124 = 0 + fail=1 + timeout 2.34e+5d sleep 0 + test 124 = 0 + fail=1 + timeout 2.34 sleep 0 + test 0 = 0 + timeout .999999999 sleep 0 + timeout --signal=invalid 1 sleep 0 timeout: invalid: invalid signal Try 'timeout --help' for more information. On Solaris 10 Update 11 as root, attached as "test-suite.log-monotonic-root-s10u11" shows a more promising result but still failure: +++ date +%s ++ expr 2147483647 - 1437187249 + 100 + KERNEL_OVERFLOW_LIMIT=710296498 + timeout 710296498 sleep 0 + test 0 '!=' 124 + timeout 4294967296 sleep 0 + test 124 = 0 + fail=1 ++ expr 4294967295 / 86400 + 1 + timeout 49711d sleep 0 + test 124 = 0 + fail=1 + timeout 999999999999999999999999999999999999999999999999999999999999d sleep 0 + test 124 = 0 + fail=1 + timeout 2.34e+5d sleep 0 + test 124 = 0 + fail=1 + timeout 2.34 sleep 0 + test 0 = 0 + timeout .999999999 sleep 0 + timeout --signal=invalid 1 sleep 0 timeout: invalid: invalid signal Try 'timeout --help' for more information. + test 125 = 125 The requirement for "root" privileges to use MONOTONIC is a non-starter in my books as the utility can not lower privileges for the command it runs - I hope you would agree. It seems that the tests fail even with the CLOCK_MONOTONIC option. The following test run in the monotonic change builds on S10U8 and S10U11, as root for only a minute or so seem to be a repetition of previously seen results, on both systems: # while true; do time ./src/timeout 0.1 ./src/sleep inf; test $? != 124 && break; done ./src/timeout 0.1 ./src/sleep inf 0.00s user 0.00s system 0% cpu 0.105 total ./src/timeout 0.1 ./src/sleep inf 0.00s user 0.00s system 0% cpu 0.107 total But the same code (monotonic build tree) as a non-privileged user, gives approximately a one second result from "time" in addition to the error message. % while true; do time ./src/timeout 0.1 ./src/sleep inf; test $? != 124 && break; done ./src/timeout: warning: timer_create: Not owner ./src/timeout 0.1 ./src/sleep inf 0.00s user 0.00s system 0% cpu 0.996 total ./src/timeout: warning: timer_create: Not owner ./src/timeout 0.1 ./src/sleep inf 0.00s user 0.00s system 0% cpu 1.000 total ./src/timeout: warning: timer_create: Not owner ./src/timeout 0.1 ./src/sleep inf 0.00s user 0.00s system 0% cpu 1.000 total ./src/timeout: warning: timer_create: Not owner ./src/timeout 0.1 ./src/sleep inf 0.00s user 0.00s system 0% cpu 0.999 total ./src/timeout: warning: timer_create: Not owner ./src/timeout 0.1 ./src/sleep inf 0.00s user 0.00s system 0% cpu 1.000 total ./src/timeout: warning: timer_create: Not owner ./src/timeout 0.1 ./src/sleep inf 0.00s user 0.00s system 0% cpu 1.000 total ./src/timeout: warning: timer_create: Not owner ./src/timeout 0.1 ./src/sleep inf 0.00s user 0.00s system 0% cpu 1.000 total ./src/timeout: warning: timer_create: Not owner ./src/timeout 0.1 ./src/sleep inf 0.00s user 0.00s system 0% cpu 1.000 total ./src/timeout: warning: timer_create: Not owner ./src/timeout 0.1 ./src/sleep inf 0.00s user 0.00s system 0% cpu 1.000 total ./src/timeout: warning: timer_create: Not owner ./src/timeout 0.1 ./src/sleep inf 0.00s user 0.00s system 0% cpu 1.000 total ./src/timeout: warning: timer_create: Not owner ./src/timeout 0.1 ./src/sleep inf 0.00s user 0.00s system 0% cpu 0.999 total ./src/timeout: warning: timer_create: Not owner ^C ./src/timeout 0.1 ./src/sleep inf 0.00s user 0.00s system 0% cpu 0.971 total I hope I am provided the requested / required information this time :-) Regards, Peter PS: The tmpfs bug (21062) affects commands as simple as "./src/cp -a tests .." (a command I issued before running the "gmake check" as root on S10U11) --------------020004060108090304020300 Content-Type: text/plain; charset=ISO-8859-1; name="test-suite.log-monotonic-normal_user" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="test-suite.log-monotonic-normal_user" =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D GNU coreutils 8.24: ./tests/test-suite.log =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # TOTAL: 579 # PASS: 417 # SKIP: 154 # XFAIL: 0 # FAIL: 8 # XPASS: 0 # ERROR: 0 =2E. contents:: :depth: 2 SKIP: tests/tail-2/inotify-race =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-inotify-race.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-inotify-race.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.sH9f +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.sH9f ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.sH9f ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:06 /tmp/32-bit/coreutils-8.24/gt-i= notify-race.sh.sH9f' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.sH9f +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.sH9f ++ cd /tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.sH9f ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + touch file + touch tail.out + case $(cat gdb.out) in ++ cat gdb.out + skip_ 'can'\''t run gdb' + warn_ 'inotify-race.sh: skipped test: can'\''t run gdb' + case $IFS in + printf '%s\n' 'inotify-race.sh: skipped test: can'\''t run gdb' inotify-race.sh: skipped test: can't run gdb + test 9 =3D 2 + printf '%s\n' 'inotify-race.sh: skipped test: can'\''t run gdb' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + kill + kill + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.sH9f + rm -rf /tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.sH9f + exit 77 SKIP tests/tail-2/inotify-race.sh (exit status: 77) SKIP: tests/tail-2/inotify-race2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-inotify-race2.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-inotify-race2.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.HyKf +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.HyKf ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.HyKf ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:06 /tmp/32-bit/coreutils-8.24/gt-i= notify-race2.sh.HyKf' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.HyKf +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.HyKf ++ cd /tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.HyKf ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + touch file + touch tail.out + case $(cat gdb.out) in ++ cat gdb.out + skip_ 'can'\''t run gdb' + warn_ 'inotify-race2.sh: skipped test: can'\''t run gdb' + case $IFS in + printf '%s\n' 'inotify-race2.sh: skipped test: can'\''t run gdb' inotify-race2.sh: skipped test: can't run gdb + test 9 =3D 2 + printf '%s\n' 'inotify-race2.sh: skipped test: can'\''t run gdb' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + kill + kill + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.HyKf + rm -rf /tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.HyKf + exit 77 SKIP tests/tail-2/inotify-race2.sh (exit status: 77) SKIP: tests/rm/ext3-perf =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-ext3-perf.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-ext3-perf.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.958c +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.958c ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.958c ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:07 /tmp/32-bit/coreutils-8.24/gt-e= xt3-perf.sh.958c' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.958c +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.958c ++ cd /tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.958c ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 'ext3-perf.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 'ext3-perf.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' ext3-perf.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 'ext3-perf.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.958c + rm -rf /tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.958c + exit 77 SKIP tests/rm/ext3-perf.sh (exit status: 77) SKIP: tests/cp/link-heap =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-link-heap.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-link-heap.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-link-heap.sh.AMrd +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-link-heap.sh.AMrd ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-link-heap.sh.AMrd ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:07 /tmp/32-bit/coreutils-8.24/gt-l= ink-heap.sh.AMrd' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-link-heap.sh.AMrd +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-link-heap.sh.AMrd ++ cd /tmp/32-bit/coreutils-8.24/gt-link-heap.sh.AMrd ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'link-heap.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'link-heap.sh: skipped test: expensive: disabled by defau= lt 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' link-heap.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'link-heap.sh: skipped test: expensive: disabled by defau= lt 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-link-heap.sh.AMrd + rm -rf /tmp/32-bit/coreutils-8.24/gt-link-heap.sh.AMrd + exit 77 SKIP tests/cp/link-heap.sh (exit status: 77) SKIP: tests/cp/no-ctx =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-no-ctx.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-no-ctx.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.hvjO +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.hvjO ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.hvjO ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:07 /tmp/32-bit/coreutils-8.24/gt-n= o-ctx.sh.hvjO' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.hvjO +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.hvjO ++ cd /tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.hvjO ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_gcc_shared_ + gcc_shared_ - d.so -xc + local in=3D- + local out=3Dd.so + shift 2 + gcc -std=3Dgnu99 -Wall -shared --std=3Dgnu99 -fPIC -O2 -xc - -o d.so -l= dl + rm -f d.so + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'no-ctx.sh: skipped test: this system lacks SELinux support' + case $IFS in + printf '%s\n' 'no-ctx.sh: skipped test: this system lacks SELinux suppo= rt' no-ctx.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'no-ctx.sh: skipped test: this system lacks SELinux suppo= rt' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.hvjO + rm -rf /tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.hvjO + exit 77 SKIP tests/cp/no-ctx.sh (exit status: 77) SKIP: tests/misc/tty-eof =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D tty-eof.pl: this script requires Perl's Expect package >=3D1.11 SKIP tests/misc/tty-eof.pl (exit status: 77) SKIP: tests/tail-2/inotify-rotate =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-inotify-rotate.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-inotify-rotate.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.doDQ +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.doDQ ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.doDQ ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:07 /tmp/32-bit/coreutils-8.24/gt-i= notify-rotate.sh.doDQ' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.doDQ +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.doDQ ++ cd /tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.doDQ ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + grep '^#define HAVE_INOTIFY 1' /tmp/32-bit/coreutils-8.24/lib/config.h + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'inotify-rotate.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'inotify-rotate.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' inotify-rotate.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'inotify-rotate.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.doDQ + rm -rf /tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.doDQ + exit 77 SKIP tests/tail-2/inotify-rotate.sh (exit status: 77) SKIP: tests/tail-2/inotify-rotate-resources =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-inotify-rotate-resources.sh.XX= XX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-inotify-rotate-resources.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.sh.OIrn +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.sh.OIr= n ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.sh.OI= rn ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:07 /tmp/32-bit/coreutils-8.24/gt-i= notify-rotate-resources.sh.OIrn' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.sh.OIrn +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.sh.= OIrn ++ cd /tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.sh.OIrn ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + grep '^#define HAVE_INOTIFY 1' /tmp/32-bit/coreutils-8.24/lib/config.h + skip_ 'inotify required' + warn_ 'inotify-rotate-resources.sh: skipped test: inotify required' + case $IFS in + printf '%s\n' 'inotify-rotate-resources.sh: skipped test: inotify requi= red' inotify-rotate-resources.sh: skipped test: inotify required + test 9 =3D 2 + printf '%s\n' 'inotify-rotate-resources.sh: skipped test: inotify requi= red' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.s= h.OIrn + rm -rf /tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.sh.OIrn + exit 77 SKIP tests/tail-2/inotify-rotate-resources.sh (exit status: 77) SKIP: tests/chgrp/basic =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-basic.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-basic.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-basic.sh.Ah9J +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-basic.sh.Ah9J ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-basic.sh.Ah9J ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:07 /tmp/32-bit/coreutils-8.24/gt-b= asic.sh.Ah9J' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-basic.sh.Ah9J +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-basic.sh.Ah9J ++ cd /tmp/32-bit/coreutils-8.24/gt-basic.sh.Ah9J ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chgrp + test yes =3D yes + local i + for i in '$*' + env chgrp --version chgrp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_membership_in_two_groups_ + test 0 =3D 0 + groups=3D100 + case "$groups" in + skip_ '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=3D'\''users cdrom'\'' make check ' + warn_ 'basic.sh: skipped 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=3D'\''users cdrom'\'' make check ' + case $IFS in + printf '%s\n' 'basic.sh: skipped test: requires membership in two group= s 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=3D'\''users cdrom'\'' make check ' basic.sh: skipped 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=3D'users cdrom' make check + test 9 =3D 2 + printf '%s\n' 'basic.sh: skipped test: requires membership in two group= s 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=3D'\''users cdrom'\'' make check ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-basic.sh.Ah9J + rm -rf /tmp/32-bit/coreutils-8.24/gt-basic.sh.Ah9J + exit 77 SKIP tests/chgrp/basic.sh (exit status: 77) SKIP: tests/rm/hash =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-hash.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-hash.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-hash.sh.f0IK +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-hash.sh.f0IK ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-hash.sh.f0IK ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:07 /tmp/32-bit/coreutils-8.24/gt-h= ash.sh.f0IK' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-hash.sh.f0IK +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-hash.sh.f0IK ++ cd /tmp/32-bit/coreutils-8.24/gt-hash.sh.f0IK ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'hash.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'hash.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' hash.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'hash.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-hash.sh.f0IK + rm -rf /tmp/32-bit/coreutils-8.24/gt-hash.sh.f0IK + exit 77 SKIP tests/rm/hash.sh (exit status: 77) SKIP: tests/rm/r-root =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-r-root.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-r-root.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-r-root.sh.y6W3 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-r-root.sh.y6W3 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-r-root.sh.y6W3 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:07 /tmp/32-bit/coreutils-8.24/gt-r= -root.sh.y6W3' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-r-root.sh.y6W3 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-r-root.sh.y6W3 ++ cd /tmp/32-bit/coreutils-8.24/gt-r-root.sh.y6W3 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + require_gcc_shared_ + gcc_shared_ - d.so -xc + local in=3D- + local out=3Dd.so + shift 2 + gcc -std=3Dgnu99 -Wall -shared --std=3Dgnu99 -fPIC -O2 -xc - -o d.so -l= dl + rm -f d.so + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'r-root.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'r-root.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' r-root.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'r-root.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-r-root.sh.y6W3 + rm -rf /tmp/32-bit/coreutils-8.24/gt-r-root.sh.y6W3 + exit 77 SKIP tests/rm/r-root.sh (exit status: 77) SKIP: tests/rm/many-dir-entries-vs-OOM =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-many-dir-entries-vs-OOM.sh.XXX= X +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-many-dir-entries-vs-OOM.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh.vJ5F +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh.vJ5F= ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh.vJ5= F ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:07 /tmp/32-bit/coreutils-8.24/gt-m= any-dir-entries-vs-OOM.sh.vJ5F' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh.vJ5F +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh.v= J5F ++ cd /tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh.vJ5F ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm du chmod + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + for i in '$*' + env chmod --version chmod (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_ulimit_v_ + local ulimit_works=3Dyes + local vm + case $(printenv LD_PRELOAD) in ++ printenv LD_PRELOAD + vm=3D10000 + test yes =3D no + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'many-dir-entries-vs-OOM.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'many-dir-entries-vs-OOM.sh: skipped test: expensive: dis= abled 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' many-dir-entries-vs-OOM.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'many-dir-entries-vs-OOM.sh: skipped test: expensive: dis= abled 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh= =2EvJ5F + rm -rf /tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh.vJ5F + exit 77 SKIP tests/rm/many-dir-entries-vs-OOM.sh (exit status: 77) SKIP: tests/chgrp/default-no-deref =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-default-no-deref.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-default-no-deref.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.Af3j +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.Af3j ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.Af3j ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:07 /tmp/32-bit/coreutils-8.24/gt-d= efault-no-deref.sh.Af3j' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.Af3j +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.Af3j ++ cd /tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.Af3j ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chgrp + test yes =3D yes + local i + for i in '$*' + env chgrp --version chgrp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_membership_in_two_groups_ + test 0 =3D 0 + groups=3D100 + case "$groups" in + skip_ '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=3D'\''users cdrom'\'' make check ' + warn_ 'default-no-deref.sh: skipped test: requires membership in two gr= oups 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=3D'\''users cdrom'\'' make check ' + case $IFS in + printf '%s\n' 'default-no-deref.sh: skipped test: requires membership i= n 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=3D'\''users cdrom'\'' make check ' default-no-deref.sh: skipped 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=3D'users cdrom' make check + test 9 =3D 2 + printf '%s\n' 'default-no-deref.sh: skipped test: requires membership i= n 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=3D'\''users cdrom'\'' make check ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.Af3j + rm -rf /tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.Af3j + exit 77 SKIP tests/chgrp/default-no-deref.sh (exit status: 77) SKIP: tests/chgrp/deref =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-deref.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-deref.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-deref.sh.Eaan +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-deref.sh.Eaan ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-deref.sh.Eaan ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:07 /tmp/32-bit/coreutils-8.24/gt-d= eref.sh.Eaan' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-deref.sh.Eaan +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-deref.sh.Eaan ++ cd /tmp/32-bit/coreutils-8.24/gt-deref.sh.Eaan ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chgrp + test yes =3D yes + local i + for i in '$*' + env chgrp --version chgrp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_membership_in_two_groups_ + test 0 =3D 0 + groups=3D100 + case "$groups" in + skip_ '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=3D'\''users cdrom'\'' make check ' + warn_ 'deref.sh: skipped 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=3D'\''users cdrom'\'' make check ' + case $IFS in + printf '%s\n' 'deref.sh: skipped test: requires membership in two group= s 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=3D'\''users cdrom'\'' make check ' deref.sh: skipped 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=3D'users cdrom' make check + test 9 =3D 2 + printf '%s\n' 'deref.sh: skipped test: requires membership in two group= s 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=3D'\''users cdrom'\'' make check ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-deref.sh.Eaan + rm -rf /tmp/32-bit/coreutils-8.24/gt-deref.sh.Eaan + exit 77 SKIP tests/chgrp/deref.sh (exit status: 77) SKIP: tests/chgrp/no-x =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-no-x.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-no-x.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-no-x.sh.bsSL +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-no-x.sh.bsSL ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-no-x.sh.bsSL ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:07 /tmp/32-bit/coreutils-8.24/gt-n= o-x.sh.bs-L' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-no-x.sh.bsSL +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-no-x.sh.bsSL ++ cd /tmp/32-bit/coreutils-8.24/gt-no-x.sh.bsSL ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chgrp + test yes =3D yes + local i + for i in '$*' + env chgrp --version chgrp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_membership_in_two_groups_ + test 0 =3D 0 + groups=3D100 + case "$groups" in + skip_ '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=3D'\''users cdrom'\'' make check ' + warn_ 'no-x.sh: skipped 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=3D'\''users cdrom'\'' make check ' + case $IFS in + printf '%s\n' 'no-x.sh: skipped 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=3D'\''users cdrom'\'' make check ' no-x.sh: skipped 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=3D'users cdrom' make check + test 9 =3D 2 + printf '%s\n' 'no-x.sh: skipped 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=3D'\''users cdrom'\'' make check ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-no-x.sh.bsSL + rm -rf /tmp/32-bit/coreutils-8.24/gt-no-x.sh.bsSL + exit 77 SKIP tests/chgrp/no-x.sh (exit status: 77) SKIP: tests/chgrp/posix-H =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-posix-H.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-posix-H.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-posix-H.sh.9sCv +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-posix-H.sh.9sCv ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-posix-H.sh.9sCv ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:07 /tmp/32-bit/coreutils-8.24/gt-p= osix-H.sh.9sCv' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-posix-H.sh.9sCv +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-posix-H.sh.9sCv ++ cd /tmp/32-bit/coreutils-8.24/gt-posix-H.sh.9sCv ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chgrp + test yes =3D yes + local i + for i in '$*' + env chgrp --version chgrp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_membership_in_two_groups_ + test 0 =3D 0 + groups=3D100 + case "$groups" in + skip_ '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=3D'\''users cdrom'\'' make check ' + warn_ 'posix-H.sh: skipped 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=3D'\''users cdrom'\'' make check ' + case $IFS in + printf '%s\n' 'posix-H.sh: skipped test: requires membership in two gro= ups 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=3D'\''users cdrom'\'' make check ' posix-H.sh: skipped 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=3D'users cdrom' make check + test 9 =3D 2 + printf '%s\n' 'posix-H.sh: skipped test: requires membership in two gro= ups 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=3D'\''users cdrom'\'' make check ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-posix-H.sh.9sCv + rm -rf /tmp/32-bit/coreutils-8.24/gt-posix-H.sh.9sCv + exit 77 SKIP tests/chgrp/posix-H.sh (exit status: 77) SKIP: tests/chgrp/recurse =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-recurse.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-recurse.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-recurse.sh.FWdD +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-recurse.sh.FWdD ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-recurse.sh.FWdD ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:07 /tmp/32-bit/coreutils-8.24/gt-r= ecurse.sh.FWdD' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-recurse.sh.FWdD +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-recurse.sh.FWdD ++ cd /tmp/32-bit/coreutils-8.24/gt-recurse.sh.FWdD ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chgrp + test yes =3D yes + local i + for i in '$*' + env chgrp --version chgrp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_membership_in_two_groups_ + test 0 =3D 0 + groups=3D100 + case "$groups" in + skip_ '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=3D'\''users cdrom'\'' make check ' + warn_ 'recurse.sh: skipped 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=3D'\''users cdrom'\'' make check ' + case $IFS in + printf '%s\n' 'recurse.sh: skipped test: requires membership in two gro= ups 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=3D'\''users cdrom'\'' make check ' recurse.sh: skipped 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=3D'users cdrom' make check + test 9 =3D 2 + printf '%s\n' 'recurse.sh: skipped test: requires membership in two gro= ups 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=3D'\''users cdrom'\'' make check ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-recurse.sh.FWdD + rm -rf /tmp/32-bit/coreutils-8.24/gt-recurse.sh.FWdD + exit 77 SKIP tests/chgrp/recurse.sh (exit status: 77) SKIP: tests/misc/seq-long-double =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-seq-long-double.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-seq-long-double.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.uju0 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.uju0 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.uju0 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:07 /tmp/32-bit/coreutils-8.24/gt-s= eq-long-double.sh.uju0' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.uju0 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.uju0 ++ cd /tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.uju0 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ seq + test yes =3D yes + local i + for i in '$*' + env seq --version seq (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + getlimits_ ++ getlimits + eval CHAR_MAX=3D127 CHAR_OFLOW=3D128 CHAR_MIN=3D-128 CHAR_UFLOW=3D-129 = SCHAR_MAX=3D127 SCHAR_OFLOW=3D128 SCHAR_MIN=3D-128 SCHAR_UFLOW=3D-129 UCH= AR_MAX=3D255 UCHAR_OFLOW=3D256 SHRT_MAX=3D32767 SHRT_OFLOW=3D32768 SHRT_M= IN=3D-32768 SHRT_UFLOW=3D-32769 INT_MAX=3D2147483647 INT_OFLOW=3D21474836= 48 INT_MIN=3D-2147483648 INT_UFLOW=3D-2147483649 UINT_MAX=3D4294967295 UI= NT_OFLOW=3D4294967296 LONG_MAX=3D2147483647 LONG_OFLOW=3D2147483648 LONG_= MIN=3D-2147483648 LONG_UFLOW=3D-2147483649 ULONG_MAX=3D4294967295 ULONG_O= FLOW=3D4294967296 SIZE_MAX=3D4294967295 SIZE_OFLOW=3D4294967296 SSIZE_MAX= =3D2147483647 SSIZE_OFLOW=3D2147483648 SSIZE_MIN=3D-2147483648 SSIZE_UFLO= W=3D-2147483649 TIME_T_MAX=3D2147483647 TIME_T_OFLOW=3D2147483648 TIME_T_= MIN=3D-2147483648 TIME_T_UFLOW=3D-2147483649 UID_T_MAX=3D2147483647 UID_T= _OFLOW=3D2147483648 GID_T_MAX=3D2147483647 GID_T_OFLOW=3D2147483648 PID_T= _MAX=3D2147483647 PID_T_OFLOW=3D2147483648 PID_T_MIN=3D-2147483648 PID_T_= UFLOW=3D-2147483649 OFF_T_MAX=3D9223372036854775807 OFF_T_OFLOW=3D9223372= 036854775808 OFF_T_MIN=3D-9223372036854775808 OFF_T_UFLOW=3D-922337203685= 4775809 INTMAX_MAX=3D9223372036854775807 INTMAX_OFLOW=3D92233720368547758= 08 INTMAX_MIN=3D-9223372036854775808 INTMAX_UFLOW=3D-9223372036854775809 = UINTMAX_MAX=3D18446744073709551615 UINTMAX_OFLOW=3D18446744073709551616 F= LT_MIN=3D1.1754944e-38 FLT_MAX=3D3.4028235e+38 DBL_MIN=3D2.22507385850720= 14e-308 DBL_MAX=3D1.7976931348623157e+308 LDBL_MIN=3D3.362103143112093506= 3e-4932 LDBL_MAX=3D1.189731495357231765e+4932 ++ CHAR_MAX=3D127 ++ CHAR_OFLOW=3D128 ++ CHAR_MIN=3D-128 ++ CHAR_UFLOW=3D-129 ++ SCHAR_MAX=3D127 ++ SCHAR_OFLOW=3D128 ++ SCHAR_MIN=3D-128 ++ SCHAR_UFLOW=3D-129 ++ UCHAR_MAX=3D255 ++ UCHAR_OFLOW=3D256 ++ SHRT_MAX=3D32767 ++ SHRT_OFLOW=3D32768 ++ SHRT_MIN=3D-32768 ++ SHRT_UFLOW=3D-32769 ++ INT_MAX=3D2147483647 ++ INT_OFLOW=3D2147483648 ++ INT_MIN=3D-2147483648 ++ INT_UFLOW=3D-2147483649 ++ UINT_MAX=3D4294967295 ++ UINT_OFLOW=3D4294967296 ++ LONG_MAX=3D2147483647 ++ LONG_OFLOW=3D2147483648 ++ LONG_MIN=3D-2147483648 ++ LONG_UFLOW=3D-2147483649 ++ ULONG_MAX=3D4294967295 ++ ULONG_OFLOW=3D4294967296 ++ SIZE_MAX=3D4294967295 ++ SIZE_OFLOW=3D4294967296 ++ SSIZE_MAX=3D2147483647 ++ SSIZE_OFLOW=3D2147483648 ++ SSIZE_MIN=3D-2147483648 ++ SSIZE_UFLOW=3D-2147483649 ++ TIME_T_MAX=3D2147483647 ++ TIME_T_OFLOW=3D2147483648 ++ TIME_T_MIN=3D-2147483648 ++ TIME_T_UFLOW=3D-2147483649 ++ UID_T_MAX=3D2147483647 ++ UID_T_OFLOW=3D2147483648 ++ GID_T_MAX=3D2147483647 ++ GID_T_OFLOW=3D2147483648 ++ PID_T_MAX=3D2147483647 ++ PID_T_OFLOW=3D2147483648 ++ PID_T_MIN=3D-2147483648 ++ PID_T_UFLOW=3D-2147483649 ++ OFF_T_MAX=3D9223372036854775807 ++ OFF_T_OFLOW=3D9223372036854775808 ++ OFF_T_MIN=3D-9223372036854775808 ++ OFF_T_UFLOW=3D-9223372036854775809 ++ INTMAX_MAX=3D9223372036854775807 ++ INTMAX_OFLOW=3D9223372036854775808 ++ INTMAX_MIN=3D-9223372036854775808 ++ INTMAX_UFLOW=3D-9223372036854775809 ++ UINTMAX_MAX=3D18446744073709551615 ++ UINTMAX_OFLOW=3D18446744073709551616 ++ FLT_MIN=3D1.1754944e-38 ++ FLT_MAX=3D3.4028235e+38 ++ DBL_MIN=3D2.2250738585072014e-308 ++ DBL_MAX=3D1.7976931348623157e+308 ++ LDBL_MIN=3D3.3621031431120935063e-4932 ++ LDBL_MAX=3D1.189731495357231765e+4932 + test 2147483647 + cat + gcc -std=3Dgnu99 -c long.c long.c:1:22: fatal error: features.h: No such file or directory #include <features.h> ^ compilation terminated. + skip_ 'this test runs only on systems with glibc and long double !=3D d= ouble' + warn_ 'seq-long-double.sh: skipped test: this test runs only on systems= with glibc and long double !=3D double' + case $IFS in + printf '%s\n' 'seq-long-double.sh: skipped test: this test runs only on= systems with glibc and long double !=3D double' seq-long-double.sh: skipped test: this test runs only on systems with gli= bc and long double !=3D double + test 9 =3D 2 + printf '%s\n' 'seq-long-double.sh: skipped test: this test runs only on= systems with glibc and long double !=3D double' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.uju0 + rm -rf /tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.uju0 + exit 77 SKIP tests/misc/seq-long-double.sh (exit status: 77) SKIP: tests/tail-2/tail-n0f =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-tail-n0f.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-tail-n0f.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.VeRv +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.VeRv ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.VeRv ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:07 /tmp/32-bit/coreutils-8.24/gt-t= ail-n0f.sh.VeRv' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.VeRv +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.VeRv ++ cd /tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.VeRv ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_proc_pid_status_ + local pid=3D19557 + sleep .5 + sleep 2 + grep '^State:[ ]*[S]' /proc/19557/status + skip_ '/proc/19557/status: missing or '\''different'\''' + warn_ 'tail-n0f.sh: skipped test: /proc/19557/status: missing or '\''di= fferent'\''' + case $IFS in + printf '%s\n' 'tail-n0f.sh: skipped test: /proc/19557/status: missing o= r '\''different'\''' tail-n0f.sh: skipped test: /proc/19557/status: missing or 'different' + test 9 =3D 2 + printf '%s\n' 'tail-n0f.sh: skipped test: /proc/19557/status: missing o= r '\''different'\''' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.VeRv + rm -rf /tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.VeRv + exit 77 SKIP tests/tail-2/tail-n0f.sh (exit status: 77) SKIP: tests/misc/arch =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-arch.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-arch.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-arch.sh.cfek +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-arch.sh.cfek ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-arch.sh.cfek ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:07 /tmp/32-bit/coreutils-8.24/gt-a= rch.sh.cfek' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-arch.sh.cfek +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-arch.sh.cfek ++ cd /tmp/32-bit/coreutils-8.24/gt-arch.sh.cfek ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ arch + test yes =3D yes + local i + for i in '$*' + env arch --version + require_built_ arch + skip_=3Dno + for i in '"$@"' + case " $built_programs " in + echo 'arch: not built' arch: not built + skip_=3Dyes + test yes =3D yes + skip_ 'required program(s) not built' + warn_ 'arch.sh: skipped test: required program(s) not built' + case $IFS in + printf '%s\n' 'arch.sh: skipped test: required program(s) not built' arch.sh: skipped test: required program(s) not built + test 9 =3D 2 + printf '%s\n' 'arch.sh: skipped test: required program(s) not built' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-arch.sh.cfek + rm -rf /tmp/32-bit/coreutils-8.24/gt-arch.sh.cfek + exit 77 SKIP tests/misc/arch.sh (exit status: 77) SKIP: tests/misc/coreutils =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-coreutils.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-coreutils.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-coreutils.sh.i03C +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-coreutils.sh.i03C ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-coreutils.sh.i03C ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:07 /tmp/32-bit/coreutils-8.24/gt-c= oreutils.sh.i03C' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-coreutils.sh.i03C +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-coreutils.sh.i03C ++ cd /tmp/32-bit/coreutils-8.24/gt-coreutils.sh.i03C ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ coreutils + test yes =3D yes + local i + for i in '$*' + env coreutils --version env: coreutils: No such file or directory + test -s /tmp/32-bit/coreutils-8.24/src/coreutils.h + skip_ 'multicall binary is disabled' + warn_ 'coreutils.sh: skipped test: multicall binary is disabled' + case $IFS in + printf '%s\n' 'coreutils.sh: skipped test: multicall binary is disabled= ' coreutils.sh: skipped test: multicall binary is disabled + test 9 =3D 2 + printf '%s\n' 'coreutils.sh: skipped test: multicall binary is disabled= ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-coreutils.sh.i03C + rm -rf /tmp/32-bit/coreutils-8.24/gt-coreutils.sh.i03C + exit 77 SKIP tests/misc/coreutils.sh (exit status: 77) SKIP: tests/misc/wc-parallel =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-wc-parallel.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-wc-parallel.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.VHhD +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.VHhD ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.VHhD ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:07 /tmp/32-bit/coreutils-8.24/gt-w= c-parallel.sh.VHhD' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.VHhD +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.VHhD ++ cd /tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.VHhD ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ wc + test yes =3D yes + local i + for i in '$*' + env wc --version wc (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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 and David MacKenzie. + xargs -P2 + skip_ 'xargs -P is required' + warn_ 'wc-parallel.sh: skipped test: xargs -P is required' + case $IFS in + printf '%s\n' 'wc-parallel.sh: skipped test: xargs -P is required' wc-parallel.sh: skipped test: xargs -P is required + test 9 =3D 2 + printf '%s\n' 'wc-parallel.sh: skipped test: xargs -P is required' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.VHhD + rm -rf /tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.VHhD + exit 77 SKIP tests/misc/wc-parallel.sh (exit status: 77) SKIP: tests/misc/cat-proc =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-cat-proc.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-cat-proc.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.7h7Y +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.7h7Y ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.7h7Y ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:07 /tmp/32-bit/coreutils-8.24/gt-c= at-proc.sh.7h7Y' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.7h7Y +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.7h7Y ++ cd /tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.7h7Y ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cat + test yes =3D yes + local i + for i in '$*' + env cat --version cat (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund and Richard M. Stallman. + f=3D/proc/cpuinfo + test -f /proc/cpuinfo + skip_ 'no /proc/cpuinfo' + warn_ 'cat-proc.sh: skipped test: no /proc/cpuinfo' + case $IFS in + printf '%s\n' 'cat-proc.sh: skipped test: no /proc/cpuinfo' cat-proc.sh: skipped test: no /proc/cpuinfo + test 9 =3D 2 + printf '%s\n' 'cat-proc.sh: skipped test: no /proc/cpuinfo' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.7h7Y + rm -rf /tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.7h7Y + exit 77 SKIP tests/misc/cat-proc.sh (exit status: 77) SKIP: tests/misc/head-write-error =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-head-write-error.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-head-write-error.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.fkCf +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.fkCf ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.fkCf ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:07 /tmp/32-bit/coreutils-8.24/gt-h= ead-write-error.sh.fkCf' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.fkCf +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.fkCf ++ cd /tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.fkCf ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ head + test yes =3D yes + local i + for i in '$*' + env head --version head (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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 -w /dev/full + skip_ '/dev/full is required' + warn_ 'head-write-error.sh: skipped test: /dev/full is required' + case $IFS in + printf '%s\n' 'head-write-error.sh: skipped test: /dev/full is required= ' head-write-error.sh: skipped test: /dev/full is required + test 9 =3D 2 + printf '%s\n' 'head-write-error.sh: skipped test: /dev/full is required= ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.fkCf + rm -rf /tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.fkCf + exit 77 SKIP tests/misc/head-write-error.sh (exit status: 77) SKIP: tests/misc/md5sum-parallel =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-md5sum-parallel.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-md5sum-parallel.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.Tqd5 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.Tqd5 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.Tqd5 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:07 /tmp/32-bit/coreutils-8.24/gt-m= d5sum-parallel.sh.Tqd5' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.Tqd5 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.Tqd5 ++ cd /tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.Tqd5 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ md5sum + test yes =3D yes + local i + for i in '$*' + env md5sum --version md5sum (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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, Scott Miller, and David Madore. + xargs -P2 + skip_ 'xargs -P is required' + warn_ 'md5sum-parallel.sh: skipped test: xargs -P is required' + case $IFS in + printf '%s\n' 'md5sum-parallel.sh: skipped test: xargs -P is required' md5sum-parallel.sh: skipped test: xargs -P is required + test 9 =3D 2 + printf '%s\n' 'md5sum-parallel.sh: skipped test: xargs -P is required' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.Tqd5 + rm -rf /tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.Tqd5 + exit 77 SKIP tests/misc/md5sum-parallel.sh (exit status: 77) SKIP: tests/misc/shuf-reservoir =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-shuf-reservoir.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-shuf-reservoir.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.FfmI +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.FfmI ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.FfmI ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-s= huf-reservoir.sh.FfmI' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.FfmI +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.FfmI ++ cd /tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.FfmI ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ shuf + test yes =3D yes + local i + for i in '$*' + env shuf --version shuf (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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 Eggert. + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'shuf-reservoir.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'shuf-reservoir.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' shuf-reservoir.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'shuf-reservoir.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.FfmI + rm -rf /tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.FfmI + exit 77 SKIP tests/misc/shuf-reservoir.sh (exit status: 77) SKIP: tests/misc/sort-benchmark-random =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-benchmark-random.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-benchmark-random.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.C812 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.C812 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.C812 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-s= ort-benchmark-random.sh.C812' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.C812 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.C81= 2 ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.C812 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 'sort-benchmark-random.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 'sort-benchmark-random.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' sort-benchmark-random.sh: skipped test: very expensive: disabled by defau= lt 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 'sort-benchmark-random.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.C= 812 + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.C812 + exit 77 SKIP tests/misc/sort-benchmark-random.sh (exit status: 77) SKIP: tests/misc/sort-compress-hang =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-compress-hang.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-compress-hang.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.dLrl +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.dLrl ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.dLrl ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-s= ort-compress-hang.sh.dLrl' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.dLrl +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.dLrl ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.dLrl ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 'sort-compress-hang.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 'sort-compress-hang.sh: skipped test: very expensive: dis= abled 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' sort-compress-hang.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 'sort-compress-hang.sh: skipped test: very expensive: dis= abled 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.dLrl= + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.dLrl + exit 77 SKIP tests/misc/sort-compress-hang.sh (exit status: 77) SKIP: tests/misc/sort-compress-proc =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-compress-proc.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-compress-proc.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.5H5Y +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.5H5Y ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.5H5Y ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-s= ort-compress-proc.sh.5H5Y' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.5H5Y +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.5H5Y ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.5H5Y ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'sort-compress-proc.sh: skipped test: expensive: disabled by defa= ult 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'sort-compress-proc.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' sort-compress-proc.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'sort-compress-proc.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.5H5Y= + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.5H5Y + exit 77 SKIP tests/misc/sort-compress-proc.sh (exit status: 77) SKIP: tests/misc/sort-month =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-month.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-month.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-month.sh.rWqu +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-month.sh.rWqu ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-month.sh.rWqu ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-s= ort-month.sh.rWqu' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-month.sh.rWqu +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-month.sh.rWqu ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-month.sh.rWqu ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + locale --version + skip_ 'The locale utility is not present' + warn_ 'sort-month.sh: skipped test: The locale utility is not present' + case $IFS in + printf '%s\n' 'sort-month.sh: skipped test: The locale utility is not p= resent' sort-month.sh: skipped test: The locale utility is not present + test 9 =3D 2 + printf '%s\n' 'sort-month.sh: skipped test: The locale utility is not p= resent' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-month.sh.rWqu + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-month.sh.rWqu + exit 77 SKIP tests/misc/sort-month.sh (exit status: 77) SKIP: tests/misc/sort-spinlock-abuse =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-spinlock-abuse.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-spinlock-abuse.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.3sbR +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.3sbR ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.3sbR ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-s= ort-spinlock-abuse.sh.3sbR' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.3sbR +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.3sbR ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.3sbR ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 'sort-spinlock-abuse.sh: skipped test: very expensive: disabled b= y 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 'sort-spinlock-abuse.sh: skipped test: very expensive: di= sabled 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' sort-spinlock-abuse.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 'sort-spinlock-abuse.sh: skipped test: very expensive: di= sabled 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.3sb= R + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.3sbR + exit 77 SKIP tests/misc/sort-spinlock-abuse.sh (exit status: 77) SKIP: tests/misc/sort-stale-thread-mem =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-stale-thread-mem.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-stale-thread-mem.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.IQ6D +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.IQ6D ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.IQ6D ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-s= ort-stale-thread-mem.sh.IQ6D' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.IQ6D +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.IQ6= D ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.IQ6D ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 'sort-stale-thread-mem.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 'sort-stale-thread-mem.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' sort-stale-thread-mem.sh: skipped test: very expensive: disabled by defau= lt 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 'sort-stale-thread-mem.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.I= Q6D + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.IQ6D + exit 77 SKIP tests/misc/sort-stale-thread-mem.sh (exit status: 77) SKIP: tests/misc/sort-u-FMR =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-u-FMR.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-u-FMR.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.FgD4 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.FgD4 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.FgD4 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-s= ort-u-FMR.sh.FgD4' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.FgD4 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.FgD4 ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.FgD4 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_valgrind_ + valgrind --error-exitcode=3D1 true + skip_ 'requires a working valgrind' + warn_ 'sort-u-FMR.sh: skipped test: requires a working valgrind' + case $IFS in + printf '%s\n' 'sort-u-FMR.sh: skipped test: requires a working valgrind= ' sort-u-FMR.sh: skipped test: requires a working valgrind + test 9 =3D 2 + printf '%s\n' 'sort-u-FMR.sh: skipped test: requires a working valgrind= ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.FgD4 + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.FgD4 + exit 77 SKIP tests/misc/sort-u-FMR.sh (exit status: 77) SKIP: tests/split/filter =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-filter.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-filter.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-filter.sh.uOAc +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-filter.sh.uOAc ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-filter.sh.uOAc ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-f= ilter.sh.uOAc' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-filter.sh.uOAc +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-filter.sh.uOAc ++ cd /tmp/32-bit/coreutils-8.24/gt-filter.sh.uOAc ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ split + test yes =3D yes + local i + for i in '$*' + env split --version split (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund and Richard M. Stallman. + xz --version =2E/tests/split/filter.sh: line 21: xz: command not found + skip_ 'xz (better than gzip/bzip2) required' + warn_ 'filter.sh: skipped test: xz (better than gzip/bzip2) required' + case $IFS in + printf '%s\n' 'filter.sh: skipped test: xz (better than gzip/bzip2) req= uired' filter.sh: skipped test: xz (better than gzip/bzip2) required + test 9 =3D 2 + printf '%s\n' 'filter.sh: skipped test: xz (better than gzip/bzip2) req= uired' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-filter.sh.uOAc + rm -rf /tmp/32-bit/coreutils-8.24/gt-filter.sh.uOAc + exit 77 SKIP tests/split/filter.sh (exit status: 77) SKIP: tests/misc/stat-nanoseconds =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D =2E/tests/misc/stat-nanoseconds.sh: line 19: print_ver_: command not foun= d ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-stat-nanoseconds.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-stat-nanoseconds.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-stat-nanoseconds.sh.Jqio +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-stat-nanoseconds.sh.Jqio ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-stat-nanoseconds.sh.Jqio ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-s= tat-nanoseconds.sh.Jqio' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-stat-nanoseconds.sh.Jqio +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-stat-nanoseconds.sh.Jqio ++ cd /tmp/32-bit/coreutils-8.24/gt-stat-nanoseconds.sh.Jqio ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + TZ=3DUTC0 + export TZ + touch -d '1970-01-01 18:43:33.023456789' k + ls --full-time + grep 18:43:33.023456789 + skip_ this file system does not support sub-second time stamps + warn_ 'stat-nanoseconds.sh: skipped test: this' file system does not su= pport sub-second time stamps + case $IFS in + printf '%s\n' 'stat-nanoseconds.sh: skipped test: this file system does= not support sub-second time stamps' stat-nanoseconds.sh: skipped test: this file system does not support sub-= second time stamps + test 9 =3D 2 + printf '%s\n' 'stat-nanoseconds.sh: skipped test: this file system does= not support sub-second time stamps' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-stat-nanoseconds.sh.Jqio + rm -rf /tmp/32-bit/coreutils-8.24/gt-stat-nanoseconds.sh.Jqio + exit 77 SKIP tests/misc/stat-nanoseconds.sh (exit status: 77) SKIP: tests/misc/stty-pairs =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-stty-pairs.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-stty-pairs.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.N5kc +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.N5kc ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.N5kc ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-s= tty-pairs.sh.N5kc' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.N5kc +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.N5kc ++ cd /tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.N5kc ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ stty + test yes =3D yes + local i + for i in '$*' + env stty --version stty (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'stty-pairs.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'stty-pairs.sh: skipped test: expensive: disabled by defa= ult 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' stty-pairs.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'stty-pairs.sh: skipped test: expensive: disabled by defa= ult 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.N5kc + rm -rf /tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.N5kc + exit 77 SKIP tests/misc/stty-pairs.sh (exit status: 77) SKIP: tests/misc/tac-continue =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-tac-continue.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-tac-continue.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.czZu +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.czZu ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.czZu ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-t= ac-continue.sh.czZu' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.czZu +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.czZu ++ cd /tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.czZu ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tac + test yes =3D yes + local i + for i in '$*' + env tac --version tac (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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 x =3D x + skip_ 'FULL_PARTITION_TMPDIR not defined' + warn_ 'tac-continue.sh: skipped test: FULL_PARTITION_TMPDIR not defined= ' + case $IFS in + printf '%s\n' 'tac-continue.sh: skipped test: FULL_PARTITION_TMPDIR not= defined' tac-continue.sh: skipped test: FULL_PARTITION_TMPDIR not defined + test 9 =3D 2 + printf '%s\n' 'tac-continue.sh: skipped test: FULL_PARTITION_TMPDIR not= defined' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.czZu + rm -rf /tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.czZu + exit 77 SKIP tests/misc/tac-continue.sh (exit status: 77) FAIL: tests/misc/tee =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-tee.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-tee.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-tee.sh.oaZL +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-tee.sh.oaZL ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-tee.sh.oaZL ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-t= ee.sh.oaZL' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-tee.sh.oaZL +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-tee.sh.oaZL ++ cd /tmp/32-bit/coreutils-8.24/gt-tee.sh.oaZL ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tee + test yes =3D yes + local i + for i in '$*' + env tee --version tee (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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, Richard M. Stallman, and David MacKenzie. + echo line + for n in 0 1 2 12 13 ++ seq 0 + files=3D + rm -f + tee + for f in out '$files' + compare sample out + compare_dev_null_ sample out + test 2 =3D 2 + test xsample =3D x/dev/null + test xout =3D x/dev/null + return 2 + case $? in + compare_ sample out + diff -u sample out + rm -f diff.out + true + for n in 0 1 2 12 13 ++ seq 1 + files=3D1 + rm -f 1 + tee 1 + for f in out '$files' + compare sample out + compare_dev_null_ sample out + test 2 =3D 2 + test xsample =3D x/dev/null + test xout =3D x/dev/null + return 2 + case $? in + compare_ sample out + diff -u sample out + rm -f diff.out + true + for f in out '$files' + compare sample 1 + compare_dev_null_ sample 1 + test 2 =3D 2 + test xsample =3D x/dev/null + test x1 =3D x/dev/null + return 2 + case $? in + compare_ sample 1 + diff -u sample 1 + rm -f diff.out + true + for n in 0 1 2 12 13 ++ seq 2 + files=3D'1 2' + rm -f 1 2 + tee 1 2 + for f in out '$files' + compare sample out + compare_dev_null_ sample out + test 2 =3D 2 + test xsample =3D x/dev/null + test xout =3D x/dev/null + return 2 + case $? in + compare_ sample out + diff -u sample out + rm -f diff.out + true + for f in out '$files' + compare sample 1 + compare_dev_null_ sample 1 + test 2 =3D 2 + test xsample =3D x/dev/null + test x1 =3D x/dev/null + return 2 + case $? in + compare_ sample 1 + diff -u sample 1 + rm -f diff.out + true + for f in out '$files' + compare sample 2 + compare_dev_null_ sample 2 + test 2 =3D 2 + test xsample =3D x/dev/null + test x2 =3D x/dev/null + return 2 + case $? in + compare_ sample 2 + diff -u sample 2 + rm -f diff.out + true + for n in 0 1 2 12 13 ++ seq 12 + files=3D'1 2 3 4 5 6 7 8 9 10 11 12' + rm -f 1 2 3 4 5 6 7 8 9 10 11 12 + tee 1 2 3 4 5 6 7 8 9 10 11 12 + for f in out '$files' + compare sample out + compare_dev_null_ sample out + test 2 =3D 2 + test xsample =3D x/dev/null + test xout =3D x/dev/null + return 2 + case $? in + compare_ sample out + diff -u sample out + rm -f diff.out + true + for f in out '$files' + compare sample 1 + compare_dev_null_ sample 1 + test 2 =3D 2 + test xsample =3D x/dev/null + test x1 =3D x/dev/null + return 2 + case $? in + compare_ sample 1 + diff -u sample 1 + rm -f diff.out + true + for f in out '$files' + compare sample 2 + compare_dev_null_ sample 2 + test 2 =3D 2 + test xsample =3D x/dev/null + test x2 =3D x/dev/null + return 2 + case $? in + compare_ sample 2 + diff -u sample 2 + rm -f diff.out + true + for f in out '$files' + compare sample 3 + compare_dev_null_ sample 3 + test 2 =3D 2 + test xsample =3D x/dev/null + test x3 =3D x/dev/null + return 2 + case $? in + compare_ sample 3 + diff -u sample 3 + rm -f diff.out + true + for f in out '$files' + compare sample 4 + compare_dev_null_ sample 4 + test 2 =3D 2 + test xsample =3D x/dev/null + test x4 =3D x/dev/null + return 2 + case $? in + compare_ sample 4 + diff -u sample 4 + rm -f diff.out + true + for f in out '$files' + compare sample 5 + compare_dev_null_ sample 5 + test 2 =3D 2 + test xsample =3D x/dev/null + test x5 =3D x/dev/null + return 2 + case $? in + compare_ sample 5 + diff -u sample 5 + rm -f diff.out + true + for f in out '$files' + compare sample 6 + compare_dev_null_ sample 6 + test 2 =3D 2 + test xsample =3D x/dev/null + test x6 =3D x/dev/null + return 2 + case $? in + compare_ sample 6 + diff -u sample 6 + rm -f diff.out + true + for f in out '$files' + compare sample 7 + compare_dev_null_ sample 7 + test 2 =3D 2 + test xsample =3D x/dev/null + test x7 =3D x/dev/null + return 2 + case $? in + compare_ sample 7 + diff -u sample 7 + rm -f diff.out + true + for f in out '$files' + compare sample 8 + compare_dev_null_ sample 8 + test 2 =3D 2 + test xsample =3D x/dev/null + test x8 =3D x/dev/null + return 2 + case $? in + compare_ sample 8 + diff -u sample 8 + rm -f diff.out + true + for f in out '$files' + compare sample 9 + compare_dev_null_ sample 9 + test 2 =3D 2 + test xsample =3D x/dev/null + test x9 =3D x/dev/null + return 2 + case $? in + compare_ sample 9 + diff -u sample 9 + rm -f diff.out + true + for f in out '$files' + compare sample 10 + compare_dev_null_ sample 10 + test 2 =3D 2 + test xsample =3D x/dev/null + test x10 =3D x/dev/null + return 2 + case $? in + compare_ sample 10 + diff -u sample 10 + rm -f diff.out + true + for f in out '$files' + compare sample 11 + compare_dev_null_ sample 11 + test 2 =3D 2 + test xsample =3D x/dev/null + test x11 =3D x/dev/null + return 2 + case $? in + compare_ sample 11 + diff -u sample 11 + rm -f diff.out + true + for f in out '$files' + compare sample 12 + compare_dev_null_ sample 12 + test 2 =3D 2 + test xsample =3D x/dev/null + test x12 =3D x/dev/null + return 2 + case $? in + compare_ sample 12 + diff -u sample 12 + rm -f diff.out + true + for n in 0 1 2 12 13 ++ seq 13 + files=3D'1 2 3 4 5 6 7 8 9 10 11 12 13' + rm -f 1 2 3 4 5 6 7 8 9 10 11 12 13 + tee 1 2 3 4 5 6 7 8 9 10 11 12 13 + for f in out '$files' + compare sample out + compare_dev_null_ sample out + test 2 =3D 2 + test xsample =3D x/dev/null + test xout =3D x/dev/null + return 2 + case $? in + compare_ sample out + diff -u sample out + rm -f diff.out + true + for f in out '$files' + compare sample 1 + compare_dev_null_ sample 1 + test 2 =3D 2 + test xsample =3D x/dev/null + test x1 =3D x/dev/null + return 2 + case $? in + compare_ sample 1 + diff -u sample 1 + rm -f diff.out + true + for f in out '$files' + compare sample 2 + compare_dev_null_ sample 2 + test 2 =3D 2 + test xsample =3D x/dev/null + test x2 =3D x/dev/null + return 2 + case $? in + compare_ sample 2 + diff -u sample 2 + rm -f diff.out + true + for f in out '$files' + compare sample 3 + compare_dev_null_ sample 3 + test 2 =3D 2 + test xsample =3D x/dev/null + test x3 =3D x/dev/null + return 2 + case $? in + compare_ sample 3 + diff -u sample 3 + rm -f diff.out + true + for f in out '$files' + compare sample 4 + compare_dev_null_ sample 4 + test 2 =3D 2 + test xsample =3D x/dev/null + test x4 =3D x/dev/null + return 2 + case $? in + compare_ sample 4 + diff -u sample 4 + rm -f diff.out + true + for f in out '$files' + compare sample 5 + compare_dev_null_ sample 5 + test 2 =3D 2 + test xsample =3D x/dev/null + test x5 =3D x/dev/null + return 2 + case $? in + compare_ sample 5 + diff -u sample 5 + rm -f diff.out + true + for f in out '$files' + compare sample 6 + compare_dev_null_ sample 6 + test 2 =3D 2 + test xsample =3D x/dev/null + test x6 =3D x/dev/null + return 2 + case $? in + compare_ sample 6 + diff -u sample 6 + rm -f diff.out + true + for f in out '$files' + compare sample 7 + compare_dev_null_ sample 7 + test 2 =3D 2 + test xsample =3D x/dev/null + test x7 =3D x/dev/null + return 2 + case $? in + compare_ sample 7 + diff -u sample 7 + rm -f diff.out + true + for f in out '$files' + compare sample 8 + compare_dev_null_ sample 8 + test 2 =3D 2 + test xsample =3D x/dev/null + test x8 =3D x/dev/null + return 2 + case $? in + compare_ sample 8 + diff -u sample 8 + rm -f diff.out + true + for f in out '$files' + compare sample 9 + compare_dev_null_ sample 9 + test 2 =3D 2 + test xsample =3D x/dev/null + test x9 =3D x/dev/null + return 2 + case $? in + compare_ sample 9 + diff -u sample 9 + rm -f diff.out + true + for f in out '$files' + compare sample 10 + compare_dev_null_ sample 10 + test 2 =3D 2 + test xsample =3D x/dev/null + test x10 =3D x/dev/null + return 2 + case $? in + compare_ sample 10 + diff -u sample 10 + rm -f diff.out + true + for f in out '$files' + compare sample 11 + compare_dev_null_ sample 11 + test 2 =3D 2 + test xsample =3D x/dev/null + test x11 =3D x/dev/null + return 2 + case $? in + compare_ sample 11 + diff -u sample 11 + rm -f diff.out + true + for f in out '$files' + compare sample 12 + compare_dev_null_ sample 12 + test 2 =3D 2 + test xsample =3D x/dev/null + test x12 =3D x/dev/null + return 2 + case $? in + compare_ sample 12 + diff -u sample 12 + rm -f diff.out + true + for f in out '$files' + compare sample 13 + compare_dev_null_ sample 13 + test 2 =3D 2 + test xsample =3D x/dev/null + test x13 =3D x/dev/null + return 2 + case $? in + compare_ sample 13 + diff -u sample 13 + rm -f diff.out + true + tee - + compare sample ./- + compare_dev_null_ sample ./- + test 2 =3D 2 + test xsample =3D x/dev/null + test x./- =3D x/dev/null + return 2 + case $? in + compare_ sample ./- + diff -u sample ./- + rm -f diff.out + true + compare sample out + compare_dev_null_ sample out + test 2 =3D 2 + test xsample =3D x/dev/null + test xout =3D x/dev/null + return 2 + case $? in + compare_ sample out + diff -u sample out + rm -f diff.out + true + compare /dev/null err + compare_dev_null_ /dev/null err + test 2 =3D 2 + test x/dev/null =3D x/dev/null + test -s err + return 0 + return 0 + test -w /dev/full + mkfifo_or_skip_ fifo + test 1 =3D 1 + mkfifo fifo + read_fifo + yes + timeout 10 dd count=3D1 if=3Dfifo of=3D/dev/null status=3Dnone timeout: warning: timer_create: Not owner Broken Pipe + pipe_status=3D141 + read_fifo + timeout 10 dd count=3D1 if=3Dfifo of=3D/dev/null status=3Dnone + yes + returns_ 141 timeout 10 tee ./e/noent timeout: warning: timer_create: Not owner ++ wc -l + test 3 =3D 1 + cat err timeout: warning: timer_create: Not owner tee: ./e/noent: No such file or directory =2E/tests/init.sh: line 102: 14899 Broken Pipe "$@" + fail=3D1 + read_fifo + timeout 10 dd count=3D1 if=3Dfifo of=3D/dev/null status=3Dnone + yes + timeout 10 tee -p timeout: warning: timer_create: Not owner ++ wc -l + test 1 =3D 0 + cat err timeout: warning: timer_create: Not owner + fail=3D1 + read_fifo + timeout 10 dd count=3D1 if=3Dfifo of=3D/dev/null status=3Dnone + yes + returns_ 1 timeout 10 tee --output-error=3Dwarn timeout: warning: timer_create: Not owner ++ wc -l + test 2 =3D 1 + cat err timeout: warning: timer_create: Not owner tee: standard output: Broken pipe + fail=3D1 + read_fifo + timeout 10 dd count=3D1 if=3Dfifo of=3D/dev/null status=3Dnone + yes timeout: warning: timer_create: Not owner + returns_ 1 timeout 10 tee --output-error=3Dexit /dev/null ++ wc -l + test 2 =3D 1 + cat err timeout: warning: timer_create: Not owner tee: standard output: Broken pipe + fail=3D1 + read_fifo + timeout 10 dd count=3D1 if=3Dfifo of=3D/dev/null status=3Dnone + yes + returns_ 1 timeout 10 tee --output-error=3Dexit ./e/noent timeout: warning: timer_create: Not owner ++ wc -l + test 2 =3D 1 + cat err timeout: warning: timer_create: Not owner tee: ./e/noent: No such file or directory + fail=3D1 + read_fifo + timeout 10 dd count=3D1 if=3Dfifo of=3D/dev/null status=3Dnone + yes timeout: warning: timer_create: Not owner + timeout 10 tee --output-error=3Dexit-nopipe ++ wc -l + test 1 =3D 0 + cat err timeout: warning: timer_create: Not owner + fail=3D1 + wait + Exit 1 + set +e + exit 1 + exit 1 + remove_tmp_ + __st=3D1 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-tee.sh.oaZL + rm -rf /tmp/32-bit/coreutils-8.24/gt-tee.sh.oaZL + exit 1 FAIL tests/misc/tee.sh (exit status: 1) FAIL: tests/misc/timeout-blocked =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D timeout (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by P'adraig Brady. block-alrm... timeout-blocked.pl: test block-alrm: stderr mismatch, comparing block-alr= m.2 (expected) and block-alrm.E (actual) *** block-alrm.2 Sat Jul 18 02:08:29 2015 --- block-alrm.E Sat Jul 18 02:08:29 2015 *************** *** 0 **** --- 1 ---- + timeout: warning: timer_create: Not owner FAIL tests/misc/timeout-blocked.pl (exit status: 1) SKIP: tests/misc/timeout-group =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-timeout-group.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-timeout-group.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.GtiO +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.GtiO ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.GtiO ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-t= imeout-group.sh.GtiO' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.GtiO +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.GtiO ++ cd /tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.GtiO ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ timeout + test yes =3D yes + local i + for i in '$*' + env timeout --version timeout (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by P'adraig Brady. + setsid true =2E/tests/misc/timeout-group.sh: line 31: setsid: command not found + skip_ 'setsid required to control groups' + warn_ 'timeout-group.sh: skipped test: setsid required to control group= s' + case $IFS in + printf '%s\n' 'timeout-group.sh: skipped test: setsid required to contr= ol groups' timeout-group.sh: skipped test: setsid required to control groups + test 9 =3D 2 + printf '%s\n' 'timeout-group.sh: skipped test: setsid required to contr= ol groups' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.GtiO + rm -rf /tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.GtiO + exit 77 SKIP tests/misc/timeout-group.sh (exit status: 77) SKIP: tests/misc/xattr =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-xattr.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-xattr.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-xattr.sh.X0nT +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-xattr.sh.X0nT ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-xattr.sh.X0nT ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-x= attr.sh.X0nT' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-xattr.sh.X0nT +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-xattr.sh.X0nT ++ cd /tmp/32-bit/coreutils-8.24/gt-xattr.sh.X0nT ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp mv ginstall + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env ginstall --version install (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + touch src dest + cp --preserve=3Dxattr -n src dest cp: cannot preserve extended attributes, cp is built without xattr suppor= t + skip_ 'coreutils built without xattr support' + warn_ 'xattr.sh: skipped test: coreutils built without xattr support' + case $IFS in + printf '%s\n' 'xattr.sh: skipped test: coreutils built without xattr su= pport' xattr.sh: skipped test: coreutils built without xattr support + test 9 =3D 2 + printf '%s\n' 'xattr.sh: skipped test: coreutils built without xattr su= pport' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-xattr.sh.X0nT + rm -rf /tmp/32-bit/coreutils-8.24/gt-xattr.sh.X0nT + exit 77 SKIP tests/misc/xattr.sh (exit status: 77) FAIL: tests/tail-2/wait =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-wait.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-wait.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-wait.sh.EKEj +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-wait.sh.EKEj ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-wait.sh.EKEj ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-w= ait.sh.EKEj' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-wait.sh.EKEj +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-wait.sh.EKEj ++ cd /tmp/32-bit/coreutils-8.24/gt-wait.sh.EKEj ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + grep '^#define HAVE_INOTIFY 1' /tmp/32-bit/coreutils-8.24/lib/config.h + inotify_failed_re=3D'inotify (resources exhausted|cannot be used)' + touch here + touch unreadable + chmod a-r unreadable + fastpoll=3D'-s.1 --max-unchanged-stats=3D1' + for mode in ''\'''\''' ''\''---disable-inotify'\''' + timeout 10 tail -s.1 --max-unchanged-stats=3D1 -f not_here timeout: warning: timer_create: Not owner tail: cannot open 'not_here' for reading: No such file or directory tail: no files remaining + test 1 =3D 124 + test '!' -r unreadable + timeout 10 tail -s.1 --max-unchanged-stats=3D1 -f unreadable timeout: warning: timer_create: Not owner tail: cannot open 'unreadable' for reading: Permission denied tail: no files remaining + test 1 =3D 124 + timeout .1 tail -s.1 --max-unchanged-stats=3D1 -f here + test 124 =3D 124 + timeout .1 tail -s.1 --max-unchanged-stats=3D1 -F here + test 124 =3D 124 + test '!' -r unreadable + timeout .1 tail -s.1 --max-unchanged-stats=3D1 -F unreadable timeout: warning: timer_create: Not owner tail: cannot open 'unreadable' for reading: Permission denied + test 124 =3D 124 + timeout .1 tail -s.1 --max-unchanged-stats=3D1 -F not_here timeout: warning: timer_create: Not owner tail: cannot open 'not_here' for reading: No such file or directory + test 124 =3D 124 + grep -Ev 'inotify (resources exhausted|cannot be used)' tail.err + mv x tail.err + compare /dev/null tail.err + compare_dev_null_ /dev/null tail.err + test 2 =3D 2 + test x/dev/null =3D x/dev/null + test -s tail.err + emit_diff_u_header_ /dev/null tail.err + printf '%s\n' 'diff -u /dev/null tail.err' '--- /dev/null 1970-01-01' '= +++ tail.err 1970-01-01' diff -u /dev/null tail.err --- /dev/null 1970-01-01 +++ tail.err 1970-01-01 + sed 's/^/+/' tail.err +timeout: warning: timer_create: Not owner +timeout: warning: timer_create: Not owner + return 1 + case $? in + return 1 + fail=3D1 + for mode in ''\'''\''' ''\''---disable-inotify'\''' + timeout 10 tail -s.1 --max-unchanged-stats=3D1 -f ---disable-inotify no= t_here timeout: warning: timer_create: Not owner tail: cannot open 'not_here' for reading: No such file or directory tail: no files remaining + test 1 =3D 124 + test '!' -r unreadable + timeout 10 tail -s.1 --max-unchanged-stats=3D1 -f ---disable-inotify un= readable timeout: warning: timer_create: Not owner tail: cannot open 'unreadable' for reading: Permission denied tail: no files remaining + test 1 =3D 124 + timeout .1 tail -s.1 --max-unchanged-stats=3D1 -f ---disable-inotify he= re + test 124 =3D 124 + timeout .1 tail -s.1 --max-unchanged-stats=3D1 -F ---disable-inotify he= re + test 124 =3D 124 + test '!' -r unreadable + timeout .1 tail -s.1 --max-unchanged-stats=3D1 -F ---disable-inotify un= readable timeout: warning: timer_create: Not owner tail: cannot open 'unreadable' for reading: Permission denied + test 124 =3D 124 + timeout .1 tail -s.1 --max-unchanged-stats=3D1 -F ---disable-inotify no= t_here timeout: warning: timer_create: Not owner tail: cannot open 'not_here' for reading: No such file or directory + test 124 =3D 124 + grep -Ev 'inotify (resources exhausted|cannot be used)' tail.err + mv x tail.err + compare /dev/null tail.err + compare_dev_null_ /dev/null tail.err + test 2 =3D 2 + test x/dev/null =3D x/dev/null + test -s tail.err + emit_diff_u_header_ /dev/null tail.err + printf '%s\n' 'diff -u /dev/null tail.err' '--- /dev/null 1970-01-01' '= +++ tail.err 1970-01-01' diff -u /dev/null tail.err --- /dev/null 1970-01-01 +++ tail.err 1970-01-01 + sed 's/^/+/' tail.err +timeout: warning: timer_create: Not owner +timeout: warning: timer_create: Not owner + return 1 + case $? in + return 1 + fail=3D1 + test '' + Exit 1 + set +e + exit 1 + exit 1 + remove_tmp_ + __st=3D1 + cleanup_ + kill + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-wait.sh.EKEj + rm -rf /tmp/32-bit/coreutils-8.24/gt-wait.sh.EKEj + exit 1 FAIL tests/tail-2/wait.sh (exit status: 1) FAIL: tests/tail-2/retry =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-retry.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-retry.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-retry.sh.s1Ll +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-retry.sh.s1Ll ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-retry.sh.s1Ll ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-r= etry.sh.s1Ll' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-retry.sh.s1Ll +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-retry.sh.s1Ll ++ cd /tmp/32-bit/coreutils-8.24/gt-retry.sh.s1Ll ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + fastpoll=3D'-s.1 --max-unchanged-stats=3D1' + touch file + tail --retry file ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 1 =3D 1 ']' + grep -F 'tail: warning: --retry ignored' out tail: warning: --retry ignored; --retry is useful only when following + tail --retry missing ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 2 =3D 2 ']' + grep -F 'tail: warning: --retry ignored' out tail: warning: --retry ignored; --retry is useful only when following + pid=3D17925 + retry_delay_ wait4lines_ .1 6 1 + local test_func=3Dwait4lines_ + local init_delay=3D.1 + local max_n_tries=3D6 + timeout 10 tail -s.1 --max-unchanged-stats=3D1 --follow=3Dname --retry = missing + shift 3 + local attempt=3D1 + local num_sleeps=3D1 + local time_fail + test 1 -le 6 ++ gawk -v n=3D1 -v s=3D.1 'BEGIN { print s * n }' + local delay=3D0.1 + wait4lines_ 0.1 1 + local delay=3D0.1 + local elc=3D1 ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 2 -ge 1 ']' + time_fail=3D0 + break + test 0 =3D 0 + echo X + retry_delay_ wait4lines_ .1 6 3 + local test_func=3Dwait4lines_ + local init_delay=3D.1 + local max_n_tries=3D6 + shift 3 + local attempt=3D1 + local num_sleeps=3D1 + local time_fail + test 1 -le 6 ++ gawk -v n=3D1 -v s=3D.1 'BEGIN { print s * n }' + local delay=3D0.1 + wait4lines_ 0.1 3 + local delay=3D0.1 + local elc=3D3 ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 2 -ge 3 ']' + sleep 0.1 + return 1 + time_fail=3D1 ++ expr 1 + 1 + attempt=3D2 ++ expr 1 '*' 2 + num_sleeps=3D2 + test 2 -le 6 ++ gawk -v n=3D2 -v s=3D.1 'BEGIN { print s * n }' + local delay=3D0.2 + wait4lines_ 0.2 3 + local delay=3D0.2 + local elc=3D3 ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 3 -ge 3 ']' + time_fail=3D0 + break + test 0 =3D 0 + cleanup_ + kill 17925 + wait 17925 [1]+ Terminated timeout 10 tail $fastpoll --follow=3Dname -= -retry missing >out 2>&1 ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 3 =3D 3 ']' + grep -F 'cannot open' out tail: cannot open 'missing' for reading: No such file or directory + grep -F 'has appeared' out tail: 'missing' has appeared; following new file + grep '^X$' out + fail=3D1 + cat out timeout: warning: timer_create: Not owner tail: cannot open 'missing' for reading: No such file or directory tail: 'missing' has appeared; following new file + rm -f missing out + pid=3D17950 + retry_delay_ wait4lines_ .1 6 2 + local test_func=3Dwait4lines_ + local init_delay=3D.1 + local max_n_tries=3D6 + shift 3 + local attempt=3D1 + local num_sleeps=3D1 + local time_fail + test 1 -le 6 + timeout 10 tail -s.1 --max-unchanged-stats=3D1 --follow=3Ddescriptor --= retry missing ++ gawk -v n=3D1 -v s=3D.1 'BEGIN { print s * n }' + local delay=3D0.1 + wait4lines_ 0.1 2 + local delay=3D0.1 + local elc=3D2 ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 3 -ge 2 ']' + time_fail=3D0 + break + test 0 =3D 0 + echo X + retry_delay_ wait4lines_ .1 6 4 + local test_func=3Dwait4lines_ + local init_delay=3D.1 + local max_n_tries=3D6 + shift 3 + local attempt=3D1 + local num_sleeps=3D1 + local time_fail + test 1 -le 6 ++ gawk -v n=3D1 -v s=3D.1 'BEGIN { print s * n }' + local delay=3D0.1 + wait4lines_ 0.1 4 + local delay=3D0.1 + local elc=3D4 ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 3 -ge 4 ']' + sleep 0.1 + return 1 + time_fail=3D1 ++ expr 1 + 1 + attempt=3D2 ++ expr 1 '*' 2 + num_sleeps=3D2 + test 2 -le 6 ++ gawk -v n=3D2 -v s=3D.1 'BEGIN { print s * n }' + local delay=3D0.2 + wait4lines_ 0.2 4 + local delay=3D0.2 + local elc=3D4 ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 4 -ge 4 ']' + time_fail=3D0 + break + test 0 =3D 0 + cleanup_ + kill 17950 + wait 17950 [1]+ Terminated timeout 10 tail $fastpoll --follow=3Ddescri= ptor --retry missing >out 2>&1 ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 4 =3D 4 ']' + grep -F 'retry only effective for the initial open' out tail: warning: --retry only effective for the initial open + grep -F 'cannot open' out tail: cannot open 'missing' for reading: No such file or directory + grep -F 'has appeared' out tail: 'missing' has appeared; following new file + grep '^X$' out + fail=3D1 + cat out timeout: warning: timer_create: Not owner tail: warning: --retry only effective for the initial open tail: cannot open 'missing' for reading: No such file or directory tail: 'missing' has appeared; following new file + rm -f missing out + pid=3D17976 + retry_delay_ wait4lines_ .1 6 2 + local test_func=3Dwait4lines_ + local init_delay=3D.1 + local max_n_tries=3D6 + shift 3 + local attempt=3D1 + local num_sleeps=3D1 + local time_fail + test 1 -le 6 + timeout 10 tail -s.1 --max-unchanged-stats=3D1 --follow=3Ddescriptor --= retry missing ++ gawk -v n=3D1 -v s=3D.1 'BEGIN { print s * n }' + local delay=3D0.1 + wait4lines_ 0.1 2 + local delay=3D0.1 + local elc=3D2 ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 3 -ge 2 ']' + time_fail=3D0 + break + test 0 =3D 0 + mkdir missing + retry_delay_ wait4lines_ .1 6 4 + local test_func=3Dwait4lines_ + local init_delay=3D.1 + local max_n_tries=3D6 + shift 3 + local attempt=3D1 + local num_sleeps=3D1 + local time_fail + test 1 -le 6 ++ gawk -v n=3D1 -v s=3D.1 'BEGIN { print s * n }' + local delay=3D0.1 + wait4lines_ 0.1 4 + local delay=3D0.1 + local elc=3D4 ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 3 -ge 4 ']' + sleep 0.1 + return 1 + time_fail=3D1 ++ expr 1 + 1 + attempt=3D2 ++ expr 1 '*' 2 + num_sleeps=3D2 + test 2 -le 6 ++ gawk -v n=3D2 -v s=3D.1 'BEGIN { print s * n }' + local delay=3D0.2 + wait4lines_ 0.2 4 + local delay=3D0.2 + local elc=3D4 ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 5 -ge 4 ']' + time_fail=3D0 + break + test 0 =3D 0 + wait 17976 + rc=3D1 ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 5 =3D 4 ']' + fail=3D1 + cat out timeout: warning: timer_create: Not owner tail: warning: --retry only effective for the initial open tail: cannot open 'missing' for reading: No such file or directory tail: 'missing' has been replaced with an untailable file; giving up on t= his name tail: no files remaining + grep -F 'retry only effective for the initial open' out tail: warning: --retry only effective for the initial open + grep -F 'cannot open' out tail: cannot open 'missing' for reading: No such file or directory + grep -F 'replaced with an untailable file' out tail: 'missing' has been replaced with an untailable file; giving up on t= his name + grep -F 'no files remaining' out tail: no files remaining + '[' 1 =3D 1 ']' + rm -fd missing out + tail --follow=3Ddescriptor missing ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 2 =3D 2 ']' + grep -F 'cannot open' out tail: cannot open 'missing' for reading: No such file or directory + grep -F 'no files remaining' out tail: no files remaining + tail --follow=3Dname missing ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 2 =3D 2 ']' + grep -F 'cannot open' out tail: cannot open 'missing' for reading: No such file or directory + grep -F 'no files remaining' out tail: no files remaining + Exit 1 + set +e + exit 1 + exit 1 + remove_tmp_ + __st=3D1 + cleanup_ + kill 17976 + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-retry.sh.s1Ll + rm -rf /tmp/32-bit/coreutils-8.24/gt-retry.sh.s1Ll + exit 1 FAIL tests/tail-2/retry.sh (exit status: 1) FAIL: tests/tail-2/symlink =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-symlink.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-symlink.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-symlink.sh.LdGN +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-symlink.sh.LdGN ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-symlink.sh.LdGN ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-s= ymlink.sh.LdGN' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-symlink.sh.LdGN +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-symlink.sh.LdGN ++ cd /tmp/32-bit/coreutils-8.24/gt-symlink.sh.LdGN ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + fastpoll=3D'-s.1 --max-unchanged-stats=3D1' + ln -nsf target symlink + pid=3D18075 + retry_delay_ wait4lines_ .1 6 1 + local test_func=3Dwait4lines_ + local init_delay=3D.1 + local max_n_tries=3D6 + timeout 10 tail -s.1 --max-unchanged-stats=3D1 -F symlink + shift 3 + local attempt=3D1 + local num_sleeps=3D1 + local time_fail + test 1 -le 6 ++ gawk -v n=3D1 -v s=3D.1 'BEGIN { print s * n }' + local delay=3D0.1 + wait4lines_ 0.1 1 + local delay=3D0.1 + local elc=3D1 ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 2 -ge 1 ']' + time_fail=3D0 + break + test 0 =3D 0 + echo X + retry_delay_ wait4lines_ .1 6 3 + local test_func=3Dwait4lines_ + local init_delay=3D.1 + local max_n_tries=3D6 + shift 3 + local attempt=3D1 + local num_sleeps=3D1 + local time_fail + test 1 -le 6 ++ gawk -v n=3D1 -v s=3D.1 'BEGIN { print s * n }' + local delay=3D0.1 + wait4lines_ 0.1 3 + local delay=3D0.1 + local elc=3D3 ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 2 -ge 3 ']' + sleep 0.1 + return 1 + time_fail=3D1 ++ expr 1 + 1 + attempt=3D2 ++ expr 1 '*' 2 + num_sleeps=3D2 + test 2 -le 6 ++ gawk -v n=3D2 -v s=3D.1 'BEGIN { print s * n }' + local delay=3D0.2 + wait4lines_ 0.2 3 + local delay=3D0.2 + local elc=3D3 ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 3 -ge 3 ']' + time_fail=3D0 + break + test 0 =3D 0 + cleanup_ + kill 18075 + wait 18075 [1]+ Terminated timeout 10 tail $fastpoll -F symlink >out 2= >&1 ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 3 =3D 3 ']' + grep -F 'cannot open' out tail: cannot open 'symlink' for reading: No such file or directory + grep -F 'has appeared' out tail: 'symlink' has appeared; following new file + grep '^X$' out + fail=3D1 + cat out timeout: warning: timer_create: Not owner tail: cannot open 'symlink' for reading: No such file or directory tail: 'symlink' has appeared; following new file + rm -f target out + echo X1 + ln -nsf target1 symlink + pid=3D18101 + retry_delay_ wait4lines_ .1 6 1 + local test_func=3Dwait4lines_ + local init_delay=3D.1 + timeout 10 tail -s.1 --max-unchanged-stats=3D1 -F symlink + local max_n_tries=3D6 + shift 3 + local attempt=3D1 + local num_sleeps=3D1 + local time_fail + test 1 -le 6 ++ gawk -v n=3D1 -v s=3D.1 'BEGIN { print s * n }' + local delay=3D0.1 + wait4lines_ 0.1 1 + local delay=3D0.1 + local elc=3D1 ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 2 -ge 1 ']' + time_fail=3D0 + break + test 0 =3D 0 + ln -nsf target2 symlink + retry_delay_ wait4lines_ .1 6 2 + local test_func=3Dwait4lines_ + local init_delay=3D.1 + local max_n_tries=3D6 + shift 3 + local attempt=3D1 + local num_sleeps=3D1 + local time_fail + test 1 -le 6 ++ gawk -v n=3D1 -v s=3D.1 'BEGIN { print s * n }' + local delay=3D0.1 + wait4lines_ 0.1 2 + local delay=3D0.1 + local elc=3D2 ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 2 -ge 2 ']' + time_fail=3D0 + break + test 0 =3D 0 + echo X2 + retry_delay_ wait4lines_ .1 6 4 + local test_func=3Dwait4lines_ + local init_delay=3D.1 + local max_n_tries=3D6 + shift 3 + local attempt=3D1 + local num_sleeps=3D1 + local time_fail + test 1 -le 6 ++ gawk -v n=3D1 -v s=3D.1 'BEGIN { print s * n }' + local delay=3D0.1 + wait4lines_ 0.1 4 + local delay=3D0.1 + local elc=3D4 ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 2 -ge 4 ']' + sleep 0.1 + return 1 + time_fail=3D1 ++ expr 1 + 1 + attempt=3D2 ++ expr 1 '*' 2 + num_sleeps=3D2 + test 2 -le 6 ++ gawk -v n=3D2 -v s=3D.1 'BEGIN { print s * n }' + local delay=3D0.2 + wait4lines_ 0.2 4 + local delay=3D0.2 + local elc=3D4 ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 3 -ge 4 ']' + sleep 0.2 + return 1 + time_fail=3D1 ++ expr 2 + 1 + attempt=3D3 ++ expr 2 '*' 2 + num_sleeps=3D4 + test 3 -le 6 ++ gawk -v n=3D4 -v s=3D.1 'BEGIN { print s * n }' + local delay=3D0.4 + wait4lines_ 0.4 4 + local delay=3D0.4 + local elc=3D4 ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 4 -ge 4 ']' + time_fail=3D0 + break + test 0 =3D 0 + cleanup_ + kill 18101 + wait 18101 [1]+ Terminated timeout 10 tail $fastpoll -F symlink >out 2= >&1 ++ countlines_ ++ grep -Ev 'inotify (resources exhausted|cannot be used)' out ++ wc -l + '[' 4 =3D 4 ']' + grep -F 'become inacce' out + fail=3D1 + cat out timeout: warning: timer_create: Not owner X1 tail: 'symlink' has been replaced; following new file X2 + grep -F 'has appeared' out + fail=3D1 + cat out timeout: warning: timer_create: Not owner X1 tail: 'symlink' has been replaced; following new file X2 + grep '^X1$' out X1 + grep '^X2$' out X2 + rm -f target1 target2 out + Exit 1 + set +e + exit 1 + exit 1 + remove_tmp_ + __st=3D1 + cleanup_ + kill 18101 + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-symlink.sh.LdGN + rm -rf /tmp/32-bit/coreutils-8.24/gt-symlink.sh.LdGN + exit 1 FAIL tests/tail-2/symlink.sh (exit status: 1) SKIP: tests/cp/acl =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-acl.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-acl.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-acl.sh.izCC +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-acl.sh.izCC ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-acl.sh.izCC ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-a= cl.sh.izCC' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-acl.sh.izCC +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-acl.sh.izCC ++ cd /tmp/32-bit/coreutils-8.24/gt-acl.sh.izCC ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp getfacl setfacl + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env getfacl --version getfacl: illegal option -- version usage: getfacl [-ad] file ...=20 + for i in '$*' + env setfacl --version usage: setfacl [-r] -f aclfile file ... setfacl [-r] -d acl_entries file ... setfacl [-r] -m acl_entries file ... setfacl [-r] -s acl_entries file ... + require_acl_ + getfacl --version + skip_ 'This test requires getfacl and setfacl.' + warn_ 'acl.sh: skipped test: This test requires getfacl and setfacl.' + case $IFS in + printf '%s\n' 'acl.sh: skipped test: This test requires getfacl and set= facl.' acl.sh: skipped test: This test requires getfacl and setfacl. + test 9 =3D 2 + printf '%s\n' 'acl.sh: skipped test: This test requires getfacl and set= facl.' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-acl.sh.izCC + rm -rf /tmp/32-bit/coreutils-8.24/gt-acl.sh.izCC + exit 77 SKIP tests/cp/acl.sh (exit status: 77) SKIP: tests/cp/existing-perm-race =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-existing-perm-race.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-existing-perm-race.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.WFMX +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.WFMX ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.WFMX ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-e= xisting-perm-race.sh.WFMX' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.WFMX +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.WFMX ++ cd /tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.WFMX ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_membership_in_two_groups_ + test 0 =3D 0 + groups=3D100 + case "$groups" in + skip_ '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=3D'\''users cdrom'\'' make check ' + warn_ 'existing-perm-race.sh: skipped 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=3D'\''users cdrom'\'' make check ' + case $IFS in + printf '%s\n' 'existing-perm-race.sh: skipped 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=3D'\''users cdrom'\'' make check ' existing-perm-race.sh: skipped 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=3D'users cdrom' make check + test 9 =3D 2 + printf '%s\n' 'existing-perm-race.sh: skipped 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=3D'\''users cdrom'\'' make check ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.WFMX= + rm -rf /tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.WFMX + exit 77 SKIP tests/cp/existing-perm-race.sh (exit status: 77) SKIP: tests/cp/fiemap-empty =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-fiemap-empty.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-fiemap-empty.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.JRq3 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.JRq3 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.JRq3 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-f= iemap-empty.sh.JRq3' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.JRq3 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.JRq3 ++ cd /tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.JRq3 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + skip_ 'disabled for now' + warn_ 'fiemap-empty.sh: skipped test: disabled for now' + case $IFS in + printf '%s\n' 'fiemap-empty.sh: skipped test: disabled for now' fiemap-empty.sh: skipped test: disabled for now + test 9 =3D 2 + printf '%s\n' 'fiemap-empty.sh: skipped test: disabled for now' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.JRq3 + rm -rf /tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.JRq3 + exit 77 SKIP tests/cp/fiemap-empty.sh (exit status: 77) SKIP: tests/cp/fiemap-FMR =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-fiemap-FMR.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-fiemap-FMR.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.B2pY +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.B2pY ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.B2pY ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-f= iemap-FMR.sh.B2pY' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.B2pY +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.B2pY ++ cd /tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.B2pY ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_valgrind_ + valgrind --error-exitcode=3D1 true + skip_ 'requires a working valgrind' + warn_ 'fiemap-FMR.sh: skipped test: requires a working valgrind' + case $IFS in + printf '%s\n' 'fiemap-FMR.sh: skipped test: requires a working valgrind= ' fiemap-FMR.sh: skipped test: requires a working valgrind + test 9 =3D 2 + printf '%s\n' 'fiemap-FMR.sh: skipped test: requires a working valgrind= ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.B2pY + rm -rf /tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.B2pY + exit 77 SKIP tests/cp/fiemap-FMR.sh (exit status: 77) SKIP: tests/cp/fiemap-perf =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-fiemap-perf.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-fiemap-perf.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.7nFD +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.7nFD ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.7nFD ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-f= iemap-perf.sh.7nFD' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.7nFD +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.7nFD ++ cd /tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.7nFD ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + touch fiemap_chk + fiemap_capable_ fiemap_chk + python + python /tmp/32-bit/coreutils-8.24/tests/fiemap-capable fiemap_chk + skip_ 'this file system lacks FIEMAP support' + warn_ 'fiemap-perf.sh: skipped test: this file system lacks FIEMAP supp= ort' + case $IFS in + printf '%s\n' 'fiemap-perf.sh: skipped test: this file system lacks FIE= MAP support' fiemap-perf.sh: skipped test: this file system lacks FIEMAP support + test 9 =3D 2 + printf '%s\n' 'fiemap-perf.sh: skipped test: this file system lacks FIE= MAP support' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.7nFD + rm -rf /tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.7nFD + exit 77 SKIP tests/cp/fiemap-perf.sh (exit status: 77) SKIP: tests/cp/fiemap-2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-fiemap-2.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-fiemap-2.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.m67x +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.m67x ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.m67x ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-f= iemap-2.sh.m67x' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.m67x +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.m67x ++ cd /tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.m67x ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + touch fiemap_chk + fiemap_capable_ fiemap_chk + python + python /tmp/32-bit/coreutils-8.24/tests/fiemap-capable fiemap_chk + skip_ 'this file system lacks FIEMAP support' + warn_ 'fiemap-2.sh: skipped test: this file system lacks FIEMAP support= ' + case $IFS in + printf '%s\n' 'fiemap-2.sh: skipped test: this file system lacks FIEMAP= support' fiemap-2.sh: skipped test: this file system lacks FIEMAP support + test 9 =3D 2 + printf '%s\n' 'fiemap-2.sh: skipped test: this file system lacks FIEMAP= support' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.m67x + rm -rf /tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.m67x + exit 77 SKIP tests/cp/fiemap-2.sh (exit status: 77) SKIP: tests/cp/link-symlink =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-link-symlink.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-link-symlink.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-link-symlink.sh.pU59 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-link-symlink.sh.pU59 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-link-symlink.sh.pU59 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-l= ink-symlink.sh.pU59' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-link-symlink.sh.pU59 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-link-symlink.sh.pU59 ++ cd /tmp/32-bit/coreutils-8.24/gt-link-symlink.sh.pU59 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + touch file + ln -s file link + touch -m -h -d 2011-01-01 link touch: setting times of 'link': Operation not applicable + skip_ 'Your system doesn'\''t support updating symlink timestamps' + warn_ 'link-symlink.sh: skipped test: Your system doesn'\''t support up= dating symlink timestamps' + case $IFS in + printf '%s\n' 'link-symlink.sh: skipped test: Your system doesn'\''t su= pport updating symlink timestamps' link-symlink.sh: skipped test: Your system doesn't support updating symli= nk timestamps + test 9 =3D 2 + printf '%s\n' 'link-symlink.sh: skipped test: Your system doesn'\''t su= pport updating symlink timestamps' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-link-symlink.sh.pU59 + rm -rf /tmp/32-bit/coreutils-8.24/gt-link-symlink.sh.pU59 + exit 77 SKIP tests/cp/link-symlink.sh (exit status: 77) SKIP: tests/cp/nfs-removal-race =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-nfs-removal-race.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-nfs-removal-race.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.P3Ir +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.P3Ir ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.P3Ir ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-n= fs-removal-race.sh.P3Ir' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.P3Ir +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.P3Ir ++ cd /tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.P3Ir ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_gcc_shared_ + gcc_shared_ - d.so -xc + local in=3D- + local out=3Dd.so + shift 2 + gcc -std=3Dgnu99 -Wall -shared --std=3Dgnu99 -fPIC -O2 -xc - -o d.so -l= dl + rm -f d.so + cat + gcc_shared_ k.c k.so + local in=3Dk.c + local out=3Dk.so + shift 2 + gcc -std=3Dgnu99 -Wall -shared --std=3Dgnu99 -fPIC -O2 k.c -o k.so -ldl= + touch d2 + echo xyz + LD_PRELOAD=3D:./k.so + cp src d + test -f preloaded + skip_ 'LD_PRELOAD was ineffective?' + warn_ 'nfs-removal-race.sh: skipped test: LD_PRELOAD was ineffective?' + case $IFS in + printf '%s\n' 'nfs-removal-race.sh: skipped test: LD_PRELOAD was ineffe= ctive?' nfs-removal-race.sh: skipped test: LD_PRELOAD was ineffective? + test 9 =3D 2 + printf '%s\n' 'nfs-removal-race.sh: skipped test: LD_PRELOAD was ineffe= ctive?' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.P3Ir + rm -rf /tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.P3Ir + exit 77 SKIP tests/cp/nfs-removal-race.sh (exit status: 77) SKIP: tests/cp/perm =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-perm.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-perm.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-perm.sh.fNW8 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-perm.sh.fNW8 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-perm.sh.fNW8 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-p= erm.sh.fNW8' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-perm.sh.fNW8 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-perm.sh.fNW8 ++ cd /tmp/32-bit/coreutils-8.24/gt-perm.sh.fNW8 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp mv + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 'perm.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 'perm.sh: skipped test: very expensive: disabled by defau= lt 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' perm.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 'perm.sh: skipped test: very expensive: disabled by defau= lt 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-perm.sh.fNW8 + rm -rf /tmp/32-bit/coreutils-8.24/gt-perm.sh.fNW8 + exit 77 SKIP tests/cp/perm.sh (exit status: 77) SKIP: tests/cp/preserve-slink-time =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-preserve-slink-time.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-preserve-slink-time.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-preserve-slink-time.sh.Gn4V +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-preserve-slink-time.sh.Gn4V ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-preserve-slink-time.sh.Gn4V ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-p= reserve-slink-time.sh.Gn4V' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-preserve-slink-time.sh.Gn4V +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-preserve-slink-time.sh.Gn4V ++ cd /tmp/32-bit/coreutils-8.24/gt-preserve-slink-time.sh.Gn4V ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + grep '^#define HAVE_UTIMENSAT 1' /tmp/32-bit/coreutils-8.24/lib/config.= h + grep '^#define HAVE_LUTIMES 1' /tmp/32-bit/coreutils-8.24/lib/config.h + skip_ 'this system lacks the utimensat function' + warn_ 'preserve-slink-time.sh: skipped test: this system lacks the utim= ensat function' + case $IFS in + printf '%s\n' 'preserve-slink-time.sh: skipped test: this system lacks = the utimensat function' preserve-slink-time.sh: skipped test: this system lacks the utimensat fun= ction + test 9 =3D 2 + printf '%s\n' 'preserve-slink-time.sh: skipped test: this system lacks = the utimensat function' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-preserve-slink-time.sh.Gn4= V + rm -rf /tmp/32-bit/coreutils-8.24/gt-preserve-slink-time.sh.Gn4V + exit 77 SKIP tests/cp/preserve-slink-time.sh (exit status: 77) SKIP: tests/cp/proc-short-read =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-proc-short-read.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-proc-short-read.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.EhXc +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.EhXc ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.EhXc ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-p= roc-short-read.sh.EhXc' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.EhXc +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.EhXc ++ cd /tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.EhXc ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + kall=3D/proc/kallsyms + test -r /proc/kallsyms + skip_ 'your system lacks /proc/kallsyms' + warn_ 'proc-short-read.sh: skipped test: your system lacks /proc/kallsy= ms' + case $IFS in + printf '%s\n' 'proc-short-read.sh: skipped test: your system lacks /pro= c/kallsyms' proc-short-read.sh: skipped test: your system lacks /proc/kallsyms + test 9 =3D 2 + printf '%s\n' 'proc-short-read.sh: skipped test: your system lacks /pro= c/kallsyms' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.EhXc + rm -rf /tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.EhXc + exit 77 SKIP tests/cp/proc-short-read.sh (exit status: 77) SKIP: tests/cp/sparse =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sparse.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sparse.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sparse.sh.sFTf +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sparse.sh.sFTf ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sparse.sh.sFTf ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-s= parse.sh.sFTf' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sparse.sh.sFTf +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sparse.sh.sFTf ++ cd /tmp/32-bit/coreutils-8.24/gt-sparse.sh.sFTf ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_sparse_support_ + test 0 =3D 0 + t=3Dsparse.24292 + dd bs=3D1 seek=3D128K of=3Dsparse.24292 ++ du -sk sparse.24292 + set x 128 sparse.24292 + kb_size=3D128 + rm -f sparse.24292 + test 128 -ge 128 + skip_ 'this file system does not support sparse files' + warn_ 'sparse.sh: skipped test: this file system does not support spars= e files' + case $IFS in + printf '%s\n' 'sparse.sh: skipped test: this file system does not suppo= rt sparse files' sparse.sh: skipped test: this file system does not support sparse files + test 9 =3D 2 + printf '%s\n' 'sparse.sh: skipped test: this file system does not suppo= rt sparse files' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sparse.sh.sFTf + rm -rf /tmp/32-bit/coreutils-8.24/gt-sparse.sh.sFTf + exit 77 SKIP tests/cp/sparse.sh (exit status: 77) SKIP: tests/cp/sparse-to-pipe =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sparse-to-pipe.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sparse-to-pipe.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.Ct4J +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.Ct4J ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.Ct4J ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-s= parse-to-pipe.sh.Ct4J' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.Ct4J +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.Ct4J ++ cd /tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.Ct4J ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_sparse_support_ + test 0 =3D 0 + t=3Dsparse.24356 + dd bs=3D1 seek=3D128K of=3Dsparse.24356 ++ du -sk sparse.24356 + set x 128 sparse.24356 + kb_size=3D128 + rm -f sparse.24356 + test 128 -ge 128 + skip_ 'this file system does not support sparse files' + warn_ 'sparse-to-pipe.sh: skipped test: this file system does not suppo= rt sparse files' + case $IFS in + printf '%s\n' 'sparse-to-pipe.sh: skipped test: this file system does n= ot support sparse files' sparse-to-pipe.sh: skipped test: this file system does not support sparse= files + test 9 =3D 2 + printf '%s\n' 'sparse-to-pipe.sh: skipped test: this file system does n= ot support sparse files' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.Ct4J + rm -rf /tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.Ct4J + exit 77 SKIP tests/cp/sparse-to-pipe.sh (exit status: 77) SKIP: tests/df/df-symlink =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-df-symlink.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-df-symlink.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.vQzs +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.vQzs ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.vQzs ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-d= f-symlink.sh.vQzs' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.vQzs +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.vQzs ++ cd /tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.vQzs ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ df + test yes =3D yes + local i + for i in '$*' + env df --version df (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Paul Eggert. ++ df --out=3Dsource . ++ tail -n1 + disk=3Dswap + ln -s swap symlink + df --out=3Dsource,target swap df: 'swap': No such file or directory + skip_ 'cannot get info for swap' + warn_ 'df-symlink.sh: skipped test: cannot get info for swap' + case $IFS in + printf '%s\n' 'df-symlink.sh: skipped test: cannot get info for swap' df-symlink.sh: skipped test: cannot get info for swap + test 9 =3D 2 + printf '%s\n' 'df-symlink.sh: skipped test: cannot get info for swap' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.vQzs + rm -rf /tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.vQzs + exit 77 SKIP tests/df/df-symlink.sh (exit status: 77) SKIP: tests/df/no-mtab-status =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-no-mtab-status.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-no-mtab-status.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.XhOb +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.XhOb ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.XhOb ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-n= o-mtab-status.sh.XhOb' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.XhOb +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.XhOb ++ cd /tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.XhOb ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ df + test yes =3D yes + local i + for i in '$*' + env df --version df (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Paul Eggert. + require_gcc_shared_ + gcc_shared_ - d.so -xc + local in=3D- + local out=3Dd.so + shift 2 + gcc -std=3Dgnu99 -Wall -shared --std=3Dgnu99 -fPIC -O2 -xc - -o d.so -l= dl + rm -f d.so + timeout 10 df timeout: warning: timer_create: Not owner Filesystem 1K-blocks Used Available Use% Mounte= d on rpool/ROOT/s10u08 99089367 3949464 95139904 4% / swap 4846044 968 4845076 1% /etc/s= vc/volatile rpool/ROOT/s10u08/var 96395928 1256025 95139904 2% /var swap 4965400 120324 4845076 3% /tmp swap 4845112 36 4845076 1% /var/r= un rpool/export 95139927 23 95139904 1% /expor= t rpool/export/home 95143835 3932 95139904 1% /expor= t/home rpool/pkgs 95140033 130 95139904 1% /pkgs rpool/pkgs/32-bit 95141775 1872 95139904 1% /pkgs/= 32-bit rpool/pkgs/32-bit/release 101769165 6629261 95139904 7% /pkgs/= 32-bit/release rpool/pkgs/32-bit/release/ARCHIVE 101325707 6185803 95139904 7% /pkgs/= 32-bit/release/ARCHIVE rpool/pkgs/64-bit 95139927 23 95139904 1% /pkgs/= 64-bit rpool/pkgs/64-bit/release 95139927 23 95139904 1% /pkgs/= 64-bit/release rpool/pkgs/64-bit/release/ARCHIVE 95139925 21 95139904 1% /pkgs/= 64-bit/release/ARCHIVE rpool/pkgs/release 95145061 5157 95139904 1% /pkgs/= release rpool/pkgs/release/ARCHIVE 95139925 21 95139904 1% /pkgs/= release/ARCHIVE rpool 95139938 34 95139904 1% /rpool= + grep '^#define HAVE_MNTENT_H 1' /tmp/32-bit/coreutils-8.24/lib/config.h= + skip_ 'no mntent.h available to confirm the interface' + warn_ 'no-mtab-status.sh: skipped test: no mntent.h available to confir= m the interface' + case $IFS in + printf '%s\n' 'no-mtab-status.sh: skipped test: no mntent.h available t= o confirm the interface' no-mtab-status.sh: skipped test: no mntent.h available to confirm the int= erface + test 9 =3D 2 + printf '%s\n' 'no-mtab-status.sh: skipped test: no mntent.h available t= o confirm the interface' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.XhOb + rm -rf /tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.XhOb + exit 77 SKIP tests/df/no-mtab-status.sh (exit status: 77) SKIP: tests/df/skip-duplicates =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-skip-duplicates.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-skip-duplicates.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.hjbj +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.hjbj ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.hjbj ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-s= kip-duplicates.sh.hjbj' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.hjbj +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.hjbj ++ cd /tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.hjbj ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ df + test yes =3D yes + local i + for i in '$*' + env df --version df (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Paul Eggert. + require_gcc_shared_ + gcc_shared_ - d.so -xc + local in=3D- + local out=3Dd.so + shift 2 + gcc -std=3Dgnu99 -Wall -shared --std=3Dgnu99 -fPIC -O2 -xc - -o d.so -l= dl + rm -f d.so + df --local Filesystem 1K-blocks Used Available Use% Mounte= d on rpool/ROOT/s10u08 99089367 3949464 95139904 4% / swap 4846436 968 4845468 1% /etc/s= vc/volatile rpool/ROOT/s10u08/var 96395928 1256025 95139904 2% /var swap 4965804 120336 4845468 3% /tmp swap 4845504 36 4845468 1% /var/r= un rpool/export 95139927 23 95139904 1% /expor= t rpool/export/home 95143835 3932 95139904 1% /expor= t/home rpool/pkgs 95140033 130 95139904 1% /pkgs rpool/pkgs/32-bit 95141775 1872 95139904 1% /pkgs/= 32-bit rpool/pkgs/32-bit/release 101769165 6629261 95139904 7% /pkgs/= 32-bit/release rpool/pkgs/32-bit/release/ARCHIVE 101325707 6185803 95139904 7% /pkgs/= 32-bit/release/ARCHIVE rpool/pkgs/64-bit 95139927 23 95139904 1% /pkgs/= 64-bit rpool/pkgs/64-bit/release 95139927 23 95139904 1% /pkgs/= 64-bit/release rpool/pkgs/64-bit/release/ARCHIVE 95139925 21 95139904 1% /pkgs/= 64-bit/release/ARCHIVE rpool/pkgs/release 95145061 5157 95139904 1% /pkgs/= release rpool/pkgs/release/ARCHIVE 95139925 21 95139904 1% /pkgs/= release/ARCHIVE rpool 95139938 34 95139904 1% /rpool= ++ df --local --output=3Dtarget ++ grep /. ++ head -n1 + export CU_NONROOT_FS=3D/etc/svc/volatile + CU_NONROOT_FS=3D/etc/svc/volatile ++ df --local --output=3Dtarget ++ grep /. ++ tail -n+2 ++ head -n1 + export CU_REMOTE_FS=3D/var + CU_REMOTE_FS=3D/var + unique_entries=3D1 + test -z /etc/svc/volatile ++ expr 1 + 1 + unique_entries=3D2 + test -z /var ++ expr 2 + 2 + unique_entries=3D4 + grep '^#define HAVE_MNTENT_H 1' /tmp/32-bit/coreutils-8.24/lib/config.h= + skip_ 'no mntent.h available to confirm the interface' + warn_ 'skip-duplicates.sh: skipped test: no mntent.h available to confi= rm the interface' + case $IFS in + printf '%s\n' 'skip-duplicates.sh: skipped test: no mntent.h available = to confirm the interface' skip-duplicates.sh: skipped test: no mntent.h available to confirm the in= terface + test 9 =3D 2 + printf '%s\n' 'skip-duplicates.sh: skipped test: no mntent.h available = to confirm the interface' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.hjbj + rm -rf /tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.hjbj + exit 77 SKIP tests/df/skip-duplicates.sh (exit status: 77) SKIP: tests/df/skip-rootfs =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-skip-rootfs.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-skip-rootfs.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.4K18 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.4K18 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.4K18 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:08 /tmp/32-bit/coreutils-8.24/gt-s= kip-rootfs.sh.4K18' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.4K18 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.4K18 ++ cd /tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.4K18 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ df + test yes =3D yes + local i + for i in '$*' + env df --version df (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Paul Eggert. + timeout 10 df timeout: warning: timer_create: Not owner Filesystem 1K-blocks Used Available Use% Mounte= d on rpool/ROOT/s10u08 99089367 3949464 95139904 4% / swap 4846024 968 4845056 1% /etc/s= vc/volatile rpool/ROOT/s10u08/var 96395928 1256025 95139904 2% /var swap 4965404 120348 4845056 3% /tmp swap 4845092 36 4845056 1% /var/r= un rpool/export 95139927 23 95139904 1% /expor= t rpool/export/home 95143835 3932 95139904 1% /expor= t/home rpool/pkgs 95140033 130 95139904 1% /pkgs rpool/pkgs/32-bit 95141775 1872 95139904 1% /pkgs/= 32-bit rpool/pkgs/32-bit/release 101769165 6629261 95139904 7% /pkgs/= 32-bit/release rpool/pkgs/32-bit/release/ARCHIVE 101325707 6185803 95139904 7% /pkgs/= 32-bit/release/ARCHIVE rpool/pkgs/64-bit 95139927 23 95139904 1% /pkgs/= 64-bit rpool/pkgs/64-bit/release 95139927 23 95139904 1% /pkgs/= 64-bit/release rpool/pkgs/64-bit/release/ARCHIVE 95139925 21 95139904 1% /pkgs/= 64-bit/release/ARCHIVE rpool/pkgs/release 95145061 5157 95139904 1% /pkgs/= release rpool/pkgs/release/ARCHIVE 95139925 21 95139904 1% /pkgs/= release/ARCHIVE rpool 95139938 34 95139904 1% /rpool= + df -a + grep '^rootfs' out + skip_ 'no rootfs in mtab' + warn_ 'skip-rootfs.sh: skipped test: no rootfs in mtab' + case $IFS in + printf '%s\n' 'skip-rootfs.sh: skipped test: no rootfs in mtab' skip-rootfs.sh: skipped test: no rootfs in mtab + test 9 =3D 2 + printf '%s\n' 'skip-rootfs.sh: skipped test: no rootfs in mtab' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.4K18 + rm -rf /tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.4K18 + exit 77 SKIP tests/df/skip-rootfs.sh (exit status: 77) SKIP: tests/dd/direct =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-direct.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-direct.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-direct.sh.gJdx +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-direct.sh.gJdx ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-direct.sh.gJdx ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-d= irect.sh.gJdx' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-direct.sh.gJdx +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-direct.sh.gJdx ++ cd /tmp/32-bit/coreutils-8.24/gt-direct.sh.gJdx ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ dd + test yes =3D yes + local i + for i in '$*' + env dd --version dd (coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + truncate -s 8192 in + dd if=3Din oflag=3Ddirect of=3Dout + skip_ 'this file system lacks support for O_DIRECT' + warn_ 'direct.sh: skipped test: this file system lacks support for O_DI= RECT' + case $IFS in + printf '%s\n' 'direct.sh: skipped test: this file system lacks support = for O_DIRECT' direct.sh: skipped test: this file system lacks support for O_DIRECT + test 9 =3D 2 + printf '%s\n' 'direct.sh: skipped test: this file system lacks support = for O_DIRECT' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-direct.sh.gJdx + rm -rf /tmp/32-bit/coreutils-8.24/gt-direct.sh.gJdx + exit 77 SKIP tests/dd/direct.sh (exit status: 77) SKIP: tests/dd/skip-seek-past-file =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-skip-seek-past-file.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-skip-seek-past-file.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.BlFj +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.BlFj ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.BlFj ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-s= kip-seek-past-file.sh.BlFj' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.BlFj +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.BlFj ++ cd /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.BlFj ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ dd + test yes =3D yes + local i + for i in '$*' + env dd --version dd (coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_sparse_support_ + test 0 =3D 0 + t=3Dsparse.26065 + dd bs=3D1 seek=3D128K of=3Dsparse.26065 ++ du -sk sparse.26065 + set x 128 sparse.26065 + kb_size=3D128 + rm -f sparse.26065 + test 128 -ge 128 + skip_ 'this file system does not support sparse files' + warn_ 'skip-seek-past-file.sh: skipped test: this file system does not = support sparse files' + case $IFS in + printf '%s\n' 'skip-seek-past-file.sh: skipped test: this file system d= oes not support sparse files' skip-seek-past-file.sh: skipped test: this file system does not support s= parse files + test 9 =3D 2 + printf '%s\n' 'skip-seek-past-file.sh: skipped test: this file system d= oes not support sparse files' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.BlF= j + rm -rf /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.BlFj + exit 77 SKIP tests/dd/skip-seek-past-file.sh (exit status: 77) SKIP: tests/dd/sparse =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sparse.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sparse.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sparse.sh.3m5z +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sparse.sh.3m5z ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sparse.sh.3m5z ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-s= parse.sh.3m5z' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sparse.sh.3m5z +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sparse.sh.3m5z ++ cd /tmp/32-bit/coreutils-8.24/gt-sparse.sh.3m5z ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ dd + test yes =3D yes + local i + for i in '$*' + env dd --version dd (coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + is_local_dir_ . + test 1 =3D 1 + df --local . + require_sparse_support_ + test 0 =3D 0 + t=3Dsparse.26129 + dd bs=3D1 seek=3D128K of=3Dsparse.26129 ++ du -sk sparse.26129 + set x 128 sparse.26129 + kb_size=3D128 + rm -f sparse.26129 + test 128 -ge 128 + skip_ 'this file system does not support sparse files' + warn_ 'sparse.sh: skipped test: this file system does not support spars= e files' + case $IFS in + printf '%s\n' 'sparse.sh: skipped test: this file system does not suppo= rt sparse files' sparse.sh: skipped test: this file system does not support sparse files + test 9 =3D 2 + printf '%s\n' 'sparse.sh: skipped test: this file system does not suppo= rt sparse files' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sparse.sh.3m5z + rm -rf /tmp/32-bit/coreutils-8.24/gt-sparse.sh.3m5z + exit 77 SKIP tests/dd/sparse.sh (exit status: 77) SKIP: tests/du/2g =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-2g.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-2g.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-2g.sh.3xEe +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-2g.sh.3xEe ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-2g.sh.3xEe ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-2= g.sh.3xEe' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-2g.sh.3xEe +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-2g.sh.3xEe ++ cd /tmp/32-bit/coreutils-8.24/gt-2g.sh.3xEe ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ '2g.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' '2g.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' 2g.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' '2g.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-2g.sh.3xEe + rm -rf /tmp/32-bit/coreutils-8.24/gt-2g.sh.3xEe + exit 77 SKIP tests/du/2g.sh (exit status: 77) SKIP: tests/du/8gb =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-8gb.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-8gb.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-8gb.sh.cc0R +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-8gb.sh.cc0R ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-8gb.sh.cc0R ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-8= gb.sh.cc0R' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-8gb.sh.cc0R +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-8gb.sh.cc0R ++ cd /tmp/32-bit/coreutils-8.24/gt-8gb.sh.cc0R ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + require_sparse_support_ + test 0 =3D 0 + t=3Dsparse.26585 + dd bs=3D1 seek=3D128K of=3Dsparse.26585 ++ du -sk sparse.26585 + set x 128 sparse.26585 + kb_size=3D128 + rm -f sparse.26585 + test 128 -ge 128 + skip_ 'this file system does not support sparse files' + warn_ '8gb.sh: skipped test: this file system does not support sparse f= iles' + case $IFS in + printf '%s\n' '8gb.sh: skipped test: this file system does not support = sparse files' 8gb.sh: skipped test: this file system does not support sparse files + test 9 =3D 2 + printf '%s\n' '8gb.sh: skipped test: this file system does not support = sparse files' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-8gb.sh.cc0R + rm -rf /tmp/32-bit/coreutils-8.24/gt-8gb.sh.cc0R + exit 77 SKIP tests/du/8gb.sh (exit status: 77) SKIP: tests/du/bigtime =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-bigtime.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-bigtime.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-bigtime.sh.XJ1V +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-bigtime.sh.XJ1V ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-bigtime.sh.XJ1V ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-b= igtime.sh.XJ1V' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-bigtime.sh.XJ1V +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-bigtime.sh.XJ1V ++ cd /tmp/32-bit/coreutils-8.24/gt-bigtime.sh.XJ1V ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + export LC_ALL=3DC + LC_ALL=3DC + export TZ=3DUTC0 + TZ=3DUTC0 + bignum=3D9223372036854775807 + touch -d @9223372036854775807 future + skip_ 'file system cannot represent big time stamps' + warn_ 'bigtime.sh: skipped test: file system cannot represent big time = stamps' + case $IFS in + printf '%s\n' 'bigtime.sh: skipped test: file system cannot represent b= ig time stamps' bigtime.sh: skipped test: file system cannot represent big time stamps + test 9 =3D 2 + printf '%s\n' 'bigtime.sh: skipped test: file system cannot represent b= ig time stamps' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-bigtime.sh.XJ1V + rm -rf /tmp/32-bit/coreutils-8.24/gt-bigtime.sh.XJ1V + exit 77 SKIP tests/du/bigtime.sh (exit status: 77) SKIP: tests/du/fd-leak =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-fd-leak.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-fd-leak.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.48t6 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.48t6 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.48t6 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-f= d-leak.sh.48t6' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.48t6 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.48t6 ++ cd /tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.48t6 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'fd-leak.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'fd-leak.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' fd-leak.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'fd-leak.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.48t6 + rm -rf /tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.48t6 + exit 77 SKIP tests/du/fd-leak.sh (exit status: 77) SKIP: tests/du/move-dir-while-traversing =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-move-dir-while-traversing.sh.X= XXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-move-dir-while-traversing.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.sh.AyHM +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.sh.Ay= HM ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.sh.A= yHM ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-m= ove-dir-while-traversing.sh.AyHM' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.sh.AyHM +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.sh= =2EAyHM ++ cd /tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.sh.AyHM ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + python -m pyinotify -h python: module pyinotify not found + skip_ 'python inotify package not installed' + warn_ 'move-dir-while-traversing.sh: skipped test: python inotify packa= ge not installed' + case $IFS in + printf '%s\n' 'move-dir-while-traversing.sh: skipped test: python inoti= fy package not installed' move-dir-while-traversing.sh: skipped test: python inotify package not in= stalled + test 9 =3D 2 + printf '%s\n' 'move-dir-while-traversing.sh: skipped test: python inoti= fy package not installed' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.= sh.AyHM + rm -rf /tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.sh.AyHM + exit 77 SKIP tests/du/move-dir-while-traversing.sh (exit status: 77) SKIP: tests/id/gnu-zero-uids =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-gnu-zero-uids.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-gnu-zero-uids.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.ijtr +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.ijtr ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.ijtr ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-g= nu-zero-uids.sh.ijtr' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.ijtr +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.ijtr ++ cd /tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.ijtr ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ id + test yes =3D yes + local i + for i in '$*' + env id --version id (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_gnu_ ++ uname + test SunOS =3D GNU + skip_ 'not running on GNU/Hurd' + warn_ 'gnu-zero-uids.sh: skipped test: not running on GNU/Hurd' + case $IFS in + printf '%s\n' 'gnu-zero-uids.sh: skipped test: not running on GNU/Hurd'= gnu-zero-uids.sh: skipped test: not running on GNU/Hurd + test 9 =3D 2 + printf '%s\n' 'gnu-zero-uids.sh: skipped test: not running on GNU/Hurd'= + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.ijtr + rm -rf /tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.ijtr + exit 77 SKIP tests/id/gnu-zero-uids.sh (exit status: 77) SKIP: tests/id/no-context =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-no-context.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-no-context.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-no-context.sh.Cc0l +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-no-context.sh.Cc0l ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-no-context.sh.Cc0l ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-n= o-context.sh.Cc0l' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-no-context.sh.Cc0l +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-no-context.sh.Cc0l ++ cd /tmp/32-bit/coreutils-8.24/gt-no-context.sh.Cc0l ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ id + test yes =3D yes + local i + for i in '$*' + env id --version id (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'no-context.sh: skipped test: this system lacks SELinux support' + case $IFS in + printf '%s\n' 'no-context.sh: skipped test: this system lacks SELinux s= upport' no-context.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'no-context.sh: skipped test: this system lacks SELinux s= upport' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-no-context.sh.Cc0l + rm -rf /tmp/32-bit/coreutils-8.24/gt-no-context.sh.Cc0l + exit 77 SKIP tests/id/no-context.sh (exit status: 77) SKIP: tests/id/context =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-context.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-context.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-context.sh.vItO +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-context.sh.vItO ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-context.sh.vItO ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-c= ontext.sh.vItO' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-context.sh.vItO +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-context.sh.vItO ++ cd /tmp/32-bit/coreutils-8.24/gt-context.sh.vItO ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ id + test yes =3D yes + local i + for i in '$*' + env id --version id (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'context.sh: skipped test: this system lacks SELinux support' + case $IFS in + printf '%s\n' 'context.sh: skipped test: this system lacks SELinux supp= ort' context.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'context.sh: skipped test: this system lacks SELinux supp= ort' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-context.sh.vItO + rm -rf /tmp/32-bit/coreutils-8.24/gt-context.sh.vItO + exit 77 SKIP tests/id/context.sh (exit status: 77) SKIP: tests/id/setgid =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-setgid.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-setgid.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-setgid.sh.rbR7 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-setgid.sh.rbR7 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-setgid.sh.rbR7 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-s= etgid.sh.rbR7' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-setgid.sh.rbR7 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-setgid.sh.rbR7 ++ cd /tmp/32-bit/coreutils-8.24/gt-setgid.sh.rbR7 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ id + test yes =3D yes + local i + for i in '$*' + env id --version id (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'setgid.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'setgid.sh: skipped test: must be run as root' setgid.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'setgid.sh: skipped test: must be run as root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-setgid.sh.rbR7 + rm -rf /tmp/32-bit/coreutils-8.24/gt-setgid.sh.rbR7 + exit 77 SKIP tests/id/setgid.sh (exit status: 77) SKIP: tests/id/smack =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-smack.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-smack.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-smack.sh.g2kk +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-smack.sh.g2kk ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-smack.sh.g2kk ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-s= mack.sh.g2kk' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-smack.sh.g2kk +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-smack.sh.g2kk ++ cd /tmp/32-bit/coreutils-8.24/gt-smack.sh.g2kk ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ id + test yes =3D yes + local i + for i in '$*' + env id --version id (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_smack_ + grep 'smackfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SMACK support' + warn_ 'smack.sh: skipped test: this system lacks SMACK support' + case $IFS in + printf '%s\n' 'smack.sh: skipped test: this system lacks SMACK support'= smack.sh: skipped test: this system lacks SMACK support + test 9 =3D 2 + printf '%s\n' 'smack.sh: skipped test: this system lacks SMACK support'= + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-smack.sh.g2kk + rm -rf /tmp/32-bit/coreutils-8.24/gt-smack.sh.g2kk + exit 77 SKIP tests/id/smack.sh (exit status: 77) SKIP: tests/install/install-C-selinux =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-install-C-selinux.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-install-C-selinux.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.faNA +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.faNA ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.faNA ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-i= nstall-C-selinux.sh.faNA' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.faNA +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.faNA ++ cd /tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.faNA ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ginstall + test yes =3D yes + local i + for i in '$*' + env ginstall --version install (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'install-C-selinux.sh: skipped test: this system lacks SELinux su= pport' + case $IFS in + printf '%s\n' 'install-C-selinux.sh: skipped test: this system lacks SE= Linux support' install-C-selinux.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'install-C-selinux.sh: skipped test: this system lacks SE= Linux support' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.faNA + rm -rf /tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.faNA + exit 77 SKIP tests/install/install-C-selinux.sh (exit status: 77) FAIL: tests/ls/infloop =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-infloop.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-infloop.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-infloop.sh.IUvP +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-infloop.sh.IUvP ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-infloop.sh.IUvP ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-i= nfloop.sh.IUvP' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-infloop.sh.IUvP +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-infloop.sh.IUvP ++ cd /tmp/32-bit/coreutils-8.24/gt-infloop.sh.IUvP ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ls + test yes =3D yes + local i + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + mkdir loop + ln -s ../loop loop/sub + cat + cat + timeout 10 ls -RL loop + test 2 =3D 2 + compare exp-err err + compare_dev_null_ exp-err err + test 2 =3D 2 + test xexp-err =3D x/dev/null + test xerr =3D x/dev/null + return 2 + case $? in + compare_ exp-err err + diff -u exp-err err + cat diff.out --- exp-err Sat Jul 18 02:09:19 2015 +++ err Sat Jul 18 02:09:19 2015 @@ -1,1 +1,2 @@ +timeout: warning: timer_create: Not owner ls: loop/sub: not listing already-listed directory + rm -f diff.out + false + fail=3D1 + compare exp-out out + compare_dev_null_ exp-out out + test 2 =3D 2 + test xexp-out =3D x/dev/null + test xout =3D x/dev/null + return 2 + case $? in + compare_ exp-out out + diff -u exp-out out + rm -f diff.out + true + Exit 1 + set +e + exit 1 + exit 1 + remove_tmp_ + __st=3D1 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-infloop.sh.IUvP + rm -rf /tmp/32-bit/coreutils-8.24/gt-infloop.sh.IUvP + exit 1 FAIL tests/ls/infloop.sh (exit status: 1) SKIP: tests/ls/no-cap =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-no-cap.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-no-cap.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-no-cap.sh.ZTlT +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-no-cap.sh.ZTlT ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-no-cap.sh.ZTlT ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-n= o-cap.sh.ZTlT' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-no-cap.sh.ZTlT +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-no-cap.sh.ZTlT ++ cd /tmp/32-bit/coreutils-8.24/gt-no-cap.sh.ZTlT ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ls + test yes =3D yes + local i + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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_strace_ capget + test 1 =3D 1 + strace -V + skip_ 'no strace program' + warn_ 'no-cap.sh: skipped test: no strace program' + case $IFS in + printf '%s\n' 'no-cap.sh: skipped test: no strace program' no-cap.sh: skipped test: no strace program + test 9 =3D 2 + printf '%s\n' 'no-cap.sh: skipped test: no strace program' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-no-cap.sh.ZTlT + rm -rf /tmp/32-bit/coreutils-8.24/gt-no-cap.sh.ZTlT + exit 77 SKIP tests/ls/no-cap.sh (exit status: 77) SKIP: tests/ls/slink-acl =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-slink-acl.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-slink-acl.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.WXNT +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.WXNT ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.WXNT ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-s= link-acl.sh.WXNT' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.WXNT +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.WXNT ++ cd /tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.WXNT ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ls + test yes =3D yes + local i + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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_setfacl_ + local d=3Dacltestdir_ + mkdir acltestdir_ + local f=3D0 + setfacl -d -m user::r-x acltestdir_ user::r-x: failed to get acl count get acl count error: No such file or directory + f=3D1 + rm -rf acltestdir_ + test 1 =3D 0 + skip_ 'setfacl does not work on the current file system' + warn_ 'slink-acl.sh: skipped test: setfacl does not work on the current= file system' + case $IFS in + printf '%s\n' 'slink-acl.sh: skipped test: setfacl does not work on the= current file system' slink-acl.sh: skipped test: setfacl does not work on the current file sys= tem + test 9 =3D 2 + printf '%s\n' 'slink-acl.sh: skipped test: setfacl does not work on the= current file system' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.WXNT + rm -rf /tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.WXNT + exit 77 SKIP tests/ls/slink-acl.sh (exit status: 77) SKIP: tests/ls/stat-dtype =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-stat-dtype.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-stat-dtype.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-stat-dtype.sh.x0C0 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-stat-dtype.sh.x0C0 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-stat-dtype.sh.x0C0 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-s= tat-dtype.sh.x0C0' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-stat-dtype.sh.x0C0 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-stat-dtype.sh.x0C0 ++ cd /tmp/32-bit/coreutils-8.24/gt-stat-dtype.sh.x0C0 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ls + test yes =3D yes + local i + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + mkdir -p c/d + chmod a-x c ++ ls -p c + test 'Xls: cannot access c/d: Permission denied d' '!=3D' Xd/ + skip_ ''\''.'\'' is not on a suitable file system for this test' + warn_ 'stat-dtype.sh: skipped test: '\''.'\'' is not on a suitable file= system for this test' + case $IFS in + printf '%s\n' 'stat-dtype.sh: skipped test: '\''.'\'' is not on a suita= ble file system for this test' stat-dtype.sh: skipped test: '.' is not on a suitable file system for thi= s test + test 9 =3D 2 + printf '%s\n' 'stat-dtype.sh: skipped test: '\''.'\'' is not on a suita= ble file system for this test' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-stat-dtype.sh.x0C0 + rm -rf /tmp/32-bit/coreutils-8.24/gt-stat-dtype.sh.x0C0 + exit 77 SKIP tests/ls/stat-dtype.sh (exit status: 77) SKIP: tests/ls/stat-free-color =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-stat-free-color.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-stat-free-color.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.2DrW +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.2DrW ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.2DrW ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-s= tat-free-color.sh.2DrW' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.2DrW +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.2DrW ++ cd /tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.2DrW ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ls + test yes =3D yes + local i + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + stats=3Dstat,lstat,stat64,lstat64,newfstatat + require_strace_ stat,lstat,stat64,lstat64,newfstatat + test 1 =3D 1 + strace -V + skip_ 'no strace program' + warn_ 'stat-free-color.sh: skipped test: no strace program' + case $IFS in + printf '%s\n' 'stat-free-color.sh: skipped test: no strace program' stat-free-color.sh: skipped test: no strace program + test 9 =3D 2 + printf '%s\n' 'stat-free-color.sh: skipped test: no strace program' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.2DrW + rm -rf /tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.2DrW + exit 77 SKIP tests/ls/stat-free-color.sh (exit status: 77) SKIP: tests/ls/stat-free-symlinks =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-stat-free-symlinks.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-stat-free-symlinks.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.yLtb +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.yLtb ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.yLtb ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-s= tat-free-symlinks.sh.yLtb' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.yLtb +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.yLtb ++ cd /tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.yLtb ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ls + test yes =3D yes + local i + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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_strace_ stat + test 1 =3D 1 + strace -V + skip_ 'no strace program' + warn_ 'stat-free-symlinks.sh: skipped test: no strace program' + case $IFS in + printf '%s\n' 'stat-free-symlinks.sh: skipped test: no strace program' stat-free-symlinks.sh: skipped test: no strace program + test 9 =3D 2 + printf '%s\n' 'stat-free-symlinks.sh: skipped test: no strace program' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.yLtb= + rm -rf /tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.yLtb + exit 77 SKIP tests/ls/stat-free-symlinks.sh (exit status: 77) SKIP: tests/mkdir/p-acl =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-p-acl.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-p-acl.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-p-acl.sh.V2Uq +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-p-acl.sh.V2Uq ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-p-acl.sh.V2Uq ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-p= -acl.sh.V2Uq' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-p-acl.sh.V2Uq +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-p-acl.sh.V2Uq ++ cd /tmp/32-bit/coreutils-8.24/gt-p-acl.sh.V2Uq ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_setfacl_ + local d=3Dacltestdir_ + mkdir acltestdir_ + local f=3D0 + setfacl -d -m user::r-x acltestdir_ user::r-x: failed to get acl count get acl count error: No such file or directory + f=3D1 + rm -rf acltestdir_ + test 1 =3D 0 + skip_ 'setfacl does not work on the current file system' + warn_ 'p-acl.sh: skipped test: setfacl does not work on the current fil= e system' + case $IFS in + printf '%s\n' 'p-acl.sh: skipped test: setfacl does not work on the cur= rent file system' p-acl.sh: skipped test: setfacl does not work on the current file system + test 9 =3D 2 + printf '%s\n' 'p-acl.sh: skipped test: setfacl does not work on the cur= rent file system' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-p-acl.sh.V2Uq + rm -rf /tmp/32-bit/coreutils-8.24/gt-p-acl.sh.V2Uq + exit 77 SKIP tests/mkdir/p-acl.sh (exit status: 77) SKIP: tests/mkdir/selinux =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-selinux.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-selinux.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-selinux.sh.JBU1 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-selinux.sh.JBU1 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-selinux.sh.JBU1 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-s= elinux.sh.JBU1' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-selinux.sh.JBU1 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-selinux.sh.JBU1 ++ cd /tmp/32-bit/coreutils-8.24/gt-selinux.sh.JBU1 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir mkfifo mknod + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mkfifo --version mkfifo (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mknod --version mknod (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_selinux_enforcing_ + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'selinux.sh: skipped test: this system lacks SELinux support' + case $IFS in + printf '%s\n' 'selinux.sh: skipped test: this system lacks SELinux supp= ort' selinux.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'selinux.sh: skipped test: this system lacks SELinux supp= ort' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-selinux.sh.JBU1 + rm -rf /tmp/32-bit/coreutils-8.24/gt-selinux.sh.JBU1 + exit 77 SKIP tests/mkdir/selinux.sh (exit status: 77) SKIP: tests/mkdir/restorecon =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-restorecon.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-restorecon.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-restorecon.sh.0C3W +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-restorecon.sh.0C3W ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-restorecon.sh.0C3W ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-r= estorecon.sh.0C3W' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-restorecon.sh.0C3W +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-restorecon.sh.0C3W ++ cd /tmp/32-bit/coreutils-8.24/gt-restorecon.sh.0C3W ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir mknod mkfifo + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mknod --version mknod (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mkfifo --version mkfifo (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'restorecon.sh: skipped test: this system lacks SELinux support' + case $IFS in + printf '%s\n' 'restorecon.sh: skipped test: this system lacks SELinux s= upport' restorecon.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'restorecon.sh: skipped test: this system lacks SELinux s= upport' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-restorecon.sh.0C3W + rm -rf /tmp/32-bit/coreutils-8.24/gt-restorecon.sh.0C3W + exit 77 SKIP tests/mkdir/restorecon.sh (exit status: 77) SKIP: tests/mkdir/smack-no-root =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-smack-no-root.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-smack-no-root.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.FGTM +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.FGTM ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.FGTM ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-s= mack-no-root.sh.FGTM' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.FGTM +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.FGTM ++ cd /tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.FGTM ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir mkfifo mknod + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mkfifo --version mkfifo (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mknod --version mknod (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_smack_ + grep 'smackfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SMACK support' + warn_ 'smack-no-root.sh: skipped test: this system lacks SMACK support'= + case $IFS in + printf '%s\n' 'smack-no-root.sh: skipped test: this system lacks SMACK = support' smack-no-root.sh: skipped test: this system lacks SMACK support + test 9 =3D 2 + printf '%s\n' 'smack-no-root.sh: skipped test: this system lacks SMACK = support' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.FGTM + rm -rf /tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.FGTM + exit 77 SKIP tests/mkdir/smack-no-root.sh (exit status: 77) SKIP: tests/mkdir/smack-root =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-smack-root.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-smack-root.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-smack-root.sh.GWYN +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.GWYN ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.GWYN ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-s= mack-root.sh.GWYN' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.GWYN +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-smack-root.sh.GWYN ++ cd /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.GWYN ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir mkfifo mknod + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mkfifo --version mkfifo (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mknod --version mknod (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_smack_ + grep 'smackfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SMACK support' + warn_ 'smack-root.sh: skipped test: this system lacks SMACK support' + case $IFS in + printf '%s\n' 'smack-root.sh: skipped test: this system lacks SMACK sup= port' smack-root.sh: skipped test: this system lacks SMACK support + test 9 =3D 2 + printf '%s\n' 'smack-root.sh: skipped test: this system lacks SMACK sup= port' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.GWYN + rm -rf /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.GWYN + exit 77 SKIP tests/mkdir/smack-root.sh (exit status: 77) SKIP: tests/mv/acl =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-acl.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-acl.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-acl.sh.TFEk +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-acl.sh.TFEk ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-acl.sh.TFEk ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-a= cl.sh.TFEk' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-acl.sh.TFEk +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-acl.sh.TFEk ++ cd /tmp/32-bit/coreutils-8.24/gt-acl.sh.TFEk ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv getfacl setfacl + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env getfacl --version getfacl: illegal option -- version usage: getfacl [-ad] file ...=20 + for i in '$*' + env setfacl --version usage: setfacl [-r] -f aclfile file ... setfacl [-r] -d acl_entries file ... setfacl [-r] -m acl_entries file ... setfacl [-r] -s acl_entries file ... + require_acl_ + getfacl --version + skip_ 'This test requires getfacl and setfacl.' + warn_ 'acl.sh: skipped test: This test requires getfacl and setfacl.' + case $IFS in + printf '%s\n' 'acl.sh: skipped test: This test requires getfacl and set= facl.' acl.sh: skipped test: This test requires getfacl and setfacl. + test 9 =3D 2 + printf '%s\n' 'acl.sh: skipped test: This test requires getfacl and set= facl.' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-acl.sh.TFEk + rm -rf /tmp/32-bit/coreutils-8.24/gt-acl.sh.TFEk + exit 77 SKIP tests/mv/acl.sh (exit status: 77) SKIP: tests/mv/atomic =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-atomic.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-atomic.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-atomic.sh.OXrP +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-atomic.sh.OXrP ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-atomic.sh.OXrP ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-a= tomic.sh.OXrP' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-atomic.sh.OXrP +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-atomic.sh.OXrP ++ cd /tmp/32-bit/coreutils-8.24/gt-atomic.sh.OXrP ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_strace_ unlink + test 1 =3D 1 + strace -V + skip_ 'no strace program' + warn_ 'atomic.sh: skipped test: no strace program' + case $IFS in + printf '%s\n' 'atomic.sh: skipped test: no strace program' atomic.sh: skipped test: no strace program + test 9 =3D 2 + printf '%s\n' 'atomic.sh: skipped test: no strace program' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-atomic.sh.OXrP + rm -rf /tmp/32-bit/coreutils-8.24/gt-atomic.sh.OXrP + exit 77 SKIP tests/mv/atomic.sh (exit status: 77) SKIP: tests/mv/atomic2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-atomic2.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-atomic2.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-atomic2.sh.Z5PK +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-atomic2.sh.Z5PK ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-atomic2.sh.Z5PK ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-a= tomic2.sh.Z5PK' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-atomic2.sh.Z5PK +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-atomic2.sh.Z5PK ++ cd /tmp/32-bit/coreutils-8.24/gt-atomic2.sh.Z5PK ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_strace_ unlink + test 1 =3D 1 + strace -V + skip_ 'no strace program' + warn_ 'atomic2.sh: skipped test: no strace program' + case $IFS in + printf '%s\n' 'atomic2.sh: skipped test: no strace program' atomic2.sh: skipped test: no strace program + test 9 =3D 2 + printf '%s\n' 'atomic2.sh: skipped test: no strace program' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-atomic2.sh.Z5PK + rm -rf /tmp/32-bit/coreutils-8.24/gt-atomic2.sh.Z5PK + exit 77 SKIP tests/mv/atomic2.sh (exit status: 77) SKIP: tests/mv/leak-fd =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-leak-fd.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-leak-fd.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.ESEq +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.ESEq ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.ESEq ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-l= eak-fd.sh.E-Eq' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.ESEq +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.ESEq ++ cd /tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.ESEq ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + . /tmp/32-bit/coreutils-8.24/tests/other-fs-tmpdir ++ test '' =3D set ++ CANDIDATE_TMP_DIRS=3D'/tmp /tmp /dev/shm /var/tmp /usr/tmp /home/softw= are' ++ other_partition_tmpdir=3D +++ stat -c %d . ++ dot_mount_point=3D76283906 ++ for d in '$CANDIDATE_TMP_DIRS' ++ test -d /tmp +++ stat -L -c %d /tmp ++ d_mount_point=3D76283906 ++ test x76283906 =3D x76283906 ++ continue ++ for d in '$CANDIDATE_TMP_DIRS' ++ test -d /tmp +++ stat -L -c %d /tmp ++ d_mount_point=3D76283906 ++ test x76283906 =3D x76283906 ++ continue ++ for d in '$CANDIDATE_TMP_DIRS' ++ test -d /dev/shm ++ continue ++ for d in '$CANDIDATE_TMP_DIRS' ++ test -d /var/tmp +++ stat -L -c %d /var/tmp ++ d_mount_point=3D47513603 ++ test x47513603 =3D x76283906 ++ mkdir /var/tmp/tmp8636 ++ other_partition_tmpdir=3D/var/tmp/tmp8636 ++ break ++ test -z /var/tmp/tmp8636 ++ test yes =3D yes ++ set -x + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'leak-fd.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'leak-fd.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' leak-fd.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'leak-fd.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + rm -rf /var/tmp/tmp8636 + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.ESEq + rm -rf /tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.ESEq + exit 77 SKIP tests/mv/leak-fd.sh (exit status: 77) SKIP: tests/mv/symlink-onto-hardlink-to-self =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-symlink-onto-hardlink-to-self.= sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-symlink-onto-hardlink-to-self.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-self.sh.PI= gj +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-self.s= h.PIgj ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-self.= sh.PIgj ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-s= ymlink-onto-hardlink-to-self.sh.PIgj' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-self.sh.P= Igj +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-sel= f.sh.PIgj ++ cd /tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-self.sh.PIgj= ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + touch f + ln -s f s2 + ln s2 s1 + test -h s1 + skip_ your kernel or file system cannot create a hard link to a symlink= + warn_ 'symlink-onto-hardlink-to-self.sh: skipped test: your' kernel or = file system cannot create a hard link to a symlink + case $IFS in + printf '%s\n' 'symlink-onto-hardlink-to-self.sh: skipped test: your ker= nel or file system cannot create a hard link to a symlink' symlink-onto-hardlink-to-self.sh: skipped test: your kernel or file syste= m cannot create a hard link to a symlink + test 9 =3D 2 + printf '%s\n' 'symlink-onto-hardlink-to-self.sh: skipped test: your ker= nel or file system cannot create a hard link to a symlink' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-s= elf.sh.PIgj + rm -rf /tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-self.sh.P= Igj + exit 77 SKIP tests/mv/symlink-onto-hardlink-to-self.sh (exit status: 77) SKIP: tests/tail-2/big-4gb =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-big-4gb.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-big-4gb.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.1tGn +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.1tGn ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.1tGn ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-b= ig-4gb.sh.1tGn' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.1tGn +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.1tGn ++ cd /tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.1tGn ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'big-4gb.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'big-4gb.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' big-4gb.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'big-4gb.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.1tGn + rm -rf /tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.1tGn + exit 77 SKIP tests/tail-2/big-4gb.sh (exit status: 77) FAIL: tests/tail-2/follow-name =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-follow-name.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-follow-name.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-follow-name.sh.LX8F +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-follow-name.sh.LX8F ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-follow-name.sh.LX8F ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-f= ollow-name.sh.LX8F' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-follow-name.sh.LX8F +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-follow-name.sh.LX8F ++ cd /tmp/32-bit/coreutils-8.24/gt-follow-name.sh.LX8F ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + cat + timeout 10 tail --follow=3Dname no-such + test 1 =3D 1 + sed '/inotify cannot be used/d' err + mv k err + compare exp err + compare_dev_null_ exp err + test 2 =3D 2 + test xexp =3D x/dev/null + test xerr =3D x/dev/null + return 2 + case $? in + compare_ exp err + diff -u exp err + cat diff.out --- exp Sat Jul 18 02:09:35 2015 +++ err Sat Jul 18 02:09:35 2015 @@ -1,2 +1,3 @@ +timeout: warning: timer_create: Not owner tail: cannot open 'no-such' for reading: No such file or directory tail: no files remaining + rm -f diff.out + false + fail=3D1 + Exit 1 + set +e + exit 1 + exit 1 + remove_tmp_ + __st=3D1 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-follow-name.sh.LX8F + rm -rf /tmp/32-bit/coreutils-8.24/gt-follow-name.sh.LX8F + exit 1 FAIL tests/tail-2/follow-name.sh (exit status: 1) FAIL: tests/tail-2/follow-stdin =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-follow-stdin.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-follow-stdin.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-follow-stdin.sh.VuLd +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-follow-stdin.sh.VuLd ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-follow-stdin.sh.VuLd ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-f= ollow-stdin.sh.VuLd' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-follow-stdin.sh.VuLd +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-follow-stdin.sh.VuLd ++ cd /tmp/32-bit/coreutils-8.24/gt-follow-stdin.sh.VuLd ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + echo line + echo line + timeout 1 tail -f + test 124 =3D 124 + compare /dev/null err + compare_dev_null_ /dev/null err + test 2 =3D 2 + test x/dev/null =3D x/dev/null + test -s err + emit_diff_u_header_ /dev/null err + printf '%s\n' 'diff -u /dev/null err' '--- /dev/null 1970-01-01' '+++ e= rr 1970-01-01' diff -u /dev/null err --- /dev/null 1970-01-01 +++ err 1970-01-01 + sed 's/^/+/' err +timeout: warning: timer_create: Not owner + return 1 + case $? in + return 1 + fail=3D1 + compare exp out + compare_dev_null_ exp out + test 2 =3D 2 + test xexp =3D x/dev/null + test xout =3D x/dev/null + return 2 + case $? in + compare_ exp out + diff -u exp out + rm -f diff.out + true + Exit 1 + set +e + exit 1 + exit 1 + remove_tmp_ + __st=3D1 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-follow-stdin.sh.VuLd + rm -rf /tmp/32-bit/coreutils-8.24/gt-follow-stdin.sh.VuLd + exit 1 FAIL tests/tail-2/follow-stdin.sh (exit status: 1) SKIP: tests/touch/no-dereference =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-no-dereference.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-no-dereference.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-no-dereference.sh.byOn +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-no-dereference.sh.byOn ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-no-dereference.sh.byOn ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-n= o-dereference.sh.byOn' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-no-dereference.sh.byOn +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-no-dereference.sh.byOn ++ cd /tmp/32-bit/coreutils-8.24/gt-no-dereference.sh.byOn ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ touch + test yes =3D yes + local i + for i in '$*' + env touch --version touch (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + ln -s nowhere dangling + touch file + ln -s file link + returns_ 1 touch -h no-file + compare /dev/null err + compare_dev_null_ /dev/null err + test 2 =3D 2 + test x/dev/null =3D x/dev/null + test -s err + emit_diff_u_header_ /dev/null err + printf '%s\n' 'diff -u /dev/null err' '--- /dev/null 1970-01-01' '+++ e= rr 1970-01-01' diff -u /dev/null err --- /dev/null 1970-01-01 +++ err 1970-01-01 + sed 's/^/+/' err +touch: setting times of 'no-file': No such file or directory + return 1 + case $? in + return 1 + touch -h -c no-file + compare /dev/null err + compare_dev_null_ /dev/null err + test 2 =3D 2 + test x/dev/null =3D x/dev/null + test -s err + return 0 + return 0 + touch -h file + touch -h -r dangling file + test -f nowhere + grep '^#define HAVE_UTIMENSAT 1' /tmp/32-bit/coreutils-8.24/lib/config.= h + grep '^#define HAVE_LUTIMES 1' /tmp/32-bit/coreutils-8.24/lib/config.h + skip_ 'this system lacks the utimensat function' + warn_ 'no-dereference.sh: skipped test: this system lacks the utimensat= function' + case $IFS in + printf '%s\n' 'no-dereference.sh: skipped test: this system lacks the u= timensat function' no-dereference.sh: skipped test: this system lacks the utimensat function= + test 9 =3D 2 + printf '%s\n' 'no-dereference.sh: skipped test: this system lacks the u= timensat function' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-no-dereference.sh.byOn + rm -rf /tmp/32-bit/coreutils-8.24/gt-no-dereference.sh.byOn + exit 77 SKIP tests/touch/no-dereference.sh (exit status: 77) SKIP: tests/chown/basic =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-basic.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-basic.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-basic.sh.fqLw +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-basic.sh.fqLw ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-basic.sh.fqLw ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-b= asic.sh.fqLw' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-basic.sh.fqLw +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-basic.sh.fqLw ++ cd /tmp/32-bit/coreutils-8.24/gt-basic.sh.fqLw ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chown + test yes =3D yes + local i + for i in '$*' + env chown --version chown (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'basic.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'basic.sh: skipped test: must be run as root' basic.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'basic.sh: skipped test: must be run as root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-basic.sh.fqLw + rm -rf /tmp/32-bit/coreutils-8.24/gt-basic.sh.fqLw + exit 77 SKIP tests/chown/basic.sh (exit status: 77) SKIP: tests/cp/cp-a-selinux =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-cp-a-selinux.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-cp-a-selinux.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.oNue +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.oNue ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.oNue ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-c= p-a-selinux.sh.oNue' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.oNue +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.oNue ++ cd /tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.oNue ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'cp-a-selinux.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'cp-a-selinux.sh: skipped test: must be run as root' cp-a-selinux.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'cp-a-selinux.sh: skipped test: must be run as root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.oNue + rm -rf /tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.oNue + exit 77 SKIP tests/cp/cp-a-selinux.sh (exit status: 77) SKIP: tests/cp/preserve-gid =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-preserve-gid.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-preserve-gid.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-preserve-gid.sh.OXm9 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-preserve-gid.sh.OXm9 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-preserve-gid.sh.OXm9 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-p= reserve-gid.sh.OXm9' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-preserve-gid.sh.OXm9 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-preserve-gid.sh.OXm9 ++ cd /tmp/32-bit/coreutils-8.24/gt-preserve-gid.sh.OXm9 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'preserve-gid.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'preserve-gid.sh: skipped test: must be run as root' preserve-gid.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'preserve-gid.sh: skipped test: must be run as root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-preserve-gid.sh.OXm9 + rm -rf /tmp/32-bit/coreutils-8.24/gt-preserve-gid.sh.OXm9 + exit 77 SKIP tests/cp/preserve-gid.sh (exit status: 77) SKIP: tests/cp/special-bits =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-special-bits.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-special-bits.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-special-bits.sh.tkmE +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-special-bits.sh.tkmE ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-special-bits.sh.tkmE ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-s= pecial-bits.sh.tkmE' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-special-bits.sh.tkmE +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-special-bits.sh.tkmE ++ cd /tmp/32-bit/coreutils-8.24/gt-special-bits.sh.tkmE ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'special-bits.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'special-bits.sh: skipped test: must be run as root' special-bits.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'special-bits.sh: skipped test: must be run as root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-special-bits.sh.tkmE + rm -rf /tmp/32-bit/coreutils-8.24/gt-special-bits.sh.tkmE + exit 77 SKIP tests/cp/special-bits.sh (exit status: 77) SKIP: tests/cp/cp-mv-enotsup-xattr =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-cp-mv-enotsup-xattr.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-cp-mv-enotsup-xattr.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.9IKD +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.9IKD ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.9IKD ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-c= p-mv-enotsup-xattr.sh.9IKD' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.9IKD +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.9IKD ++ cd /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.9IKD ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp mv + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'cp-mv-enotsup-xattr.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'cp-mv-enotsup-xattr.sh: skipped test: must be run as roo= t' cp-mv-enotsup-xattr.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'cp-mv-enotsup-xattr.sh: skipped test: must be run as roo= t' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.9IK= D + rm -rf /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.9IKD + exit 77 SKIP tests/cp/cp-mv-enotsup-xattr.sh (exit status: 77) SKIP: tests/cp/capability =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-capability.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-capability.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-capability.sh.ZDoC +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-capability.sh.ZDoC ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-capability.sh.ZDoC ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-c= apability.sh.ZDoC' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-capability.sh.ZDoC +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-capability.sh.ZDoC ++ cd /tmp/32-bit/coreutils-8.24/gt-capability.sh.ZDoC ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'capability.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'capability.sh: skipped test: must be run as root' capability.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'capability.sh: skipped test: must be run as root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-capability.sh.ZDoC + rm -rf /tmp/32-bit/coreutils-8.24/gt-capability.sh.ZDoC + exit 77 SKIP tests/cp/capability.sh (exit status: 77) SKIP: tests/cp/sparse-fiemap =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sparse-fiemap.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sparse-fiemap.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.zE4W +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.zE4W ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.zE4W ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-s= parse-fiemap.sh.zE4W' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.zE4W +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.zE4W ++ cd /tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.zE4W ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_perl_ + : perl + perl -e 'use warnings' + touch fiemap_chk + fiemap_capable_ fiemap_chk + python + python /tmp/32-bit/coreutils-8.24/tests/fiemap-capable fiemap_chk + skip_ 'current file system has insufficient FIEMAP support' + warn_ 'sparse-fiemap.sh: skipped test: current file system has insuffic= ient FIEMAP support' + case $IFS in + printf '%s\n' 'sparse-fiemap.sh: skipped test: current file system has = insufficient FIEMAP support' sparse-fiemap.sh: skipped test: current file system has insufficient FIEM= AP support + test 9 =3D 2 + printf '%s\n' 'sparse-fiemap.sh: skipped test: current file system has = insufficient FIEMAP support' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.zE4W + rm -rf /tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.zE4W + exit 77 SKIP tests/cp/sparse-fiemap.sh (exit status: 77) SKIP: tests/dd/skip-seek-past-dev =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-skip-seek-past-dev.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-skip-seek-past-dev.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.8wa6 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.8wa6 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.8wa6 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-s= kip-seek-past-dev.sh.8wa6' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.8wa6 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.8wa6 ++ cd /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.8wa6 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ dd + test yes =3D yes + local i + for i in '$*' + env dd --version dd (coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'skip-seek-past-dev.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'skip-seek-past-dev.sh: skipped test: must be run as root= ' skip-seek-past-dev.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'skip-seek-past-dev.sh: skipped test: must be run as root= ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.8wa6= + rm -rf /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.8wa6 + exit 77 SKIP tests/dd/skip-seek-past-dev.sh (exit status: 77) SKIP: tests/df/problematic-chars =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-problematic-chars.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-problematic-chars.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.qC3j +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.qC3j ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.qC3j ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-p= roblematic-chars.sh.qC3j' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.qC3j +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.qC3j ++ cd /tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.qC3j ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ df + test yes =3D yes + local i + for i in '$*' + env df --version df (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Paul Eggert. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'problematic-chars.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'problematic-chars.sh: skipped test: must be run as root'= problematic-chars.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'problematic-chars.sh: skipped test: must be run as root'= + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.qC3j + rm -rf /tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.qC3j + exit 77 SKIP tests/df/problematic-chars.sh (exit status: 77) SKIP: tests/df/over-mount-device =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-over-mount-device.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-over-mount-device.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.YS5e +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.YS5e ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.YS5e ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-o= ver-mount-device.sh.Y-5e' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.YS5e +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.YS5e ++ cd /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.YS5e ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ df + test yes =3D yes + local i + for i in '$*' + env df --version df (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Paul Eggert. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'over-mount-device.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'over-mount-device.sh: skipped test: must be run as root'= over-mount-device.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'over-mount-device.sh: skipped test: must be run as root'= + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.YS5e + rm -rf /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.YS5e + exit 77 SKIP tests/df/over-mount-device.sh (exit status: 77) SKIP: tests/du/bind-mount-dir-cycle =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-bind-mount-dir-cycle.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-bind-mount-dir-cycle.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.xxcb +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.xxcb ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.xxcb ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-b= ind-mount-dir-cycle.sh.xxcb' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.xxcb +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.xxcb= ++ cd /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.xxcb ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'bind-mount-dir-cycle.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'bind-mount-dir-cycle.sh: skipped test: must be run as ro= ot' bind-mount-dir-cycle.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'bind-mount-dir-cycle.sh: skipped test: must be run as ro= ot' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.xx= cb + rm -rf /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.xxcb + exit 77 SKIP tests/du/bind-mount-dir-cycle.sh (exit status: 77) SKIP: tests/du/bind-mount-dir-cycle-v2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-bind-mount-dir-cycle-v2.sh.XXX= X +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-bind-mount-dir-cycle-v2.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh.FZvf +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh.FZvf= ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh.FZv= f ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-b= ind-mount-dir-cycle-v2.sh.FZvf' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh.FZvf +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh.F= Zvf ++ cd /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh.FZvf ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'bind-mount-dir-cycle-v2.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'bind-mount-dir-cycle-v2.sh: skipped test: must be run as= root' bind-mount-dir-cycle-v2.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'bind-mount-dir-cycle-v2.sh: skipped test: must be run as= root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh= =2EFZvf + rm -rf /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh.FZvf + exit 77 SKIP tests/du/bind-mount-dir-cycle-v2.sh (exit status: 77) SKIP: tests/id/setgid =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-setgid.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-setgid.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-setgid.sh.rbR7 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-setgid.sh.rbR7 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-setgid.sh.rbR7 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-s= etgid.sh.rbR7' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-setgid.sh.rbR7 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-setgid.sh.rbR7 ++ cd /tmp/32-bit/coreutils-8.24/gt-setgid.sh.rbR7 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ id + test yes =3D yes + local i + for i in '$*' + env id --version id (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'setgid.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'setgid.sh: skipped test: must be run as root' setgid.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'setgid.sh: skipped test: must be run as root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-setgid.sh.rbR7 + rm -rf /tmp/32-bit/coreutils-8.24/gt-setgid.sh.rbR7 + exit 77 SKIP tests/id/setgid.sh (exit status: 77) SKIP: tests/install/install-C-root =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-install-C-root.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-install-C-root.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-install-C-root.sh.AEck +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-install-C-root.sh.AEck ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-install-C-root.sh.AEck ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-i= nstall-C-root.sh.AEck' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-install-C-root.sh.AEck +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-install-C-root.sh.AEck ++ cd /tmp/32-bit/coreutils-8.24/gt-install-C-root.sh.AEck ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ginstall + test yes =3D yes + local i + for i in '$*' + env ginstall --version install (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'install-C-root.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'install-C-root.sh: skipped test: must be run as root' install-C-root.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'install-C-root.sh: skipped test: must be run as root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-install-C-root.sh.AEck + rm -rf /tmp/32-bit/coreutils-8.24/gt-install-C-root.sh.AEck + exit 77 SKIP tests/install/install-C-root.sh (exit status: 77) SKIP: tests/ls/capability =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-capability.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-capability.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-capability.sh.HisR +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-capability.sh.HisR ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-capability.sh.HisR ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-c= apability.sh.HisR' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-capability.sh.HisR +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-capability.sh.HisR ++ cd /tmp/32-bit/coreutils-8.24/gt-capability.sh.HisR ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ls + test yes =3D yes + local i + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'capability.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'capability.sh: skipped test: must be run as root' capability.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'capability.sh: skipped test: must be run as root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-capability.sh.HisR + rm -rf /tmp/32-bit/coreutils-8.24/gt-capability.sh.HisR + exit 77 SKIP tests/ls/capability.sh (exit status: 77) SKIP: tests/ls/nameless-uid =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-nameless-uid.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-nameless-uid.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-nameless-uid.sh.WJVZ +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-nameless-uid.sh.WJVZ ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-nameless-uid.sh.WJVZ ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-n= ameless-uid.sh.WJVZ' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-nameless-uid.sh.WJVZ +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-nameless-uid.sh.WJVZ ++ cd /tmp/32-bit/coreutils-8.24/gt-nameless-uid.sh.WJVZ ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ls + test yes =3D yes + local i + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'nameless-uid.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'nameless-uid.sh: skipped test: must be run as root' nameless-uid.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'nameless-uid.sh: skipped test: must be run as root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-nameless-uid.sh.WJVZ + rm -rf /tmp/32-bit/coreutils-8.24/gt-nameless-uid.sh.WJVZ + exit 77 SKIP tests/ls/nameless-uid.sh (exit status: 77) SKIP: tests/misc/chcon =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-chcon.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-chcon.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-chcon.sh.1SRM +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-chcon.sh.1SRM ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-chcon.sh.1SRM ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-c= hcon.sh.1-RM' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-chcon.sh.1SRM +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-chcon.sh.1SRM ++ cd /tmp/32-bit/coreutils-8.24/gt-chcon.sh.1SRM ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chcon + test yes =3D yes + local i + for i in '$*' + env chcon --version chcon (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'chcon.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'chcon.sh: skipped test: must be run as root' chcon.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'chcon.sh: skipped test: must be run as root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-chcon.sh.1SRM + rm -rf /tmp/32-bit/coreutils-8.24/gt-chcon.sh.1SRM + exit 77 SKIP tests/misc/chcon.sh (exit status: 77) SKIP: tests/misc/chroot-credentials =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-chroot-credentials.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-chroot-credentials.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-chroot-credentials.sh.k32W +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-chroot-credentials.sh.k32W ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-chroot-credentials.sh.k32W ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-c= hroot-credentials.sh.k32W' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-chroot-credentials.sh.k32W +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-chroot-credentials.sh.k32W ++ cd /tmp/32-bit/coreutils-8.24/gt-chroot-credentials.sh.k32W ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chroot + test yes =3D yes + local i + for i in '$*' + env chroot --version chroot (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'chroot-credentials.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'chroot-credentials.sh: skipped test: must be run as root= ' chroot-credentials.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'chroot-credentials.sh: skipped test: must be run as root= ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-chroot-credentials.sh.k32W= + rm -rf /tmp/32-bit/coreutils-8.24/gt-chroot-credentials.sh.k32W + exit 77 SKIP tests/misc/chroot-credentials.sh (exit status: 77) SKIP: tests/misc/selinux =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-selinux.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-selinux.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-selinux.sh.h4of +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-selinux.sh.h4of ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-selinux.sh.h4of ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-s= elinux.sh.h4of' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-selinux.sh.h4of +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-selinux.sh.h4of ++ cd /tmp/32-bit/coreutils-8.24/gt-selinux.sh.h4of ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chcon cp ls mv stat + test yes =3D yes + local i + for i in '$*' + env chcon --version chcon (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env stat --version stat (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'selinux.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'selinux.sh: skipped test: must be run as root' selinux.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'selinux.sh: skipped test: must be run as root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-selinux.sh.h4of + rm -rf /tmp/32-bit/coreutils-8.24/gt-selinux.sh.h4of + exit 77 SKIP tests/misc/selinux.sh (exit status: 77) SKIP: tests/misc/truncate-owned-by-other =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-truncate-owned-by-other.sh.XXX= X +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-truncate-owned-by-other.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-truncate-owned-by-other.sh.k0mH +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-truncate-owned-by-other.sh.k0mH= ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-truncate-owned-by-other.sh.k0m= H ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= runcate-owned-by-other.sh.k0mH' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-truncate-owned-by-other.sh.k0mH +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-truncate-owned-by-other.sh.k= 0mH ++ cd /tmp/32-bit/coreutils-8.24/gt-truncate-owned-by-other.sh.k0mH ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ truncate + test yes =3D yes + local i + for i in '$*' + env truncate --version truncate (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by P'adraig Brady. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'truncate-owned-by-other.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'truncate-owned-by-other.sh: skipped test: must be run as= root' truncate-owned-by-other.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'truncate-owned-by-other.sh: skipped test: must be run as= root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-truncate-owned-by-other.sh= =2Ek0mH + rm -rf /tmp/32-bit/coreutils-8.24/gt-truncate-owned-by-other.sh.k0mH + exit 77 SKIP tests/misc/truncate-owned-by-other.sh (exit status: 77) SKIP: tests/mkdir/writable-under-readonly =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-writable-under-readonly.sh.XXX= X +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-writable-under-readonly.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh.E36T +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh.E36T= ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh.E36= T ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-w= ritable-under-readonly.sh.E36T' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh.E36T +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh.E= 36T ++ cd /tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh.E36T ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'writable-under-readonly.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'writable-under-readonly.sh: skipped test: must be run as= root' writable-under-readonly.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'writable-under-readonly.sh: skipped test: must be run as= root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh= =2EE36T + rm -rf /tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh.E36T + exit 77 SKIP tests/mkdir/writable-under-readonly.sh (exit status: 77) SKIP: tests/mkdir/smack-root =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-smack-root.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-smack-root.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-smack-root.sh.GWYN +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.GWYN ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.GWYN ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-s= mack-root.sh.GWYN' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.GWYN +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-smack-root.sh.GWYN ++ cd /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.GWYN ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir mkfifo mknod + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mkfifo --version mkfifo (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mknod --version mknod (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_smack_ + grep 'smackfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SMACK support' + warn_ 'smack-root.sh: skipped test: this system lacks SMACK support' + case $IFS in + printf '%s\n' 'smack-root.sh: skipped test: this system lacks SMACK sup= port' smack-root.sh: skipped test: this system lacks SMACK support + test 9 =3D 2 + printf '%s\n' 'smack-root.sh: skipped test: this system lacks SMACK sup= port' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.GWYN + rm -rf /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.GWYN + exit 77 SKIP tests/mkdir/smack-root.sh (exit status: 77) SKIP: tests/mv/hardlink-case =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-hardlink-case.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-hardlink-case.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.uQe3 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.uQe3 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.uQe3 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-h= ardlink-case.sh.uQe3' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.uQe3 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.uQe3 ++ cd /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.uQe3 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'hardlink-case.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'hardlink-case.sh: skipped test: must be run as root' hardlink-case.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'hardlink-case.sh: skipped test: must be run as root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.uQe3 + rm -rf /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.uQe3 + exit 77 SKIP tests/mv/hardlink-case.sh (exit status: 77) SKIP: tests/mv/sticky-to-xpart =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sticky-to-xpart.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sticky-to-xpart.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sticky-to-xpart.sh.MBAT +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sticky-to-xpart.sh.MBAT ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sticky-to-xpart.sh.MBAT ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-s= ticky-to-xpart.sh.MBAT' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sticky-to-xpart.sh.MBAT +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sticky-to-xpart.sh.MBAT ++ cd /tmp/32-bit/coreutils-8.24/gt-sticky-to-xpart.sh.MBAT ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'sticky-to-xpart.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'sticky-to-xpart.sh: skipped test: must be run as root' sticky-to-xpart.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'sticky-to-xpart.sh: skipped test: must be run as root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sticky-to-xpart.sh.MBAT + rm -rf /tmp/32-bit/coreutils-8.24/gt-sticky-to-xpart.sh.MBAT + exit 77 SKIP tests/mv/sticky-to-xpart.sh (exit status: 77) SKIP: tests/rm/fail-2eperm =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-fail-2eperm.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-fail-2eperm.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-fail-2eperm.sh.jOOF +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-fail-2eperm.sh.jOOF ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-fail-2eperm.sh.jOOF ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-f= ail-2eperm.sh.jOOF' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-fail-2eperm.sh.jOOF +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-fail-2eperm.sh.jOOF ++ cd /tmp/32-bit/coreutils-8.24/gt-fail-2eperm.sh.jOOF ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'fail-2eperm.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'fail-2eperm.sh: skipped test: must be run as root' fail-2eperm.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'fail-2eperm.sh: skipped test: must be run as root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-fail-2eperm.sh.jOOF + rm -rf /tmp/32-bit/coreutils-8.24/gt-fail-2eperm.sh.jOOF + exit 77 SKIP tests/rm/fail-2eperm.sh (exit status: 77) SKIP: tests/rm/no-give-up =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-no-give-up.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-no-give-up.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-no-give-up.sh.XE1g +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-no-give-up.sh.XE1g ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-no-give-up.sh.XE1g ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-n= o-give-up.sh.XE1g' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-no-give-up.sh.XE1g +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-no-give-up.sh.XE1g ++ cd /tmp/32-bit/coreutils-8.24/gt-no-give-up.sh.XE1g ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'no-give-up.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'no-give-up.sh: skipped test: must be run as root' no-give-up.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'no-give-up.sh: skipped test: must be run as root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-no-give-up.sh.XE1g + rm -rf /tmp/32-bit/coreutils-8.24/gt-no-give-up.sh.XE1g + exit 77 SKIP tests/rm/no-give-up.sh (exit status: 77) SKIP: tests/rm/one-file-system =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-one-file-system.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-one-file-system.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.804x +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.804x ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.804x ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-o= ne-file-system.sh.804x' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.804x +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.804x ++ cd /tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.804x ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'one-file-system.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'one-file-system.sh: skipped test: must be run as root' one-file-system.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'one-file-system.sh: skipped test: must be run as root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.804x + rm -rf /tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.804x + exit 77 SKIP tests/rm/one-file-system.sh (exit status: 77) SKIP: tests/rm/read-only =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-read-only.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-read-only.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-read-only.sh.Lf68 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-read-only.sh.Lf68 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-read-only.sh.Lf68 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-r= ead-only.sh.Lf68' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-read-only.sh.Lf68 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-read-only.sh.Lf68 ++ cd /tmp/32-bit/coreutils-8.24/gt-read-only.sh.Lf68 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'read-only.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'read-only.sh: skipped test: must be run as root' read-only.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'read-only.sh: skipped test: must be run as root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-read-only.sh.Lf68 + rm -rf /tmp/32-bit/coreutils-8.24/gt-read-only.sh.Lf68 + exit 77 SKIP tests/rm/read-only.sh (exit status: 77) SKIP: tests/tail-2/append-only =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-append-only.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-append-only.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-append-only.sh.6wg0 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-append-only.sh.6wg0 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-append-only.sh.6wg0 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-a= ppend-only.sh.6wg0' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-append-only.sh.6wg0 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-append-only.sh.6wg0 ++ cd /tmp/32-bit/coreutils-8.24/gt-append-only.sh.6wg0 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'append-only.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'append-only.sh: skipped test: must be run as root' append-only.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'append-only.sh: skipped test: must be run as root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-append-only.sh.6wg0 + rm -rf /tmp/32-bit/coreutils-8.24/gt-append-only.sh.6wg0 + exit 77 SKIP tests/tail-2/append-only.sh (exit status: 77) SKIP: tests/touch/now-owned-by-other =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-now-owned-by-other.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-now-owned-by-other.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-now-owned-by-other.sh.HcDO +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-now-owned-by-other.sh.HcDO ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-now-owned-by-other.sh.HcDO ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-n= ow-owned-by-other.sh.HcDO' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-now-owned-by-other.sh.HcDO +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-now-owned-by-other.sh.HcDO ++ cd /tmp/32-bit/coreutils-8.24/gt-now-owned-by-other.sh.HcDO ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ touch + test yes =3D yes + local i + for i in '$*' + env touch --version touch (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D100 + case $my_uid in + return 1 + skip_ 'must be run as root' + warn_ 'now-owned-by-other.sh: skipped test: must be run as root' + case $IFS in + printf '%s\n' 'now-owned-by-other.sh: skipped test: must be run as root= ' now-owned-by-other.sh: skipped test: must be run as root + test 9 =3D 2 + printf '%s\n' 'now-owned-by-other.sh: skipped test: must be run as root= ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-now-owned-by-other.sh.HcDO= + rm -rf /tmp/32-bit/coreutils-8.24/gt-now-owned-by-other.sh.HcDO + exit 77 SKIP tests/touch/now-owned-by-other.sh (exit status: 77) SKIP: tests/factor/t00 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t00.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t00.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t00.sh.ywYk +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t00.sh.ywYk ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t00.sh.ywYk ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 00.sh.ywYk' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t00.sh.ywYk +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t00.sh.ywYk ++ cd /tmp/32-bit/coreutils-8.24/gt-t00.sh.ywYk ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't00.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't00.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t00.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't00.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t00.sh.ywYk + rm -rf /tmp/32-bit/coreutils-8.24/gt-t00.sh.ywYk + exit 77 SKIP tests/factor/t00.sh (exit status: 77) SKIP: tests/factor/t01 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t01.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t01.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t01.sh.m4gB +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t01.sh.m4gB ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t01.sh.m4gB ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 01.sh.m4gB' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t01.sh.m4gB +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t01.sh.m4gB ++ cd /tmp/32-bit/coreutils-8.24/gt-t01.sh.m4gB ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't01.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't01.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t01.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't01.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t01.sh.m4gB + rm -rf /tmp/32-bit/coreutils-8.24/gt-t01.sh.m4gB + exit 77 SKIP tests/factor/t01.sh (exit status: 77) SKIP: tests/factor/t02 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t02.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t02.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t02.sh.0TXl +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t02.sh.0TXl ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t02.sh.0TXl ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 02.sh.0TXl' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t02.sh.0TXl +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t02.sh.0TXl ++ cd /tmp/32-bit/coreutils-8.24/gt-t02.sh.0TXl ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't02.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't02.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t02.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't02.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t02.sh.0TXl + rm -rf /tmp/32-bit/coreutils-8.24/gt-t02.sh.0TXl + exit 77 SKIP tests/factor/t02.sh (exit status: 77) SKIP: tests/factor/t03 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t03.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t03.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t03.sh.As8a +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t03.sh.As8a ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t03.sh.As8a ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 03.sh.As8a' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t03.sh.As8a +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t03.sh.As8a ++ cd /tmp/32-bit/coreutils-8.24/gt-t03.sh.As8a ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't03.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't03.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t03.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't03.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t03.sh.As8a + rm -rf /tmp/32-bit/coreutils-8.24/gt-t03.sh.As8a + exit 77 SKIP tests/factor/t03.sh (exit status: 77) SKIP: tests/factor/t04 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t04.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t04.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t04.sh.5IlZ +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t04.sh.5IlZ ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t04.sh.5IlZ ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 04.sh.5IlZ' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t04.sh.5IlZ +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t04.sh.5IlZ ++ cd /tmp/32-bit/coreutils-8.24/gt-t04.sh.5IlZ ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't04.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't04.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t04.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't04.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t04.sh.5IlZ + rm -rf /tmp/32-bit/coreutils-8.24/gt-t04.sh.5IlZ + exit 77 SKIP tests/factor/t04.sh (exit status: 77) SKIP: tests/factor/t05 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t05.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t05.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t05.sh.Zefr +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t05.sh.Zefr ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t05.sh.Zefr ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 05.sh.Zefr' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t05.sh.Zefr +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t05.sh.Zefr ++ cd /tmp/32-bit/coreutils-8.24/gt-t05.sh.Zefr ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't05.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't05.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t05.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't05.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t05.sh.Zefr + rm -rf /tmp/32-bit/coreutils-8.24/gt-t05.sh.Zefr + exit 77 SKIP tests/factor/t05.sh (exit status: 77) SKIP: tests/factor/t06 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t06.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t06.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t06.sh.yRD9 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t06.sh.yRD9 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t06.sh.yRD9 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 06.sh.yRD9' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t06.sh.yRD9 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t06.sh.yRD9 ++ cd /tmp/32-bit/coreutils-8.24/gt-t06.sh.yRD9 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't06.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't06.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t06.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't06.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t06.sh.yRD9 + rm -rf /tmp/32-bit/coreutils-8.24/gt-t06.sh.yRD9 + exit 77 SKIP tests/factor/t06.sh (exit status: 77) SKIP: tests/factor/t07 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t07.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t07.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t07.sh.mLRT +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t07.sh.mLRT ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t07.sh.mLRT ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 07.sh.mLRT' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t07.sh.mLRT +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t07.sh.mLRT ++ cd /tmp/32-bit/coreutils-8.24/gt-t07.sh.mLRT ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't07.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't07.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t07.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't07.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t07.sh.mLRT + rm -rf /tmp/32-bit/coreutils-8.24/gt-t07.sh.mLRT + exit 77 SKIP tests/factor/t07.sh (exit status: 77) SKIP: tests/factor/t08 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t08.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t08.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t08.sh.OT2G +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t08.sh.OT2G ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t08.sh.OT2G ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 08.sh.OT2G' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t08.sh.OT2G +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t08.sh.OT2G ++ cd /tmp/32-bit/coreutils-8.24/gt-t08.sh.OT2G ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't08.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't08.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t08.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't08.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t08.sh.OT2G + rm -rf /tmp/32-bit/coreutils-8.24/gt-t08.sh.OT2G + exit 77 SKIP tests/factor/t08.sh (exit status: 77) SKIP: tests/factor/t09 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t09.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t09.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t09.sh.RVqI +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t09.sh.RVqI ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t09.sh.RVqI ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 09.sh.RVqI' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t09.sh.RVqI +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t09.sh.RVqI ++ cd /tmp/32-bit/coreutils-8.24/gt-t09.sh.RVqI ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't09.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't09.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t09.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't09.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t09.sh.RVqI + rm -rf /tmp/32-bit/coreutils-8.24/gt-t09.sh.RVqI + exit 77 SKIP tests/factor/t09.sh (exit status: 77) SKIP: tests/factor/t10 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t10.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t10.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t10.sh.kzFv +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t10.sh.kzFv ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t10.sh.kzFv ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 10.sh.kzFv' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t10.sh.kzFv +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t10.sh.kzFv ++ cd /tmp/32-bit/coreutils-8.24/gt-t10.sh.kzFv ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't10.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't10.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t10.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't10.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t10.sh.kzFv + rm -rf /tmp/32-bit/coreutils-8.24/gt-t10.sh.kzFv + exit 77 SKIP tests/factor/t10.sh (exit status: 77) SKIP: tests/factor/t11 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t11.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t11.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t11.sh.tgoB +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t11.sh.tgoB ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t11.sh.tgoB ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 11.sh.tgoB' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t11.sh.tgoB +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t11.sh.tgoB ++ cd /tmp/32-bit/coreutils-8.24/gt-t11.sh.tgoB ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't11.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't11.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t11.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't11.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t11.sh.tgoB + rm -rf /tmp/32-bit/coreutils-8.24/gt-t11.sh.tgoB + exit 77 SKIP tests/factor/t11.sh (exit status: 77) SKIP: tests/factor/t12 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t12.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t12.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t12.sh.R25A +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t12.sh.R25A ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t12.sh.R25A ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 12.sh.R25A' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t12.sh.R25A +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t12.sh.R25A ++ cd /tmp/32-bit/coreutils-8.24/gt-t12.sh.R25A ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't12.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't12.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t12.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't12.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t12.sh.R25A + rm -rf /tmp/32-bit/coreutils-8.24/gt-t12.sh.R25A + exit 77 SKIP tests/factor/t12.sh (exit status: 77) SKIP: tests/factor/t13 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t13.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t13.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t13.sh.UCEi +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t13.sh.UCEi ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t13.sh.UCEi ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 13.sh.UCEi' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t13.sh.UCEi +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t13.sh.UCEi ++ cd /tmp/32-bit/coreutils-8.24/gt-t13.sh.UCEi ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't13.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't13.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t13.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't13.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t13.sh.UCEi + rm -rf /tmp/32-bit/coreutils-8.24/gt-t13.sh.UCEi + exit 77 SKIP tests/factor/t13.sh (exit status: 77) SKIP: tests/factor/t14 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t14.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t14.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t14.sh.K19A +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t14.sh.K19A ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t14.sh.K19A ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 14.sh.K19A' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t14.sh.K19A +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t14.sh.K19A ++ cd /tmp/32-bit/coreutils-8.24/gt-t14.sh.K19A ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't14.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't14.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t14.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't14.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t14.sh.K19A + rm -rf /tmp/32-bit/coreutils-8.24/gt-t14.sh.K19A + exit 77 SKIP tests/factor/t14.sh (exit status: 77) SKIP: tests/factor/t15 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t15.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t15.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t15.sh.SJKt +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t15.sh.SJKt ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t15.sh.SJKt ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 15.sh.-JKt' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t15.sh.SJKt +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t15.sh.SJKt ++ cd /tmp/32-bit/coreutils-8.24/gt-t15.sh.SJKt ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't15.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't15.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t15.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't15.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t15.sh.SJKt + rm -rf /tmp/32-bit/coreutils-8.24/gt-t15.sh.SJKt + exit 77 SKIP tests/factor/t15.sh (exit status: 77) SKIP: tests/factor/t16 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t16.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t16.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t16.sh.UBxE +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t16.sh.UBxE ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t16.sh.UBxE ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 16.sh.UBxE' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t16.sh.UBxE +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t16.sh.UBxE ++ cd /tmp/32-bit/coreutils-8.24/gt-t16.sh.UBxE ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't16.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't16.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t16.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't16.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t16.sh.UBxE + rm -rf /tmp/32-bit/coreutils-8.24/gt-t16.sh.UBxE + exit 77 SKIP tests/factor/t16.sh (exit status: 77) SKIP: tests/factor/t17 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t17.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t17.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t17.sh.i3St +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t17.sh.i3St ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t17.sh.i3St ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 17.sh.i3-t' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t17.sh.i3St +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t17.sh.i3St ++ cd /tmp/32-bit/coreutils-8.24/gt-t17.sh.i3St ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't17.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't17.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t17.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't17.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t17.sh.i3St + rm -rf /tmp/32-bit/coreutils-8.24/gt-t17.sh.i3St + exit 77 SKIP tests/factor/t17.sh (exit status: 77) SKIP: tests/factor/t18 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t18.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t18.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t18.sh.0BrN +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t18.sh.0BrN ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t18.sh.0BrN ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 18.sh.0BrN' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t18.sh.0BrN +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t18.sh.0BrN ++ cd /tmp/32-bit/coreutils-8.24/gt-t18.sh.0BrN ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't18.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't18.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t18.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't18.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t18.sh.0BrN + rm -rf /tmp/32-bit/coreutils-8.24/gt-t18.sh.0BrN + exit 77 SKIP tests/factor/t18.sh (exit status: 77) SKIP: tests/factor/t19 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t19.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t19.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t19.sh.afs3 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t19.sh.afs3 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t19.sh.afs3 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 19.sh.afs3' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t19.sh.afs3 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t19.sh.afs3 ++ cd /tmp/32-bit/coreutils-8.24/gt-t19.sh.afs3 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't19.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't19.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t19.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't19.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t19.sh.afs3 + rm -rf /tmp/32-bit/coreutils-8.24/gt-t19.sh.afs3 + exit 77 SKIP tests/factor/t19.sh (exit status: 77) SKIP: tests/factor/t20 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t20.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t20.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t20.sh.piEt +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t20.sh.piEt ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t20.sh.piEt ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 20.sh.piEt' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t20.sh.piEt +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t20.sh.piEt ++ cd /tmp/32-bit/coreutils-8.24/gt-t20.sh.piEt ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't20.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't20.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t20.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't20.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t20.sh.piEt + rm -rf /tmp/32-bit/coreutils-8.24/gt-t20.sh.piEt + exit 77 SKIP tests/factor/t20.sh (exit status: 77) SKIP: tests/factor/t21 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t21.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t21.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t21.sh.oDzm +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t21.sh.oDzm ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t21.sh.oDzm ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 21.sh.oDzm' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t21.sh.oDzm +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t21.sh.oDzm ++ cd /tmp/32-bit/coreutils-8.24/gt-t21.sh.oDzm ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't21.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't21.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t21.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't21.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t21.sh.oDzm + rm -rf /tmp/32-bit/coreutils-8.24/gt-t21.sh.oDzm + exit 77 SKIP tests/factor/t21.sh (exit status: 77) SKIP: tests/factor/t22 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t22.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t22.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t22.sh.5Moa +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t22.sh.5Moa ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t22.sh.5Moa ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 22.sh.5Moa' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t22.sh.5Moa +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t22.sh.5Moa ++ cd /tmp/32-bit/coreutils-8.24/gt-t22.sh.5Moa ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't22.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't22.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t22.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't22.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t22.sh.5Moa + rm -rf /tmp/32-bit/coreutils-8.24/gt-t22.sh.5Moa + exit 77 SKIP tests/factor/t22.sh (exit status: 77) SKIP: tests/factor/t23 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t23.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t23.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t23.sh.Vqv0 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t23.sh.Vqv0 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t23.sh.Vqv0 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 23.sh.Vqv0' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t23.sh.Vqv0 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t23.sh.Vqv0 ++ cd /tmp/32-bit/coreutils-8.24/gt-t23.sh.Vqv0 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't23.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't23.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t23.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't23.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t23.sh.Vqv0 + rm -rf /tmp/32-bit/coreutils-8.24/gt-t23.sh.Vqv0 + exit 77 SKIP tests/factor/t23.sh (exit status: 77) SKIP: tests/factor/t24 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t24.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t24.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t24.sh.P72e +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t24.sh.P72e ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t24.sh.P72e ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 24.sh.P72e' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t24.sh.P72e +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t24.sh.P72e ++ cd /tmp/32-bit/coreutils-8.24/gt-t24.sh.P72e ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't24.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't24.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t24.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't24.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t24.sh.P72e + rm -rf /tmp/32-bit/coreutils-8.24/gt-t24.sh.P72e + exit 77 SKIP tests/factor/t24.sh (exit status: 77) SKIP: tests/factor/t25 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t25.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t25.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t25.sh.6dBN +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t25.sh.6dBN ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t25.sh.6dBN ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 25.sh.6dBN' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t25.sh.6dBN +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t25.sh.6dBN ++ cd /tmp/32-bit/coreutils-8.24/gt-t25.sh.6dBN ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't25.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't25.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t25.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't25.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t25.sh.6dBN + rm -rf /tmp/32-bit/coreutils-8.24/gt-t25.sh.6dBN + exit 77 SKIP tests/factor/t25.sh (exit status: 77) SKIP: tests/factor/t26 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t26.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t26.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t26.sh.exOv +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t26.sh.exOv ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t26.sh.exOv ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 26.sh.exOv' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t26.sh.exOv +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t26.sh.exOv ++ cd /tmp/32-bit/coreutils-8.24/gt-t26.sh.exOv ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't26.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't26.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t26.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't26.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t26.sh.exOv + rm -rf /tmp/32-bit/coreutils-8.24/gt-t26.sh.exOv + exit 77 SKIP tests/factor/t26.sh (exit status: 77) SKIP: tests/factor/t27 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t27.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t27.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t27.sh.9xmh +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t27.sh.9xmh ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t27.sh.9xmh ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 27.sh.9xmh' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t27.sh.9xmh +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t27.sh.9xmh ++ cd /tmp/32-bit/coreutils-8.24/gt-t27.sh.9xmh ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't27.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't27.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t27.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't27.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t27.sh.9xmh + rm -rf /tmp/32-bit/coreutils-8.24/gt-t27.sh.9xmh + exit 77 SKIP tests/factor/t27.sh (exit status: 77) SKIP: tests/factor/t28 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t28.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t28.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t28.sh.3go2 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t28.sh.3go2 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t28.sh.3go2 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 28.sh.3go2' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t28.sh.3go2 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t28.sh.3go2 ++ cd /tmp/32-bit/coreutils-8.24/gt-t28.sh.3go2 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't28.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't28.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t28.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't28.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t28.sh.3go2 + rm -rf /tmp/32-bit/coreutils-8.24/gt-t28.sh.3go2 + exit 77 SKIP tests/factor/t28.sh (exit status: 77) SKIP: tests/factor/t29 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t29.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t29.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t29.sh.p3k2 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t29.sh.p3k2 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t29.sh.p3k2 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 29.sh.p3k2' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t29.sh.p3k2 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t29.sh.p3k2 ++ cd /tmp/32-bit/coreutils-8.24/gt-t29.sh.p3k2 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't29.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't29.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t29.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't29.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t29.sh.p3k2 + rm -rf /tmp/32-bit/coreutils-8.24/gt-t29.sh.p3k2 + exit 77 SKIP tests/factor/t29.sh (exit status: 77) SKIP: tests/factor/t30 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t30.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t30.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t30.sh.IqHw +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t30.sh.IqHw ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t30.sh.IqHw ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 30.sh.IqHw' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t30.sh.IqHw +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t30.sh.IqHw ++ cd /tmp/32-bit/coreutils-8.24/gt-t30.sh.IqHw ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't30.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't30.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t30.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't30.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t30.sh.IqHw + rm -rf /tmp/32-bit/coreutils-8.24/gt-t30.sh.IqHw + exit 77 SKIP tests/factor/t30.sh (exit status: 77) SKIP: tests/factor/t31 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t31.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t31.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t31.sh.1ZZz +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t31.sh.1ZZz ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t31.sh.1ZZz ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 31.sh.1ZZz' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t31.sh.1ZZz +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t31.sh.1ZZz ++ cd /tmp/32-bit/coreutils-8.24/gt-t31.sh.1ZZz ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't31.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't31.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t31.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't31.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t31.sh.1ZZz + rm -rf /tmp/32-bit/coreutils-8.24/gt-t31.sh.1ZZz + exit 77 SKIP tests/factor/t31.sh (exit status: 77) SKIP: tests/factor/t32 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t32.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t32.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t32.sh.4SV4 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t32.sh.4SV4 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t32.sh.4SV4 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 32.sh.4-V4' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t32.sh.4SV4 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t32.sh.4SV4 ++ cd /tmp/32-bit/coreutils-8.24/gt-t32.sh.4SV4 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't32.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't32.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t32.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't32.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t32.sh.4SV4 + rm -rf /tmp/32-bit/coreutils-8.24/gt-t32.sh.4SV4 + exit 77 SKIP tests/factor/t32.sh (exit status: 77) SKIP: tests/factor/t33 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t33.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t33.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t33.sh.sX2Z +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t33.sh.sX2Z ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t33.sh.sX2Z ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 33.sh.sX2Z' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t33.sh.sX2Z +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t33.sh.sX2Z ++ cd /tmp/32-bit/coreutils-8.24/gt-t33.sh.sX2Z ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't33.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't33.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t33.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't33.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t33.sh.sX2Z + rm -rf /tmp/32-bit/coreutils-8.24/gt-t33.sh.sX2Z + exit 77 SKIP tests/factor/t33.sh (exit status: 77) SKIP: tests/factor/t34 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t34.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t34.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t34.sh.CxrO +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t34.sh.CxrO ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t34.sh.CxrO ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 34.sh.CxrO' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t34.sh.CxrO +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t34.sh.CxrO ++ cd /tmp/32-bit/coreutils-8.24/gt-t34.sh.CxrO ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't34.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't34.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t34.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't34.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t34.sh.CxrO + rm -rf /tmp/32-bit/coreutils-8.24/gt-t34.sh.CxrO + exit 77 SKIP tests/factor/t34.sh (exit status: 77) SKIP: tests/factor/t35 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t35.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t35.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t35.sh.6hjY +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t35.sh.6hjY ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t35.sh.6hjY ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 35.sh.6hjY' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t35.sh.6hjY +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t35.sh.6hjY ++ cd /tmp/32-bit/coreutils-8.24/gt-t35.sh.6hjY ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't35.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't35.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t35.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't35.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t35.sh.6hjY + rm -rf /tmp/32-bit/coreutils-8.24/gt-t35.sh.6hjY + exit 77 SKIP tests/factor/t35.sh (exit status: 77) SKIP: tests/factor/t36 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t36.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t36.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t36.sh.s3wB +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t36.sh.s3wB ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t36.sh.s3wB ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:09 /tmp/32-bit/coreutils-8.24/gt-t= 36.sh.s3wB' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t36.sh.s3wB +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t36.sh.s3wB ++ cd /tmp/32-bit/coreutils-8.24/gt-t36.sh.s3wB ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't36.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't36.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t36.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't36.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t36.sh.s3wB + rm -rf /tmp/32-bit/coreutils-8.24/gt-t36.sh.s3wB + exit 77 SKIP tests/factor/t36.sh (exit status: 77) --------------020004060108090304020300 Content-Type: text/plain; charset=ISO-8859-1; name="test-suite.log-monotonic-root" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="test-suite.log-monotonic-root" =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D GNU coreutils 8.24: ./tests/test-suite.log =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # TOTAL: 579 # PASS: 394 # SKIP: 183 # XFAIL: 0 # FAIL: 2 # XPASS: 0 # ERROR: 0 =2E. contents:: :depth: 2 SKIP: tests/tail-2/inotify-race =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-inotify-race.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-inotify-race.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.fxd1 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.fxd1 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.fxd1 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:51 /tmp/32-bit/coreutils-8.24/gt-i= notify-race.sh.fxd1' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.fxd1 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.fxd1 ++ cd /tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.fxd1 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + touch file + touch tail.out + case $(cat gdb.out) in ++ cat gdb.out + skip_ 'can'\''t run gdb' + warn_ 'inotify-race.sh: skipped test: can'\''t run gdb' + case $IFS in + printf '%s\n' 'inotify-race.sh: skipped test: can'\''t run gdb' inotify-race.sh: skipped test: can't run gdb + test 9 =3D 2 + printf '%s\n' 'inotify-race.sh: skipped test: can'\''t run gdb' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + kill + kill + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.fxd1 + rm -rf /tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.fxd1 + exit 77 SKIP tests/tail-2/inotify-race.sh (exit status: 77) SKIP: tests/tail-2/inotify-race2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-inotify-race2.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-inotify-race2.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.7UkS +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.7UkS ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.7UkS ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:51 /tmp/32-bit/coreutils-8.24/gt-i= notify-race2.sh.7Uk-' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.7UkS +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.7UkS ++ cd /tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.7UkS ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + touch file + touch tail.out + case $(cat gdb.out) in ++ cat gdb.out + skip_ 'can'\''t run gdb' + warn_ 'inotify-race2.sh: skipped test: can'\''t run gdb' + case $IFS in + printf '%s\n' 'inotify-race2.sh: skipped test: can'\''t run gdb' inotify-race2.sh: skipped test: can't run gdb + test 9 =3D 2 + printf '%s\n' 'inotify-race2.sh: skipped test: can'\''t run gdb' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + kill + kill + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.7UkS + rm -rf /tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.7UkS + exit 77 SKIP tests/tail-2/inotify-race2.sh (exit status: 77) SKIP: tests/rm/ext3-perf =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-ext3-perf.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-ext3-perf.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.HCua +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.HCua ++++ tr S - ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.HCua +++ perms=3D'drwx------ 2 69 Jul 18 01:51 /tmp/32-bit/coreutils-8.24/gt-e= xt3-perf.sh.HCua' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.HCua +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.HCua ++ cd /tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.HCua ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 'ext3-perf.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 'ext3-perf.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' ext3-perf.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + sed 1q + printf '%s\n' 'ext3-perf.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.HCua + rm -rf /tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.HCua + exit 77 SKIP tests/rm/ext3-perf.sh (exit status: 77) SKIP: tests/rm/cycle =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-cycle.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-cycle.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-cycle.sh.iz8C +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-cycle.sh.iz8C ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-cycle.sh.iz8C ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:51 /tmp/32-bit/coreutils-8.24/gt-c= ycle.sh.iz8C' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-cycle.sh.iz8C +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-cycle.sh.iz8C ++ cd /tmp/32-bit/coreutils-8.24/gt-cycle.sh.iz8C ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'cycle.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'cycle.sh: skipped test: must be run as non-root' cycle.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'cycle.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-cycle.sh.iz8C + rm -rf /tmp/32-bit/coreutils-8.24/gt-cycle.sh.iz8C + exit 77 SKIP tests/rm/cycle.sh (exit status: 77) SKIP: tests/cp/link-heap =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-link-heap.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-link-heap.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-link-heap.sh.PqnM +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-link-heap.sh.PqnM ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-link-heap.sh.PqnM ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:51 /tmp/32-bit/coreutils-8.24/gt-l= ink-heap.sh.PqnM' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-link-heap.sh.PqnM +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-link-heap.sh.PqnM ++ cd /tmp/32-bit/coreutils-8.24/gt-link-heap.sh.PqnM ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'link-heap.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'link-heap.sh: skipped test: expensive: disabled by defau= lt 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' link-heap.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'link-heap.sh: skipped test: expensive: disabled by defau= lt 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-link-heap.sh.PqnM + rm -rf /tmp/32-bit/coreutils-8.24/gt-link-heap.sh.PqnM + exit 77 SKIP tests/cp/link-heap.sh (exit status: 77) SKIP: tests/cp/no-ctx =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-no-ctx.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-no-ctx.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.NjvH +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.NjvH ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.NjvH ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:51 /tmp/32-bit/coreutils-8.24/gt-n= o-ctx.sh.NjvH' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.NjvH +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.NjvH ++ cd /tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.NjvH ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_gcc_shared_ + gcc_shared_ - d.so -xc + local in=3D- + local out=3Dd.so + shift 2 + gcc -std=3Dgnu99 -Wall -shared --std=3Dgnu99 -fPIC -O2 -xc - -o d.so -l= dl + rm -f d.so + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'no-ctx.sh: skipped test: this system lacks SELinux support' + case $IFS in + printf '%s\n' 'no-ctx.sh: skipped test: this system lacks SELinux suppo= rt' no-ctx.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'no-ctx.sh: skipped test: this system lacks SELinux suppo= rt' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.NjvH + rm -rf /tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.NjvH + exit 77 SKIP tests/cp/no-ctx.sh (exit status: 77) SKIP: tests/misc/tty-eof =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D tty-eof.pl: this script requires Perl's Expect package >=3D1.11 SKIP tests/misc/tty-eof.pl (exit status: 77) SKIP: tests/tail-2/inotify-rotate =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-inotify-rotate.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-inotify-rotate.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.Zgfk +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.Zgfk ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.Zgfk ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:51 /tmp/32-bit/coreutils-8.24/gt-i= notify-rotate.sh.Zgfk' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.Zgfk +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.Zgfk ++ cd /tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.Zgfk ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + grep '^#define HAVE_INOTIFY 1' /tmp/32-bit/coreutils-8.24/lib/config.h + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'inotify-rotate.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'inotify-rotate.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' inotify-rotate.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'inotify-rotate.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.Zgfk + rm -rf /tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.Zgfk + exit 77 SKIP tests/tail-2/inotify-rotate.sh (exit status: 77) SKIP: tests/tail-2/inotify-rotate-resources =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-inotify-rotate-resources.sh.XX= XX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-inotify-rotate-resources.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.sh.byMK +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.sh.byM= K ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.sh.by= MK ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:51 /tmp/32-bit/coreutils-8.24/gt-i= notify-rotate-resources.sh.byMK' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.sh.byMK +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.sh.= byMK ++ cd /tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.sh.byMK ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + grep '^#define HAVE_INOTIFY 1' /tmp/32-bit/coreutils-8.24/lib/config.h + skip_ 'inotify required' + warn_ 'inotify-rotate-resources.sh: skipped test: inotify required' + case $IFS in + printf '%s\n' 'inotify-rotate-resources.sh: skipped test: inotify requi= red' inotify-rotate-resources.sh: skipped test: inotify required + test 9 =3D 2 + printf '%s\n' 'inotify-rotate-resources.sh: skipped test: inotify requi= red' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.s= h.byMK + rm -rf /tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.sh.byMK + exit 77 SKIP tests/tail-2/inotify-rotate-resources.sh (exit status: 77) SKIP: tests/chmod/no-x =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-no-x.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-no-x.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-no-x.sh.Ib8L +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-no-x.sh.Ib8L ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-no-x.sh.Ib8L ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:51 /tmp/32-bit/coreutils-8.24/gt-n= o-x.sh.Ib8L' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-no-x.sh.Ib8L +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-no-x.sh.Ib8L ++ cd /tmp/32-bit/coreutils-8.24/gt-no-x.sh.Ib8L ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chmod + test yes =3D yes + local i + for i in '$*' + env chmod --version chmod (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'no-x.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'no-x.sh: skipped test: must be run as non-root' no-x.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'no-x.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-no-x.sh.Ib8L + rm -rf /tmp/32-bit/coreutils-8.24/gt-no-x.sh.Ib8L + exit 77 SKIP tests/chmod/no-x.sh (exit status: 77) SKIP: tests/chgrp/basic =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-basic.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-basic.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-basic.sh.anT9 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-basic.sh.anT9 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-basic.sh.anT9 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:51 /tmp/32-bit/coreutils-8.24/gt-b= asic.sh.anT9' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-basic.sh.anT9 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-basic.sh.anT9 ++ cd /tmp/32-bit/coreutils-8.24/gt-basic.sh.anT9 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chgrp + test yes =3D yes + local i + for i in '$*' + env chgrp --version chgrp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_membership_in_two_groups_ + test 0 =3D 0 + groups=3D0 + case "$groups" in + skip_ '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=3D'\''users cdrom'\'' make check ' + warn_ 'basic.sh: skipped 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=3D'\''users cdrom'\'' make check ' + case $IFS in + printf '%s\n' 'basic.sh: skipped test: requires membership in two group= s 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=3D'\''users cdrom'\'' make check ' basic.sh: skipped 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=3D'users cdrom' make check + test 9 =3D 2 + printf '%s\n' 'basic.sh: skipped test: requires membership in two group= s 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=3D'\''users cdrom'\'' make check ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-basic.sh.anT9 + rm -rf /tmp/32-bit/coreutils-8.24/gt-basic.sh.anT9 + exit 77 SKIP tests/chgrp/basic.sh (exit status: 77) SKIP: tests/rm/deep-2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-deep-2.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-deep-2.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-deep-2.sh.K9bh +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-deep-2.sh.K9bh ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-deep-2.sh.K9bh ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:51 /tmp/32-bit/coreutils-8.24/gt-d= eep-2.sh.K9bh' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-deep-2.sh.K9bh +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-deep-2.sh.K9bh ++ cd /tmp/32-bit/coreutils-8.24/gt-deep-2.sh.K9bh ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_perl_ + : perl + perl -e 'use warnings' + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'deep-2.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'deep-2.sh: skipped test: must be run as non-root' deep-2.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'deep-2.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-deep-2.sh.K9bh + rm -rf /tmp/32-bit/coreutils-8.24/gt-deep-2.sh.K9bh + exit 77 SKIP tests/rm/deep-2.sh (exit status: 77) SKIP: tests/rm/isatty =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-isatty.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-isatty.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-isatty.sh.992k +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-isatty.sh.992k ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-isatty.sh.992k ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:51 /tmp/32-bit/coreutils-8.24/gt-i= satty.sh.992k' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-isatty.sh.992k +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-isatty.sh.992k ++ cd /tmp/32-bit/coreutils-8.24/gt-isatty.sh.992k ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'isatty.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'isatty.sh: skipped test: must be run as non-root' isatty.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'isatty.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-isatty.sh.992k + rm -rf /tmp/32-bit/coreutils-8.24/gt-isatty.sh.992k + exit 77 SKIP tests/rm/isatty.sh (exit status: 77) SKIP: tests/rm/empty-inacc =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-empty-inacc.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-empty-inacc.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-empty-inacc.sh.jAnf +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-empty-inacc.sh.jAnf ++++ tr S - ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-empty-inacc.sh.jAnf +++ perms=3D'drwx------ 2 69 Jul 18 01:51 /tmp/32-bit/coreutils-8.24/gt-e= mpty-inacc.sh.jAnf' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-empty-inacc.sh.jAnf +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-empty-inacc.sh.jAnf ++ cd /tmp/32-bit/coreutils-8.24/gt-empty-inacc.sh.jAnf ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'empty-inacc.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'empty-inacc.sh: skipped test: must be run as non-root' empty-inacc.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'empty-inacc.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-empty-inacc.sh.jAnf + rm -rf /tmp/32-bit/coreutils-8.24/gt-empty-inacc.sh.jAnf + exit 77 SKIP tests/rm/empty-inacc.sh (exit status: 77) SKIP: tests/rm/fail-eacces =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-fail-eacces.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-fail-eacces.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-fail-eacces.sh.6DmF +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-fail-eacces.sh.6DmF ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-fail-eacces.sh.6DmF ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:51 /tmp/32-bit/coreutils-8.24/gt-f= ail-eacces.sh.6DmF' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-fail-eacces.sh.6DmF +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-fail-eacces.sh.6DmF ++ cd /tmp/32-bit/coreutils-8.24/gt-fail-eacces.sh.6DmF ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'fail-eacces.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'fail-eacces.sh: skipped test: must be run as non-root' fail-eacces.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'fail-eacces.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-fail-eacces.sh.6DmF + rm -rf /tmp/32-bit/coreutils-8.24/gt-fail-eacces.sh.6DmF + exit 77 SKIP tests/rm/fail-eacces.sh (exit status: 77) SKIP: tests/rm/fail-eperm =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= fail-eperm.xpl: can't run this test as root: skipping this test at tests/= CuSkip.pm line 30. SKIP tests/rm/fail-eperm.xpl (exit status: 77) SKIP: tests/rm/hash =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-hash.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-hash.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-hash.sh.17bq +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-hash.sh.17bq ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-hash.sh.17bq ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:51 /tmp/32-bit/coreutils-8.24/gt-h= ash.sh.17bq' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-hash.sh.17bq +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-hash.sh.17bq ++ cd /tmp/32-bit/coreutils-8.24/gt-hash.sh.17bq ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'hash.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'hash.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' hash.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'hash.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-hash.sh.17bq + rm -rf /tmp/32-bit/coreutils-8.24/gt-hash.sh.17bq + exit 77 SKIP tests/rm/hash.sh (exit status: 77) SKIP: tests/rm/i-never =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-i-never.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-i-never.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-i-never.sh.9xJS +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-i-never.sh.9xJS ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-i-never.sh.9xJS ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:51 /tmp/32-bit/coreutils-8.24/gt-i= -never.sh.9xJ-' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-i-never.sh.9xJS +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-i-never.sh.9xJS ++ cd /tmp/32-bit/coreutils-8.24/gt-i-never.sh.9xJS ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'i-never.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'i-never.sh: skipped test: must be run as non-root' i-never.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'i-never.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-i-never.sh.9xJS + rm -rf /tmp/32-bit/coreutils-8.24/gt-i-never.sh.9xJS + exit 77 SKIP tests/rm/i-never.sh (exit status: 77) SKIP: tests/rm/ignorable =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-ignorable.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-ignorable.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-ignorable.sh.fNtQ +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-ignorable.sh.fNtQ ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-ignorable.sh.fNtQ ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:51 /tmp/32-bit/coreutils-8.24/gt-i= gnorable.sh.fNtQ' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-ignorable.sh.fNtQ +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-ignorable.sh.fNtQ ++ cd /tmp/32-bit/coreutils-8.24/gt-ignorable.sh.fNtQ ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'ignorable.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'ignorable.sh: skipped test: must be run as non-root' ignorable.sh: skipped test: must be run as non-root + test 9 =3D 2 + sed 1q + printf '%s\n' 'ignorable.sh: skipped test: must be run as non-root' + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-ignorable.sh.fNtQ + rm -rf /tmp/32-bit/coreutils-8.24/gt-ignorable.sh.fNtQ + exit 77 SKIP tests/rm/ignorable.sh (exit status: 77) SKIP: tests/rm/inaccessible =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-inaccessible.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-inaccessible.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-inaccessible.sh.0CL9 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-inaccessible.sh.0CL9 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-inaccessible.sh.0CL9 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:51 /tmp/32-bit/coreutils-8.24/gt-i= naccessible.sh.0CL9' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-inaccessible.sh.0CL9 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-inaccessible.sh.0CL9 ++ cd /tmp/32-bit/coreutils-8.24/gt-inaccessible.sh.0CL9 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_openat_support_ + test -z /tmp/32-bit/coreutils-8.24/lib/config.h + _skip=3Dyes + grep '^#define HAVE_OPENAT' /tmp/32-bit/coreutils-8.24/lib/config.h + _skip=3Dno + test -d /proc/self/fd + _skip=3Dno + test no =3D yes + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'inaccessible.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'inaccessible.sh: skipped test: must be run as non-root' inaccessible.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'inaccessible.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-inaccessible.sh.0CL9 + rm -rf /tmp/32-bit/coreutils-8.24/gt-inaccessible.sh.0CL9 + exit 77 SKIP tests/rm/inaccessible.sh (exit status: 77) SKIP: tests/rm/r-root =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-r-root.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-r-root.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-r-root.sh.IEFq +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-r-root.sh.IEFq ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-r-root.sh.IEFq ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:51 /tmp/32-bit/coreutils-8.24/gt-r= -root.sh.IEFq' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-r-root.sh.IEFq +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-r-root.sh.IEFq ++ cd /tmp/32-bit/coreutils-8.24/gt-r-root.sh.IEFq ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'r-root.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'r-root.sh: skipped test: must be run as non-root' r-root.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'r-root.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-r-root.sh.IEFq + rm -rf /tmp/32-bit/coreutils-8.24/gt-r-root.sh.IEFq + exit 77 SKIP tests/rm/r-root.sh (exit status: 77) SKIP: tests/rm/rm1 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-rm1.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-rm1.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-rm1.sh.TFk7 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-rm1.sh.TFk7 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-rm1.sh.TFk7 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:51 /tmp/32-bit/coreutils-8.24/gt-r= m1.sh.TFk7' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-rm1.sh.TFk7 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-rm1.sh.TFk7 ++ cd /tmp/32-bit/coreutils-8.24/gt-rm1.sh.TFk7 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'rm1.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'rm1.sh: skipped test: must be run as non-root' rm1.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'rm1.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-rm1.sh.TFk7 + rm -rf /tmp/32-bit/coreutils-8.24/gt-rm1.sh.TFk7 + exit 77 SKIP tests/rm/rm1.sh (exit status: 77) SKIP: tests/rm/rm2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-rm2.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-rm2.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-rm2.sh.B0Zn +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-rm2.sh.B0Zn ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-rm2.sh.B0Zn ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:52 /tmp/32-bit/coreutils-8.24/gt-r= m2.sh.B0Zn' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-rm2.sh.B0Zn +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-rm2.sh.B0Zn ++ cd /tmp/32-bit/coreutils-8.24/gt-rm2.sh.B0Zn ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'rm2.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'rm2.sh: skipped test: must be run as non-root' rm2.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'rm2.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-rm2.sh.B0Zn + rm -rf /tmp/32-bit/coreutils-8.24/gt-rm2.sh.B0Zn + exit 77 SKIP tests/rm/rm2.sh (exit status: 77) SKIP: tests/rm/rm3 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-rm3.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-rm3.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-rm3.sh.PLvB +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-rm3.sh.PLvB ++++ tr S - ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-rm3.sh.PLvB +++ perms=3D'drwx------ 2 69 Jul 18 01:52 /tmp/32-bit/coreutils-8.24/gt-r= m3.sh.PLvB' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-rm3.sh.PLvB +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-rm3.sh.PLvB ++ cd /tmp/32-bit/coreutils-8.24/gt-rm3.sh.PLvB ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'rm3.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'rm3.sh: skipped test: must be run as non-root' rm3.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'rm3.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-rm3.sh.PLvB + rm -rf /tmp/32-bit/coreutils-8.24/gt-rm3.sh.PLvB + exit 77 SKIP tests/rm/rm3.sh (exit status: 77) SKIP: tests/rm/rm4 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-rm4.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-rm4.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-rm4.sh.CEgP +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-rm4.sh.CEgP ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-rm4.sh.CEgP ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:52 /tmp/32-bit/coreutils-8.24/gt-r= m4.sh.CEgP' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-rm4.sh.CEgP +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-rm4.sh.CEgP ++ cd /tmp/32-bit/coreutils-8.24/gt-rm4.sh.CEgP ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'rm4.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'rm4.sh: skipped test: must be run as non-root' rm4.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'rm4.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-rm4.sh.CEgP + rm -rf /tmp/32-bit/coreutils-8.24/gt-rm4.sh.CEgP + exit 77 SKIP tests/rm/rm4.sh (exit status: 77) SKIP: tests/rm/rm5 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-rm5.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-rm5.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-rm5.sh.5KJq +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-rm5.sh.5KJq ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-rm5.sh.5KJq ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:52 /tmp/32-bit/coreutils-8.24/gt-r= m5.sh.5KJq' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-rm5.sh.5KJq +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-rm5.sh.5KJq ++ cd /tmp/32-bit/coreutils-8.24/gt-rm5.sh.5KJq ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'rm5.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'rm5.sh: skipped test: must be run as non-root' rm5.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'rm5.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-rm5.sh.5KJq + rm -rf /tmp/32-bit/coreutils-8.24/gt-rm5.sh.5KJq + exit 77 SKIP tests/rm/rm5.sh (exit status: 77) SKIP: tests/rm/unread2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-unread2.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-unread2.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-unread2.sh.cD5V +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-unread2.sh.cD5V ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-unread2.sh.cD5V ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:52 /tmp/32-bit/coreutils-8.24/gt-u= nread2.sh.cD5V' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-unread2.sh.cD5V +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-unread2.sh.cD5V ++ cd /tmp/32-bit/coreutils-8.24/gt-unread2.sh.cD5V ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'unread2.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'unread2.sh: skipped test: must be run as non-root' unread2.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'unread2.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-unread2.sh.cD5V + rm -rf /tmp/32-bit/coreutils-8.24/gt-unread2.sh.cD5V + exit 77 SKIP tests/rm/unread2.sh (exit status: 77) SKIP: tests/rm/unread3 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-unread3.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-unread3.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-unread3.sh.Fmh3 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-unread3.sh.Fmh3 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-unread3.sh.Fmh3 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:52 /tmp/32-bit/coreutils-8.24/gt-u= nread3.sh.Fmh3' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-unread3.sh.Fmh3 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-unread3.sh.Fmh3 ++ cd /tmp/32-bit/coreutils-8.24/gt-unread3.sh.Fmh3 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'unread3.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'unread3.sh: skipped test: must be run as non-root' unread3.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'unread3.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-unread3.sh.Fmh3 + rm -rf /tmp/32-bit/coreutils-8.24/gt-unread3.sh.Fmh3 + exit 77 SKIP tests/rm/unread3.sh (exit status: 77) SKIP: tests/rm/many-dir-entries-vs-OOM =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-many-dir-entries-vs-OOM.sh.XXX= X +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-many-dir-entries-vs-OOM.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh.9qsw +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh.9qsw= ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh.9qs= w ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:52 /tmp/32-bit/coreutils-8.24/gt-m= any-dir-entries-vs-OOM.sh.9qsw' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh.9qsw +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh.9= qsw ++ cd /tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh.9qsw ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm du chmod + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + for i in '$*' + env chmod --version chmod (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_ulimit_v_ + local ulimit_works=3Dyes + local vm + case $(printenv LD_PRELOAD) in ++ printenv LD_PRELOAD + vm=3D10000 + test yes =3D no + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'many-dir-entries-vs-OOM.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'many-dir-entries-vs-OOM.sh: skipped test: expensive: dis= abled 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' many-dir-entries-vs-OOM.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'many-dir-entries-vs-OOM.sh: skipped test: expensive: dis= abled 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh= =2E9qsw + rm -rf /tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh.9qsw + exit 77 SKIP tests/rm/many-dir-entries-vs-OOM.sh (exit status: 77) SKIP: tests/chgrp/default-no-deref =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-default-no-deref.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-default-no-deref.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.HIqL +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.HIqL ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.HIqL ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:52 /tmp/32-bit/coreutils-8.24/gt-d= efault-no-deref.sh.HIqL' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.HIqL +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.HIqL ++ cd /tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.HIqL ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chgrp + test yes =3D yes + local i + for i in '$*' + env chgrp --version chgrp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_membership_in_two_groups_ + test 0 =3D 0 + groups=3D0 + case "$groups" in + skip_ '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=3D'\''users cdrom'\'' make check ' + warn_ 'default-no-deref.sh: skipped test: requires membership in two gr= oups 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=3D'\''users cdrom'\'' make check ' + case $IFS in + printf '%s\n' 'default-no-deref.sh: skipped test: requires membership i= n 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=3D'\''users cdrom'\'' make check ' default-no-deref.sh: skipped 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=3D'users cdrom' make check + test 9 =3D 2 + printf '%s\n' 'default-no-deref.sh: skipped test: requires membership i= n 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=3D'\''users cdrom'\'' make check ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.HIqL + rm -rf /tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.HIqL + exit 77 SKIP tests/chgrp/default-no-deref.sh (exit status: 77) SKIP: tests/chgrp/deref =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-deref.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-deref.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-deref.sh.Ta9j +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-deref.sh.Ta9j ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-deref.sh.Ta9j ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:52 /tmp/32-bit/coreutils-8.24/gt-d= eref.sh.Ta9j' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-deref.sh.Ta9j +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-deref.sh.Ta9j ++ cd /tmp/32-bit/coreutils-8.24/gt-deref.sh.Ta9j ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chgrp + test yes =3D yes + local i + for i in '$*' + env chgrp --version chgrp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_membership_in_two_groups_ + test 0 =3D 0 + groups=3D0 + case "$groups" in + skip_ '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=3D'\''users cdrom'\'' make check ' + warn_ 'deref.sh: skipped 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=3D'\''users cdrom'\'' make check ' + case $IFS in + printf '%s\n' 'deref.sh: skipped test: requires membership in two group= s 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=3D'\''users cdrom'\'' make check ' deref.sh: skipped 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=3D'users cdrom' make check + test 9 =3D 2 + printf '%s\n' 'deref.sh: skipped test: requires membership in two group= s 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=3D'\''users cdrom'\'' make check ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-deref.sh.Ta9j + rm -rf /tmp/32-bit/coreutils-8.24/gt-deref.sh.Ta9j + exit 77 SKIP tests/chgrp/deref.sh (exit status: 77) SKIP: tests/chgrp/no-x =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-no-x.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-no-x.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-no-x.sh.fo7W +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-no-x.sh.fo7W ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-no-x.sh.fo7W ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:52 /tmp/32-bit/coreutils-8.24/gt-n= o-x.sh.fo7W' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-no-x.sh.fo7W +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-no-x.sh.fo7W ++ cd /tmp/32-bit/coreutils-8.24/gt-no-x.sh.fo7W ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chgrp + test yes =3D yes + local i + for i in '$*' + env chgrp --version chgrp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_membership_in_two_groups_ + test 0 =3D 0 + groups=3D0 + case "$groups" in + skip_ '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=3D'\''users cdrom'\'' make check ' + warn_ 'no-x.sh: skipped 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=3D'\''users cdrom'\'' make check ' + case $IFS in + printf '%s\n' 'no-x.sh: skipped 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=3D'\''users cdrom'\'' make check ' no-x.sh: skipped 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=3D'users cdrom' make check + test 9 =3D 2 + printf '%s\n' 'no-x.sh: skipped 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=3D'\''users cdrom'\'' make check ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-no-x.sh.fo7W + rm -rf /tmp/32-bit/coreutils-8.24/gt-no-x.sh.fo7W + exit 77 SKIP tests/chgrp/no-x.sh (exit status: 77) SKIP: tests/chgrp/posix-H =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-posix-H.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-posix-H.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-posix-H.sh.GGAQ +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-posix-H.sh.GGAQ ++++ tr S - ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-posix-H.sh.GGAQ +++ perms=3D'drwx------ 2 69 Jul 18 01:52 /tmp/32-bit/coreutils-8.24/gt-p= osix-H.sh.GGAQ' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-posix-H.sh.GGAQ +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-posix-H.sh.GGAQ ++ cd /tmp/32-bit/coreutils-8.24/gt-posix-H.sh.GGAQ ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chgrp + test yes =3D yes + local i + for i in '$*' + env chgrp --version chgrp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_membership_in_two_groups_ + test 0 =3D 0 + groups=3D0 + case "$groups" in + skip_ '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=3D'\''users cdrom'\'' make check ' + warn_ 'posix-H.sh: skipped 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=3D'\''users cdrom'\'' make check ' + case $IFS in + printf '%s\n' 'posix-H.sh: skipped test: requires membership in two gro= ups 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=3D'\''users cdrom'\'' make check ' posix-H.sh: skipped 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=3D'users cdrom' make check + test 9 =3D 2 + printf '%s\n' 'posix-H.sh: skipped test: requires membership in two gro= ups 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=3D'\''users cdrom'\'' make check ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-posix-H.sh.GGAQ + rm -rf /tmp/32-bit/coreutils-8.24/gt-posix-H.sh.GGAQ + exit 77 SKIP tests/chgrp/posix-H.sh (exit status: 77) SKIP: tests/chgrp/recurse =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-recurse.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-recurse.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-recurse.sh.UB5X +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-recurse.sh.UB5X ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-recurse.sh.UB5X ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:52 /tmp/32-bit/coreutils-8.24/gt-r= ecurse.sh.UB5X' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-recurse.sh.UB5X +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-recurse.sh.UB5X ++ cd /tmp/32-bit/coreutils-8.24/gt-recurse.sh.UB5X ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chgrp + test yes =3D yes + local i + for i in '$*' + env chgrp --version chgrp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_membership_in_two_groups_ + test 0 =3D 0 + groups=3D0 + case "$groups" in + skip_ '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=3D'\''users cdrom'\'' make check ' + warn_ 'recurse.sh: skipped 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=3D'\''users cdrom'\'' make check ' + case $IFS in + printf '%s\n' 'recurse.sh: skipped test: requires membership in two gro= ups 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=3D'\''users cdrom'\'' make check ' recurse.sh: skipped 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=3D'users cdrom' make check + test 9 =3D 2 + printf '%s\n' 'recurse.sh: skipped test: requires membership in two gro= ups 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=3D'\''users cdrom'\'' make check ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-recurse.sh.UB5X + rm -rf /tmp/32-bit/coreutils-8.24/gt-recurse.sh.UB5X + exit 77 SKIP tests/chgrp/recurse.sh (exit status: 77) SKIP: tests/misc/seq-long-double =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-seq-long-double.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-seq-long-double.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.pP5Y +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.pP5Y ++++ tr S - ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.pP5Y +++ perms=3D'drwx------ 2 69 Jul 18 01:52 /tmp/32-bit/coreutils-8.24/gt-s= eq-long-double.sh.pP5Y' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.pP5Y +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.pP5Y ++ cd /tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.pP5Y ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ seq + test yes =3D yes + local i + for i in '$*' + env seq --version seq (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + getlimits_ ++ getlimits + eval CHAR_MAX=3D127 CHAR_OFLOW=3D128 CHAR_MIN=3D-128 CHAR_UFLOW=3D-129 = SCHAR_MAX=3D127 SCHAR_OFLOW=3D128 SCHAR_MIN=3D-128 SCHAR_UFLOW=3D-129 UCH= AR_MAX=3D255 UCHAR_OFLOW=3D256 SHRT_MAX=3D32767 SHRT_OFLOW=3D32768 SHRT_M= IN=3D-32768 SHRT_UFLOW=3D-32769 INT_MAX=3D2147483647 INT_OFLOW=3D21474836= 48 INT_MIN=3D-2147483648 INT_UFLOW=3D-2147483649 UINT_MAX=3D4294967295 UI= NT_OFLOW=3D4294967296 LONG_MAX=3D2147483647 LONG_OFLOW=3D2147483648 LONG_= MIN=3D-2147483648 LONG_UFLOW=3D-2147483649 ULONG_MAX=3D4294967295 ULONG_O= FLOW=3D4294967296 SIZE_MAX=3D4294967295 SIZE_OFLOW=3D4294967296 SSIZE_MAX= =3D2147483647 SSIZE_OFLOW=3D2147483648 SSIZE_MIN=3D-2147483648 SSIZE_UFLO= W=3D-2147483649 TIME_T_MAX=3D2147483647 TIME_T_OFLOW=3D2147483648 TIME_T_= MIN=3D-2147483648 TIME_T_UFLOW=3D-2147483649 UID_T_MAX=3D2147483647 UID_T= _OFLOW=3D2147483648 GID_T_MAX=3D2147483647 GID_T_OFLOW=3D2147483648 PID_T= _MAX=3D2147483647 PID_T_OFLOW=3D2147483648 PID_T_MIN=3D-2147483648 PID_T_= UFLOW=3D-2147483649 OFF_T_MAX=3D9223372036854775807 OFF_T_OFLOW=3D9223372= 036854775808 OFF_T_MIN=3D-9223372036854775808 OFF_T_UFLOW=3D-922337203685= 4775809 INTMAX_MAX=3D9223372036854775807 INTMAX_OFLOW=3D92233720368547758= 08 INTMAX_MIN=3D-9223372036854775808 INTMAX_UFLOW=3D-9223372036854775809 = UINTMAX_MAX=3D18446744073709551615 UINTMAX_OFLOW=3D18446744073709551616 F= LT_MIN=3D1.1754944e-38 FLT_MAX=3D3.4028235e+38 DBL_MIN=3D2.22507385850720= 14e-308 DBL_MAX=3D1.7976931348623157e+308 LDBL_MIN=3D3.362103143112093506= 3e-4932 LDBL_MAX=3D1.189731495357231765e+4932 ++ CHAR_MAX=3D127 ++ CHAR_OFLOW=3D128 ++ CHAR_MIN=3D-128 ++ CHAR_UFLOW=3D-129 ++ SCHAR_MAX=3D127 ++ SCHAR_OFLOW=3D128 ++ SCHAR_MIN=3D-128 ++ SCHAR_UFLOW=3D-129 ++ UCHAR_MAX=3D255 ++ UCHAR_OFLOW=3D256 ++ SHRT_MAX=3D32767 ++ SHRT_OFLOW=3D32768 ++ SHRT_MIN=3D-32768 ++ SHRT_UFLOW=3D-32769 ++ INT_MAX=3D2147483647 ++ INT_OFLOW=3D2147483648 ++ INT_MIN=3D-2147483648 ++ INT_UFLOW=3D-2147483649 ++ UINT_MAX=3D4294967295 ++ UINT_OFLOW=3D4294967296 ++ LONG_MAX=3D2147483647 ++ LONG_OFLOW=3D2147483648 ++ LONG_MIN=3D-2147483648 ++ LONG_UFLOW=3D-2147483649 ++ ULONG_MAX=3D4294967295 ++ ULONG_OFLOW=3D4294967296 ++ SIZE_MAX=3D4294967295 ++ SIZE_OFLOW=3D4294967296 ++ SSIZE_MAX=3D2147483647 ++ SSIZE_OFLOW=3D2147483648 ++ SSIZE_MIN=3D-2147483648 ++ SSIZE_UFLOW=3D-2147483649 ++ TIME_T_MAX=3D2147483647 ++ TIME_T_OFLOW=3D2147483648 ++ TIME_T_MIN=3D-2147483648 ++ TIME_T_UFLOW=3D-2147483649 ++ UID_T_MAX=3D2147483647 ++ UID_T_OFLOW=3D2147483648 ++ GID_T_MAX=3D2147483647 ++ GID_T_OFLOW=3D2147483648 ++ PID_T_MAX=3D2147483647 ++ PID_T_OFLOW=3D2147483648 ++ PID_T_MIN=3D-2147483648 ++ PID_T_UFLOW=3D-2147483649 ++ OFF_T_MAX=3D9223372036854775807 ++ OFF_T_OFLOW=3D9223372036854775808 ++ OFF_T_MIN=3D-9223372036854775808 ++ OFF_T_UFLOW=3D-9223372036854775809 ++ INTMAX_MAX=3D9223372036854775807 ++ INTMAX_OFLOW=3D9223372036854775808 ++ INTMAX_MIN=3D-9223372036854775808 ++ INTMAX_UFLOW=3D-9223372036854775809 ++ UINTMAX_MAX=3D18446744073709551615 ++ UINTMAX_OFLOW=3D18446744073709551616 ++ FLT_MIN=3D1.1754944e-38 ++ FLT_MAX=3D3.4028235e+38 ++ DBL_MIN=3D2.2250738585072014e-308 ++ DBL_MAX=3D1.7976931348623157e+308 ++ LDBL_MIN=3D3.3621031431120935063e-4932 ++ LDBL_MAX=3D1.189731495357231765e+4932 + test 2147483647 + cat + gcc -std=3Dgnu99 -c long.c long.c:1:22: fatal error: features.h: No such file or directory #include <features.h> ^ compilation terminated. + skip_ 'this test runs only on systems with glibc and long double !=3D d= ouble' + warn_ 'seq-long-double.sh: skipped test: this test runs only on systems= with glibc and long double !=3D double' + case $IFS in + printf '%s\n' 'seq-long-double.sh: skipped test: this test runs only on= systems with glibc and long double !=3D double' seq-long-double.sh: skipped test: this test runs only on systems with gli= bc and long double !=3D double + test 9 =3D 2 + printf '%s\n' 'seq-long-double.sh: skipped test: this test runs only on= systems with glibc and long double !=3D double' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.pP5Y + rm -rf /tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.pP5Y + exit 77 SKIP tests/misc/seq-long-double.sh (exit status: 77) SKIP: tests/tail-2/tail-n0f =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-tail-n0f.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-tail-n0f.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.vkSW +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.vkSW ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.vkSW ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:52 /tmp/32-bit/coreutils-8.24/gt-t= ail-n0f.sh.vk-W' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.vkSW +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.vkSW ++ cd /tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.vkSW ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_proc_pid_status_ + local pid=3D11187 + sleep .5 + sleep 2 + grep '^State:[ ]*[S]' /proc/11187/status + skip_ '/proc/11187/status: missing or '\''different'\''' + warn_ 'tail-n0f.sh: skipped test: /proc/11187/status: missing or '\''di= fferent'\''' + case $IFS in + printf '%s\n' 'tail-n0f.sh: skipped test: /proc/11187/status: missing o= r '\''different'\''' tail-n0f.sh: skipped test: /proc/11187/status: missing or 'different' + test 9 =3D 2 + printf '%s\n' 'tail-n0f.sh: skipped test: /proc/11187/status: missing o= r '\''different'\''' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.vkSW + rm -rf /tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.vkSW + exit 77 SKIP tests/tail-2/tail-n0f.sh (exit status: 77) SKIP: tests/misc/arch =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-arch.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-arch.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-arch.sh.xTTS +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-arch.sh.xTTS ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-arch.sh.xTTS ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:52 /tmp/32-bit/coreutils-8.24/gt-a= rch.sh.xTT-' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-arch.sh.xTTS +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-arch.sh.xTTS ++ cd /tmp/32-bit/coreutils-8.24/gt-arch.sh.xTTS ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ arch + test yes =3D yes + local i + for i in '$*' + env arch --version + require_built_ arch + skip_=3Dno + for i in '"$@"' + case " $built_programs " in + echo 'arch: not built' arch: not built + skip_=3Dyes + test yes =3D yes + skip_ 'required program(s) not built' + warn_ 'arch.sh: skipped test: required program(s) not built' + case $IFS in + printf '%s\n' 'arch.sh: skipped test: required program(s) not built' arch.sh: skipped test: required program(s) not built + test 9 =3D 2 + printf '%s\n' 'arch.sh: skipped test: required program(s) not built' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-arch.sh.xTTS + rm -rf /tmp/32-bit/coreutils-8.24/gt-arch.sh.xTTS + exit 77 SKIP tests/misc/arch.sh (exit status: 77) SKIP: tests/misc/coreutils =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-coreutils.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-coreutils.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-coreutils.sh.1qJD +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-coreutils.sh.1qJD ++++ tr S - ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-coreutils.sh.1qJD +++ perms=3D'drwx------ 2 69 Jul 18 01:52 /tmp/32-bit/coreutils-8.24/gt-c= oreutils.sh.1qJD' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-coreutils.sh.1qJD +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-coreutils.sh.1qJD ++ cd /tmp/32-bit/coreutils-8.24/gt-coreutils.sh.1qJD ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ coreutils + test yes =3D yes + local i + for i in '$*' + env coreutils --version env: coreutils: No such file or directory + test -s /tmp/32-bit/coreutils-8.24/src/coreutils.h + skip_ 'multicall binary is disabled' + warn_ 'coreutils.sh: skipped test: multicall binary is disabled' + case $IFS in + printf '%s\n' 'coreutils.sh: skipped test: multicall binary is disabled= ' coreutils.sh: skipped test: multicall binary is disabled + test 9 =3D 2 + printf '%s\n' 'coreutils.sh: skipped test: multicall binary is disabled= ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-coreutils.sh.1qJD + rm -rf /tmp/32-bit/coreutils-8.24/gt-coreutils.sh.1qJD + exit 77 SKIP tests/misc/coreutils.sh (exit status: 77) SKIP: tests/misc/wc-parallel =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-wc-parallel.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-wc-parallel.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.ejZ9 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.ejZ9 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.ejZ9 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:52 /tmp/32-bit/coreutils-8.24/gt-w= c-parallel.sh.ejZ9' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.ejZ9 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.ejZ9 ++ cd /tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.ejZ9 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ wc + test yes =3D yes + local i + for i in '$*' + env wc --version wc (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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 and David MacKenzie. + xargs -P2 + skip_ 'xargs -P is required' + warn_ 'wc-parallel.sh: skipped test: xargs -P is required' + case $IFS in + printf '%s\n' 'wc-parallel.sh: skipped test: xargs -P is required' wc-parallel.sh: skipped test: xargs -P is required + test 9 =3D 2 + printf '%s\n' 'wc-parallel.sh: skipped test: xargs -P is required' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.ejZ9 + rm -rf /tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.ejZ9 + exit 77 SKIP tests/misc/wc-parallel.sh (exit status: 77) SKIP: tests/misc/cat-proc =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-cat-proc.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-cat-proc.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.L2Ee +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.L2Ee ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.L2Ee ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:52 /tmp/32-bit/coreutils-8.24/gt-c= at-proc.sh.L2Ee' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.L2Ee +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.L2Ee ++ cd /tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.L2Ee ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cat + test yes =3D yes + local i + for i in '$*' + env cat --version cat (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund and Richard M. Stallman. + f=3D/proc/cpuinfo + test -f /proc/cpuinfo + skip_ 'no /proc/cpuinfo' + warn_ 'cat-proc.sh: skipped test: no /proc/cpuinfo' + case $IFS in + printf '%s\n' 'cat-proc.sh: skipped test: no /proc/cpuinfo' cat-proc.sh: skipped test: no /proc/cpuinfo + test 9 =3D 2 + sed 1q + printf '%s\n' 'cat-proc.sh: skipped test: no /proc/cpuinfo' + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.L2Ee + rm -rf /tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.L2Ee + exit 77 SKIP tests/misc/cat-proc.sh (exit status: 77) SKIP: tests/misc/head-write-error =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-head-write-error.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-head-write-error.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.Q2of +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.Q2of ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.Q2of ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:52 /tmp/32-bit/coreutils-8.24/gt-h= ead-write-error.sh.Q2of' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.Q2of +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.Q2of ++ cd /tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.Q2of ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ head + test yes =3D yes + local i + for i in '$*' + env head --version head (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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 -w /dev/full + skip_ '/dev/full is required' + warn_ 'head-write-error.sh: skipped test: /dev/full is required' + case $IFS in + printf '%s\n' 'head-write-error.sh: skipped test: /dev/full is required= ' head-write-error.sh: skipped test: /dev/full is required + test 9 =3D 2 + printf '%s\n' 'head-write-error.sh: skipped test: /dev/full is required= ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.Q2of + rm -rf /tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.Q2of + exit 77 SKIP tests/misc/head-write-error.sh (exit status: 77) SKIP: tests/misc/md5sum-parallel =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-md5sum-parallel.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-md5sum-parallel.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.VJb1 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.VJb1 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.VJb1 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:52 /tmp/32-bit/coreutils-8.24/gt-m= d5sum-parallel.sh.VJb1' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.VJb1 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.VJb1 ++ cd /tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.VJb1 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ md5sum + test yes =3D yes + local i + for i in '$*' + env md5sum --version md5sum (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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, Scott Miller, and David Madore. + xargs -P2 + skip_ 'xargs -P is required' + warn_ 'md5sum-parallel.sh: skipped test: xargs -P is required' + case $IFS in + printf '%s\n' 'md5sum-parallel.sh: skipped test: xargs -P is required' md5sum-parallel.sh: skipped test: xargs -P is required + test 9 =3D 2 + printf '%s\n' 'md5sum-parallel.sh: skipped test: xargs -P is required' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.VJb1 + rm -rf /tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.VJb1 + exit 77 SKIP tests/misc/md5sum-parallel.sh (exit status: 77) SKIP: tests/misc/pathchk1 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-pathchk1.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-pathchk1.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-pathchk1.sh.pTkQ +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-pathchk1.sh.pTkQ ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-pathchk1.sh.pTkQ ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:53 /tmp/32-bit/coreutils-8.24/gt-p= athchk1.sh.pTkQ' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-pathchk1.sh.pTkQ +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-pathchk1.sh.pTkQ ++ cd /tmp/32-bit/coreutils-8.24/gt-pathchk1.sh.pTkQ ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ pathchk + test yes =3D yes + local i + for i in '$*' + env pathchk --version pathchk (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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 Eggert, David MacKenzie, and Jim Meyering. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'pathchk1.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'pathchk1.sh: skipped test: must be run as non-root' pathchk1.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'pathchk1.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-pathchk1.sh.pTkQ + rm -rf /tmp/32-bit/coreutils-8.24/gt-pathchk1.sh.pTkQ + exit 77 SKIP tests/misc/pathchk1.sh (exit status: 77) SKIP: tests/misc/shred-remove =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-shred-remove.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-shred-remove.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-shred-remove.sh.ri6q +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-shred-remove.sh.ri6q ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-shred-remove.sh.ri6q ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:53 /tmp/32-bit/coreutils-8.24/gt-s= hred-remove.sh.ri6q' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-shred-remove.sh.ri6q +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-shred-remove.sh.ri6q ++ cd /tmp/32-bit/coreutils-8.24/gt-shred-remove.sh.ri6q ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ shred + test yes =3D yes + local i + for i in '$*' + env shred --version shred (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Colin Plumb. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'shred-remove.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'shred-remove.sh: skipped test: must be run as non-root' shred-remove.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'shred-remove.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-shred-remove.sh.ri6q + rm -rf /tmp/32-bit/coreutils-8.24/gt-shred-remove.sh.ri6q + exit 77 SKIP tests/misc/shred-remove.sh (exit status: 77) SKIP: tests/misc/shuf-reservoir =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-shuf-reservoir.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-shuf-reservoir.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.CUuK +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.CUuK ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.CUuK ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:53 /tmp/32-bit/coreutils-8.24/gt-s= huf-reservoir.sh.CUuK' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.CUuK +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.CUuK ++ cd /tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.CUuK ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ shuf + test yes =3D yes + local i + for i in '$*' + env shuf --version shuf (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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 Eggert. + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'shuf-reservoir.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'shuf-reservoir.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' shuf-reservoir.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'shuf-reservoir.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.CUuK + rm -rf /tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.CUuK + exit 77 SKIP tests/misc/shuf-reservoir.sh (exit status: 77) SKIP: tests/misc/sort-benchmark-random =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-benchmark-random.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-benchmark-random.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.otRA +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.otRA ++++ tr S - ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.otRA +++ perms=3D'drwx------ 2 69 Jul 18 01:53 /tmp/32-bit/coreutils-8.24/gt-s= ort-benchmark-random.sh.otRA' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.otRA +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.otR= A ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.otRA ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 'sort-benchmark-random.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 'sort-benchmark-random.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' sort-benchmark-random.sh: skipped test: very expensive: disabled by defau= lt 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + sed 1q + printf '%s\n' 'sort-benchmark-random.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.o= tRA + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.otRA + exit 77 SKIP tests/misc/sort-benchmark-random.sh (exit status: 77) SKIP: tests/misc/sort-compress-hang =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-compress-hang.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-compress-hang.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.IZ7l +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.IZ7l ++++ tr S - ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.IZ7l +++ perms=3D'drwx------ 2 69 Jul 18 01:53 /tmp/32-bit/coreutils-8.24/gt-s= ort-compress-hang.sh.IZ7l' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.IZ7l +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.IZ7l ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.IZ7l ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 'sort-compress-hang.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 'sort-compress-hang.sh: skipped test: very expensive: dis= abled 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' sort-compress-hang.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 'sort-compress-hang.sh: skipped test: very expensive: dis= abled 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.IZ7l= + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.IZ7l + exit 77 SKIP tests/misc/sort-compress-hang.sh (exit status: 77) SKIP: tests/misc/sort-compress-proc =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-compress-proc.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-compress-proc.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.pNhU +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.pNhU ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.pNhU ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:53 /tmp/32-bit/coreutils-8.24/gt-s= ort-compress-proc.sh.pNhU' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.pNhU +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.pNhU ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.pNhU ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'sort-compress-proc.sh: skipped test: expensive: disabled by defa= ult 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'sort-compress-proc.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' sort-compress-proc.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'sort-compress-proc.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.pNhU= + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.pNhU + exit 77 SKIP tests/misc/sort-compress-proc.sh (exit status: 77) SKIP: tests/misc/sort-month =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-month.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-month.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-month.sh.10Ko +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-month.sh.10Ko ++++ tr S - ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-month.sh.10Ko +++ perms=3D'drwx------ 2 69 Jul 18 01:53 /tmp/32-bit/coreutils-8.24/gt-s= ort-month.sh.10Ko' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-month.sh.10Ko +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-month.sh.10Ko ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-month.sh.10Ko ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + locale --version + skip_ 'The locale utility is not present' + warn_ 'sort-month.sh: skipped test: The locale utility is not present' + case $IFS in + printf '%s\n' 'sort-month.sh: skipped test: The locale utility is not p= resent' sort-month.sh: skipped test: The locale utility is not present + test 9 =3D 2 + printf '%s\n' 'sort-month.sh: skipped test: The locale utility is not p= resent' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-month.sh.10Ko + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-month.sh.10Ko + exit 77 SKIP tests/misc/sort-month.sh (exit status: 77) SKIP: tests/misc/sort-exit-early =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-exit-early.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-exit-early.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-exit-early.sh.AFa0 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-exit-early.sh.AFa0 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-exit-early.sh.AFa0 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:53 /tmp/32-bit/coreutils-8.24/gt-s= ort-exit-early.sh.AFa0' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-exit-early.sh.AFa0 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-exit-early.sh.AFa0 ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-exit-early.sh.AFa0 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'sort-exit-early.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'sort-exit-early.sh: skipped test: must be run as non-roo= t' sort-exit-early.sh: skipped test: must be run as non-root + test 9 =3D 2 + sed 1q + printf '%s\n' 'sort-exit-early.sh: skipped test: must be run as non-roo= t' + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-exit-early.sh.AFa0 + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-exit-early.sh.AFa0 + exit 77 SKIP tests/misc/sort-exit-early.sh (exit status: 77) SKIP: tests/misc/sort-spinlock-abuse =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-spinlock-abuse.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-spinlock-abuse.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.pnRy +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.pnRy ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.pnRy ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:53 /tmp/32-bit/coreutils-8.24/gt-s= ort-spinlock-abuse.sh.pnRy' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.pnRy +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.pnRy ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.pnRy ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 'sort-spinlock-abuse.sh: skipped test: very expensive: disabled b= y 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 'sort-spinlock-abuse.sh: skipped test: very expensive: di= sabled 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' sort-spinlock-abuse.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + sed 1q + printf '%s\n' 'sort-spinlock-abuse.sh: skipped test: very expensive: di= sabled 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.pnR= y + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.pnRy + exit 77 SKIP tests/misc/sort-spinlock-abuse.sh (exit status: 77) SKIP: tests/misc/sort-stale-thread-mem =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-stale-thread-mem.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-stale-thread-mem.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.CWgf +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.CWgf ++++ tr S - ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.CWgf +++ perms=3D'drwx------ 2 69 Jul 18 01:53 /tmp/32-bit/coreutils-8.24/gt-s= ort-stale-thread-mem.sh.CWgf' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.CWgf +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.CWg= f ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.CWgf ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 'sort-stale-thread-mem.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 'sort-stale-thread-mem.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' sort-stale-thread-mem.sh: skipped test: very expensive: disabled by defau= lt 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + sed 1q + printf '%s\n' 'sort-stale-thread-mem.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.C= Wgf + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.CWgf + exit 77 SKIP tests/misc/sort-stale-thread-mem.sh (exit status: 77) SKIP: tests/misc/sort-u-FMR =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-u-FMR.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-u-FMR.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.MiBR +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.MiBR ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.MiBR ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:53 /tmp/32-bit/coreutils-8.24/gt-s= ort-u-FMR.sh.MiBR' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.MiBR +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.MiBR ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.MiBR ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_valgrind_ + valgrind --error-exitcode=3D1 true + skip_ 'requires a working valgrind' + warn_ 'sort-u-FMR.sh: skipped test: requires a working valgrind' + case $IFS in + printf '%s\n' 'sort-u-FMR.sh: skipped test: requires a working valgrind= ' sort-u-FMR.sh: skipped test: requires a working valgrind + test 9 =3D 2 + printf '%s\n' 'sort-u-FMR.sh: skipped test: requires a working valgrind= ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.MiBR + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.MiBR + exit 77 SKIP tests/misc/sort-u-FMR.sh (exit status: 77) SKIP: tests/split/filter =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-filter.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-filter.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-filter.sh.EZRd +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-filter.sh.EZRd ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-filter.sh.EZRd ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:53 /tmp/32-bit/coreutils-8.24/gt-f= ilter.sh.EZRd' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-filter.sh.EZRd +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-filter.sh.EZRd ++ cd /tmp/32-bit/coreutils-8.24/gt-filter.sh.EZRd ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ split + test yes =3D yes + local i + for i in '$*' + env split --version split (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund and Richard M. Stallman. + xz --version =2E/tests/split/filter.sh: line 21: xz: command not found + skip_ 'xz (better than gzip/bzip2) required' + warn_ 'filter.sh: skipped test: xz (better than gzip/bzip2) required' + case $IFS in + printf '%s\n' 'filter.sh: skipped test: xz (better than gzip/bzip2) req= uired' filter.sh: skipped test: xz (better than gzip/bzip2) required + test 9 =3D 2 + printf '%s\n' 'filter.sh: skipped test: xz (better than gzip/bzip2) req= uired' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-filter.sh.EZRd + rm -rf /tmp/32-bit/coreutils-8.24/gt-filter.sh.EZRd + exit 77 SKIP tests/split/filter.sh (exit status: 77) SKIP: tests/misc/stat-nanoseconds =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D =2E/tests/misc/stat-nanoseconds.sh: line 19: print_ver_: command not foun= d ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-stat-nanoseconds.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-stat-nanoseconds.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-stat-nanoseconds.sh.qW1l +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-stat-nanoseconds.sh.qW1l ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-stat-nanoseconds.sh.qW1l ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:53 /tmp/32-bit/coreutils-8.24/gt-s= tat-nanoseconds.sh.qW1l' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-stat-nanoseconds.sh.qW1l +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-stat-nanoseconds.sh.qW1l ++ cd /tmp/32-bit/coreutils-8.24/gt-stat-nanoseconds.sh.qW1l ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + TZ=3DUTC0 + export TZ + touch -d '1970-01-01 18:43:33.023456789' k + ls --full-time + grep 18:43:33.023456789 + skip_ this file system does not support sub-second time stamps + warn_ 'stat-nanoseconds.sh: skipped test: this' file system does not su= pport sub-second time stamps + case $IFS in + printf '%s\n' 'stat-nanoseconds.sh: skipped test: this file system does= not support sub-second time stamps' stat-nanoseconds.sh: skipped test: this file system does not support sub-= second time stamps + test 9 =3D 2 + printf '%s\n' 'stat-nanoseconds.sh: skipped test: this file system does= not support sub-second time stamps' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-stat-nanoseconds.sh.qW1l + rm -rf /tmp/32-bit/coreutils-8.24/gt-stat-nanoseconds.sh.qW1l + exit 77 SKIP tests/misc/stat-nanoseconds.sh (exit status: 77) SKIP: tests/misc/stty-pairs =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-stty-pairs.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-stty-pairs.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.i9K1 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.i9K1 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.i9K1 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:53 /tmp/32-bit/coreutils-8.24/gt-s= tty-pairs.sh.i9K1' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.i9K1 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.i9K1 ++ cd /tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.i9K1 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ stty + test yes =3D yes + local i + for i in '$*' + env stty --version stty (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'stty-pairs.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'stty-pairs.sh: skipped test: expensive: disabled by defa= ult 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' stty-pairs.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'stty-pairs.sh: skipped test: expensive: disabled by defa= ult 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.i9K1 + rm -rf /tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.i9K1 + exit 77 SKIP tests/misc/stty-pairs.sh (exit status: 77) SKIP: tests/misc/tac-continue =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-tac-continue.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-tac-continue.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.8Bsl +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.8Bsl ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.8Bsl ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:53 /tmp/32-bit/coreutils-8.24/gt-t= ac-continue.sh.8Bsl' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.8Bsl +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.8Bsl ++ cd /tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.8Bsl ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tac + test yes =3D yes + local i + for i in '$*' + env tac --version tac (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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 x =3D x + skip_ 'FULL_PARTITION_TMPDIR not defined' + warn_ 'tac-continue.sh: skipped test: FULL_PARTITION_TMPDIR not defined= ' + case $IFS in + printf '%s\n' 'tac-continue.sh: skipped test: FULL_PARTITION_TMPDIR not= defined' tac-continue.sh: skipped test: FULL_PARTITION_TMPDIR not defined + test 9 =3D 2 + printf '%s\n' 'tac-continue.sh: skipped test: FULL_PARTITION_TMPDIR not= defined' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.8Bsl + rm -rf /tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.8Bsl + exit 77 SKIP tests/misc/tac-continue.sh (exit status: 77) FAIL: tests/misc/tee =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-tee.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-tee.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-tee.sh.eZ0l +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-tee.sh.eZ0l ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-tee.sh.eZ0l ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:53 /tmp/32-bit/coreutils-8.24/gt-t= ee.sh.eZ0l' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-tee.sh.eZ0l +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-tee.sh.eZ0l ++ cd /tmp/32-bit/coreutils-8.24/gt-tee.sh.eZ0l ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tee + test yes =3D yes + local i + for i in '$*' + env tee --version tee (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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, Richard M. Stallman, and David MacKenzie. + echo line + for n in 0 1 2 12 13 ++ seq 0 + files=3D + rm -f + tee + for f in out '$files' + compare sample out + compare_dev_null_ sample out + test 2 =3D 2 + test xsample =3D x/dev/null + test xout =3D x/dev/null + return 2 + case $? in + compare_ sample out + diff -u sample out + rm -f diff.out + true + for n in 0 1 2 12 13 ++ seq 1 + files=3D1 + rm -f 1 + tee 1 + for f in out '$files' + compare sample out + compare_dev_null_ sample out + test 2 =3D 2 + test xsample =3D x/dev/null + test xout =3D x/dev/null + return 2 + case $? in + compare_ sample out + diff -u sample out + rm -f diff.out + true + for f in out '$files' + compare sample 1 + compare_dev_null_ sample 1 + test 2 =3D 2 + test xsample =3D x/dev/null + test x1 =3D x/dev/null + return 2 + case $? in + compare_ sample 1 + diff -u sample 1 + rm -f diff.out + true + for n in 0 1 2 12 13 ++ seq 2 + files=3D'1 2' + rm -f 1 2 + tee 1 2 + for f in out '$files' + compare sample out + compare_dev_null_ sample out + test 2 =3D 2 + test xsample =3D x/dev/null + test xout =3D x/dev/null + return 2 + case $? in + compare_ sample out + diff -u sample out + rm -f diff.out + true + for f in out '$files' + compare sample 1 + compare_dev_null_ sample 1 + test 2 =3D 2 + test xsample =3D x/dev/null + test x1 =3D x/dev/null + return 2 + case $? in + compare_ sample 1 + diff -u sample 1 + rm -f diff.out + true + for f in out '$files' + compare sample 2 + compare_dev_null_ sample 2 + test 2 =3D 2 + test xsample =3D x/dev/null + test x2 =3D x/dev/null + return 2 + case $? in + compare_ sample 2 + diff -u sample 2 + rm -f diff.out + true + for n in 0 1 2 12 13 ++ seq 12 + files=3D'1 2 3 4 5 6 7 8 9 10 11 12' + rm -f 1 2 3 4 5 6 7 8 9 10 11 12 + tee 1 2 3 4 5 6 7 8 9 10 11 12 + for f in out '$files' + compare sample out + compare_dev_null_ sample out + test 2 =3D 2 + test xsample =3D x/dev/null + test xout =3D x/dev/null + return 2 + case $? in + compare_ sample out + diff -u sample out + rm -f diff.out + true + for f in out '$files' + compare sample 1 + compare_dev_null_ sample 1 + test 2 =3D 2 + test xsample =3D x/dev/null + test x1 =3D x/dev/null + return 2 + case $? in + compare_ sample 1 + diff -u sample 1 + rm -f diff.out + true + for f in out '$files' + compare sample 2 + compare_dev_null_ sample 2 + test 2 =3D 2 + test xsample =3D x/dev/null + test x2 =3D x/dev/null + return 2 + case $? in + compare_ sample 2 + diff -u sample 2 + rm -f diff.out + true + for f in out '$files' + compare sample 3 + compare_dev_null_ sample 3 + test 2 =3D 2 + test xsample =3D x/dev/null + test x3 =3D x/dev/null + return 2 + case $? in + compare_ sample 3 + diff -u sample 3 + rm -f diff.out + true + for f in out '$files' + compare sample 4 + compare_dev_null_ sample 4 + test 2 =3D 2 + test xsample =3D x/dev/null + test x4 =3D x/dev/null + return 2 + case $? in + compare_ sample 4 + diff -u sample 4 + rm -f diff.out + true + for f in out '$files' + compare sample 5 + compare_dev_null_ sample 5 + test 2 =3D 2 + test xsample =3D x/dev/null + test x5 =3D x/dev/null + return 2 + case $? in + compare_ sample 5 + diff -u sample 5 + rm -f diff.out + true + for f in out '$files' + compare sample 6 + compare_dev_null_ sample 6 + test 2 =3D 2 + test xsample =3D x/dev/null + test x6 =3D x/dev/null + return 2 + case $? in + compare_ sample 6 + diff -u sample 6 + rm -f diff.out + true + for f in out '$files' + compare sample 7 + compare_dev_null_ sample 7 + test 2 =3D 2 + test xsample =3D x/dev/null + test x7 =3D x/dev/null + return 2 + case $? in + compare_ sample 7 + diff -u sample 7 + rm -f diff.out + true + for f in out '$files' + compare sample 8 + compare_dev_null_ sample 8 + test 2 =3D 2 + test xsample =3D x/dev/null + test x8 =3D x/dev/null + return 2 + case $? in + compare_ sample 8 + diff -u sample 8 + rm -f diff.out + true + for f in out '$files' + compare sample 9 + compare_dev_null_ sample 9 + test 2 =3D 2 + test xsample =3D x/dev/null + test x9 =3D x/dev/null + return 2 + case $? in + compare_ sample 9 + diff -u sample 9 + rm -f diff.out + true + for f in out '$files' + compare sample 10 + compare_dev_null_ sample 10 + test 2 =3D 2 + test xsample =3D x/dev/null + test x10 =3D x/dev/null + return 2 + case $? in + compare_ sample 10 + diff -u sample 10 + rm -f diff.out + true + for f in out '$files' + compare sample 11 + compare_dev_null_ sample 11 + test 2 =3D 2 + test xsample =3D x/dev/null + test x11 =3D x/dev/null + return 2 + case $? in + compare_ sample 11 + diff -u sample 11 + rm -f diff.out + true + for f in out '$files' + compare sample 12 + compare_dev_null_ sample 12 + test 2 =3D 2 + test xsample =3D x/dev/null + test x12 =3D x/dev/null + return 2 + case $? in + compare_ sample 12 + diff -u sample 12 + rm -f diff.out + true + for n in 0 1 2 12 13 ++ seq 13 + files=3D'1 2 3 4 5 6 7 8 9 10 11 12 13' + rm -f 1 2 3 4 5 6 7 8 9 10 11 12 13 + tee 1 2 3 4 5 6 7 8 9 10 11 12 13 + for f in out '$files' + compare sample out + compare_dev_null_ sample out + test 2 =3D 2 + test xsample =3D x/dev/null + test xout =3D x/dev/null + return 2 + case $? in + compare_ sample out + diff -u sample out + rm -f diff.out + true + for f in out '$files' + compare sample 1 + compare_dev_null_ sample 1 + test 2 =3D 2 + test xsample =3D x/dev/null + test x1 =3D x/dev/null + return 2 + case $? in + compare_ sample 1 + diff -u sample 1 + rm -f diff.out + true + for f in out '$files' + compare sample 2 + compare_dev_null_ sample 2 + test 2 =3D 2 + test xsample =3D x/dev/null + test x2 =3D x/dev/null + return 2 + case $? in + compare_ sample 2 + diff -u sample 2 + rm -f diff.out + true + for f in out '$files' + compare sample 3 + compare_dev_null_ sample 3 + test 2 =3D 2 + test xsample =3D x/dev/null + test x3 =3D x/dev/null + return 2 + case $? in + compare_ sample 3 + diff -u sample 3 + rm -f diff.out + true + for f in out '$files' + compare sample 4 + compare_dev_null_ sample 4 + test 2 =3D 2 + test xsample =3D x/dev/null + test x4 =3D x/dev/null + return 2 + case $? in + compare_ sample 4 + diff -u sample 4 + rm -f diff.out + true + for f in out '$files' + compare sample 5 + compare_dev_null_ sample 5 + test 2 =3D 2 + test xsample =3D x/dev/null + test x5 =3D x/dev/null + return 2 + case $? in + compare_ sample 5 + diff -u sample 5 + rm -f diff.out + true + for f in out '$files' + compare sample 6 + compare_dev_null_ sample 6 + test 2 =3D 2 + test xsample =3D x/dev/null + test x6 =3D x/dev/null + return 2 + case $? in + compare_ sample 6 + diff -u sample 6 + rm -f diff.out + true + for f in out '$files' + compare sample 7 + compare_dev_null_ sample 7 + test 2 =3D 2 + test xsample =3D x/dev/null + test x7 =3D x/dev/null + return 2 + case $? in + compare_ sample 7 + diff -u sample 7 + rm -f diff.out + true + for f in out '$files' + compare sample 8 + compare_dev_null_ sample 8 + test 2 =3D 2 + test xsample =3D x/dev/null + test x8 =3D x/dev/null + return 2 + case $? in + compare_ sample 8 + diff -u sample 8 + rm -f diff.out + true + for f in out '$files' + compare sample 9 + compare_dev_null_ sample 9 + test 2 =3D 2 + test xsample =3D x/dev/null + test x9 =3D x/dev/null + return 2 + case $? in + compare_ sample 9 + diff -u sample 9 + rm -f diff.out + true + for f in out '$files' + compare sample 10 + compare_dev_null_ sample 10 + test 2 =3D 2 + test xsample =3D x/dev/null + test x10 =3D x/dev/null + return 2 + case $? in + compare_ sample 10 + diff -u sample 10 + rm -f diff.out + true + for f in out '$files' + compare sample 11 + compare_dev_null_ sample 11 + test 2 =3D 2 + test xsample =3D x/dev/null + test x11 =3D x/dev/null + return 2 + case $? in + compare_ sample 11 + diff -u sample 11 + rm -f diff.out + true + for f in out '$files' + compare sample 12 + compare_dev_null_ sample 12 + test 2 =3D 2 + test xsample =3D x/dev/null + test x12 =3D x/dev/null + return 2 + case $? in + compare_ sample 12 + diff -u sample 12 + rm -f diff.out + true + for f in out '$files' + compare sample 13 + compare_dev_null_ sample 13 + test 2 =3D 2 + test xsample =3D x/dev/null + test x13 =3D x/dev/null + return 2 + case $? in + compare_ sample 13 + diff -u sample 13 + rm -f diff.out + true + tee - + compare sample ./- + compare_dev_null_ sample ./- + test 2 =3D 2 + test xsample =3D x/dev/null + test x./- =3D x/dev/null + return 2 + case $? in + compare_ sample ./- + diff -u sample ./- + rm -f diff.out + true + compare sample out + compare_dev_null_ sample out + test 2 =3D 2 + test xsample =3D x/dev/null + test xout =3D x/dev/null + return 2 + case $? in + compare_ sample out + diff -u sample out + rm -f diff.out + true + compare /dev/null err + compare_dev_null_ /dev/null err + test 2 =3D 2 + test x/dev/null =3D x/dev/null + test -s err + return 0 + return 0 + test -w /dev/full + mkfifo_or_skip_ fifo + test 1 =3D 1 + mkfifo fifo + read_fifo + yes + timeout 10 dd count=3D1 if=3Dfifo of=3D/dev/null status=3Dnone Broken Pipe + pipe_status=3D141 + read_fifo + timeout 10 dd count=3D1 if=3Dfifo of=3D/dev/null status=3Dnone + yes + returns_ 141 timeout 10 tee ./e/noent ++ wc -l + test 2 =3D 1 + cat err tee: ./e/noent: No such file or directory =2E/tests/init.sh: line 102: 6716 Broken Pipe "$@" + fail=3D1 + read_fifo + timeout 10 dd count=3D1 if=3Dfifo of=3D/dev/null status=3Dnone + yes + timeout 10 tee -p ++ wc -l + test 0 =3D 0 + read_fifo + timeout 10 dd count=3D1 if=3Dfifo of=3D/dev/null status=3Dnone + yes + returns_ 1 timeout 10 tee --output-error=3Dwarn ++ wc -l + test 1 =3D 1 + read_fifo + yes + timeout 10 dd count=3D1 if=3Dfifo of=3D/dev/null status=3Dnone + returns_ 1 timeout 10 tee --output-error=3Dexit /dev/null ++ wc -l + test 1 =3D 1 + read_fifo + timeout 10 dd count=3D1 if=3Dfifo of=3D/dev/null status=3Dnone + yes + returns_ 1 timeout 10 tee --output-error=3Dexit ./e/noent ++ wc -l + test 1 =3D 1 + read_fifo + timeout 10 dd count=3D1 if=3Dfifo of=3D/dev/null status=3Dnone + yes + timeout 10 tee --output-error=3Dexit-nopipe ++ wc -l + test 0 =3D 0 + wait + Exit 1 + set +e + exit 1 + exit 1 + remove_tmp_ + __st=3D1 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-tee.sh.eZ0l + rm -rf /tmp/32-bit/coreutils-8.24/gt-tee.sh.eZ0l + exit 1 FAIL tests/misc/tee.sh (exit status: 1) SKIP: tests/misc/timeout-group =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-timeout-group.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-timeout-group.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.F0WC +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.F0WC ++++ tr S - ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.F0WC +++ perms=3D'drwx------ 2 69 Jul 18 01:53 /tmp/32-bit/coreutils-8.24/gt-t= imeout-group.sh.F0WC' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.F0WC +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.F0WC ++ cd /tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.F0WC ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ timeout + test yes =3D yes + local i + for i in '$*' + env timeout --version timeout (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by P'adraig Brady. + setsid true =2E/tests/misc/timeout-group.sh: line 31: setsid: command not found + skip_ 'setsid required to control groups' + warn_ 'timeout-group.sh: skipped test: setsid required to control group= s' + case $IFS in + printf '%s\n' 'timeout-group.sh: skipped test: setsid required to contr= ol groups' timeout-group.sh: skipped test: setsid required to control groups + test 9 =3D 2 + printf '%s\n' 'timeout-group.sh: skipped test: setsid required to contr= ol groups' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.F0WC + rm -rf /tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.F0WC + exit 77 SKIP tests/misc/timeout-group.sh (exit status: 77) FAIL: tests/misc/timeout-parameters =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-timeout-parameters.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-timeout-parameters.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.bnHt +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.bnHt ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.bnHt ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:53 /tmp/32-bit/coreutils-8.24/gt-t= imeout-parameters.sh.bnHt' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.bnHt +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.bnHt ++ cd /tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.bnHt ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ timeout + test yes =3D yes + local i + for i in '$*' + env timeout --version timeout (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by P'adraig Brady. + getlimits_ ++ getlimits + eval CHAR_MAX=3D127 CHAR_OFLOW=3D128 CHAR_MIN=3D-128 CHAR_UFLOW=3D-129 = SCHAR_MAX=3D127 SCHAR_OFLOW=3D128 SCHAR_MIN=3D-128 SCHAR_UFLOW=3D-129 UCH= AR_MAX=3D255 UCHAR_OFLOW=3D256 SHRT_MAX=3D32767 SHRT_OFLOW=3D32768 SHRT_M= IN=3D-32768 SHRT_UFLOW=3D-32769 INT_MAX=3D2147483647 INT_OFLOW=3D21474836= 48 INT_MIN=3D-2147483648 INT_UFLOW=3D-2147483649 UINT_MAX=3D4294967295 UI= NT_OFLOW=3D4294967296 LONG_MAX=3D2147483647 LONG_OFLOW=3D2147483648 LONG_= MIN=3D-2147483648 LONG_UFLOW=3D-2147483649 ULONG_MAX=3D4294967295 ULONG_O= FLOW=3D4294967296 SIZE_MAX=3D4294967295 SIZE_OFLOW=3D4294967296 SSIZE_MAX= =3D2147483647 SSIZE_OFLOW=3D2147483648 SSIZE_MIN=3D-2147483648 SSIZE_UFLO= W=3D-2147483649 TIME_T_MAX=3D2147483647 TIME_T_OFLOW=3D2147483648 TIME_T_= MIN=3D-2147483648 TIME_T_UFLOW=3D-2147483649 UID_T_MAX=3D2147483647 UID_T= _OFLOW=3D2147483648 GID_T_MAX=3D2147483647 GID_T_OFLOW=3D2147483648 PID_T= _MAX=3D2147483647 PID_T_OFLOW=3D2147483648 PID_T_MIN=3D-2147483648 PID_T_= UFLOW=3D-2147483649 OFF_T_MAX=3D9223372036854775807 OFF_T_OFLOW=3D9223372= 036854775808 OFF_T_MIN=3D-9223372036854775808 OFF_T_UFLOW=3D-922337203685= 4775809 INTMAX_MAX=3D9223372036854775807 INTMAX_OFLOW=3D92233720368547758= 08 INTMAX_MIN=3D-9223372036854775808 INTMAX_UFLOW=3D-9223372036854775809 = UINTMAX_MAX=3D18446744073709551615 UINTMAX_OFLOW=3D18446744073709551616 F= LT_MIN=3D1.1754944e-38 FLT_MAX=3D3.4028235e+38 DBL_MIN=3D2.22507385850720= 14e-308 DBL_MAX=3D1.7976931348623157e+308 LDBL_MIN=3D3.362103143112093506= 3e-4932 LDBL_MAX=3D1.189731495357231765e+4932 ++ CHAR_MAX=3D127 ++ CHAR_OFLOW=3D128 ++ CHAR_MIN=3D-128 ++ CHAR_UFLOW=3D-129 ++ SCHAR_MAX=3D127 ++ SCHAR_OFLOW=3D128 ++ SCHAR_MIN=3D-128 ++ SCHAR_UFLOW=3D-129 ++ UCHAR_MAX=3D255 ++ UCHAR_OFLOW=3D256 ++ SHRT_MAX=3D32767 ++ SHRT_OFLOW=3D32768 ++ SHRT_MIN=3D-32768 ++ SHRT_UFLOW=3D-32769 ++ INT_MAX=3D2147483647 ++ INT_OFLOW=3D2147483648 ++ INT_MIN=3D-2147483648 ++ INT_UFLOW=3D-2147483649 ++ UINT_MAX=3D4294967295 ++ UINT_OFLOW=3D4294967296 ++ LONG_MAX=3D2147483647 ++ LONG_OFLOW=3D2147483648 ++ LONG_MIN=3D-2147483648 ++ LONG_UFLOW=3D-2147483649 ++ ULONG_MAX=3D4294967295 ++ ULONG_OFLOW=3D4294967296 ++ SIZE_MAX=3D4294967295 ++ SIZE_OFLOW=3D4294967296 ++ SSIZE_MAX=3D2147483647 ++ SSIZE_OFLOW=3D2147483648 ++ SSIZE_MIN=3D-2147483648 ++ SSIZE_UFLOW=3D-2147483649 ++ TIME_T_MAX=3D2147483647 ++ TIME_T_OFLOW=3D2147483648 ++ TIME_T_MIN=3D-2147483648 ++ TIME_T_UFLOW=3D-2147483649 ++ UID_T_MAX=3D2147483647 ++ UID_T_OFLOW=3D2147483648 ++ GID_T_MAX=3D2147483647 ++ GID_T_OFLOW=3D2147483648 ++ PID_T_MAX=3D2147483647 ++ PID_T_OFLOW=3D2147483648 ++ PID_T_MIN=3D-2147483648 ++ PID_T_UFLOW=3D-2147483649 ++ OFF_T_MAX=3D9223372036854775807 ++ OFF_T_OFLOW=3D9223372036854775808 ++ OFF_T_MIN=3D-9223372036854775808 ++ OFF_T_UFLOW=3D-9223372036854775809 ++ INTMAX_MAX=3D9223372036854775807 ++ INTMAX_OFLOW=3D9223372036854775808 ++ INTMAX_MIN=3D-9223372036854775808 ++ INTMAX_UFLOW=3D-9223372036854775809 ++ UINTMAX_MAX=3D18446744073709551615 ++ UINTMAX_OFLOW=3D18446744073709551616 ++ FLT_MIN=3D1.1754944e-38 ++ FLT_MAX=3D3.4028235e+38 ++ DBL_MIN=3D2.2250738585072014e-308 ++ DBL_MAX=3D1.7976931348623157e+308 ++ LDBL_MIN=3D3.3621031431120935063e-4932 ++ LDBL_MAX=3D1.189731495357231765e+4932 + test 2147483647 + timeout invalid sleep 0 timeout: invalid time interval 'invalid' Try 'timeout --help' for more information. + test 125 =3D 125 + timeout --kill-after=3Dinvalid 1 sleep 0 timeout: invalid time interval 'invalid' Try 'timeout --help' for more information. + test 125 =3D 125 + timeout 42D sleep 0 timeout: invalid time interval '42D' Try 'timeout --help' for more information. + test 125 =3D 125 +++ date +%s ++ expr 2147483647 - 1437184440 + 100 + KERNEL_OVERFLOW_LIMIT=3D710299307 + timeout 710299307 sleep 0 + test 0 '!=3D' 124 + timeout 4294967296 sleep 0 + test 124 =3D 0 + fail=3D1 ++ expr 4294967295 / 86400 + 1 + timeout 49711d sleep 0 + test 124 =3D 0 + fail=3D1 + timeout 999999999999999999999999999999999999999999999999999999999999d s= leep 0 + test 124 =3D 0 + fail=3D1 + timeout 2.34e+5d sleep 0 + test 124 =3D 0 + fail=3D1 + timeout 2.34 sleep 0 + test 0 =3D 0 + timeout .999999999 sleep 0 + timeout --signal=3Dinvalid 1 sleep 0 timeout: invalid: invalid signal Try 'timeout --help' for more information. + test 125 =3D 125 + timeout 10 . timeout: failed to run command '.': Permission denied + test 126 =3D 126 + timeout 10 no_such timeout: failed to run command 'no_such': No such file or directory + test 127 =3D 127 + Exit 1 + set +e + exit 1 + exit 1 + remove_tmp_ + __st=3D1 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.bnHt= + rm -rf /tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.bnHt + exit 1 FAIL tests/misc/timeout-parameters.sh (exit status: 1) SKIP: tests/misc/truncate-fail-diag =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-truncate-fail-diag.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-truncate-fail-diag.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-truncate-fail-diag.sh.HpLg +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-truncate-fail-diag.sh.HpLg ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-truncate-fail-diag.sh.HpLg ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-t= runcate-fail-diag.sh.HpLg' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-truncate-fail-diag.sh.HpLg +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-truncate-fail-diag.sh.HpLg ++ cd /tmp/32-bit/coreutils-8.24/gt-truncate-fail-diag.sh.HpLg ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ truncate + test yes =3D yes + local i + for i in '$*' + env truncate --version truncate (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by P'adraig Brady. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'truncate-fail-diag.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'truncate-fail-diag.sh: skipped test: must be run as non-= root' truncate-fail-diag.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'truncate-fail-diag.sh: skipped test: must be run as non-= root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-truncate-fail-diag.sh.HpLg= + rm -rf /tmp/32-bit/coreutils-8.24/gt-truncate-fail-diag.sh.HpLg + exit 77 SKIP tests/misc/truncate-fail-diag.sh (exit status: 77) SKIP: tests/misc/xattr =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-xattr.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-xattr.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-xattr.sh.0xcg +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-xattr.sh.0xcg ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-xattr.sh.0xcg ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-x= attr.sh.0xcg' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-xattr.sh.0xcg +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-xattr.sh.0xcg ++ cd /tmp/32-bit/coreutils-8.24/gt-xattr.sh.0xcg ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp mv ginstall + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env ginstall --version install (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + touch src dest + cp --preserve=3Dxattr -n src dest cp: cannot preserve extended attributes, cp is built without xattr suppor= t + skip_ 'coreutils built without xattr support' + warn_ 'xattr.sh: skipped test: coreutils built without xattr support' + case $IFS in + printf '%s\n' 'xattr.sh: skipped test: coreutils built without xattr su= pport' xattr.sh: skipped test: coreutils built without xattr support + test 9 =3D 2 + printf '%s\n' 'xattr.sh: skipped test: coreutils built without xattr su= pport' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-xattr.sh.0xcg + rm -rf /tmp/32-bit/coreutils-8.24/gt-xattr.sh.0xcg + exit 77 SKIP tests/misc/xattr.sh (exit status: 77) SKIP: tests/chown/preserve-root =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-preserve-root.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-preserve-root.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-preserve-root.sh.m8Ex +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-preserve-root.sh.m8Ex ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-preserve-root.sh.m8Ex ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-p= reserve-root.sh.m8Ex' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-preserve-root.sh.m8Ex +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-preserve-root.sh.m8Ex ++ cd /tmp/32-bit/coreutils-8.24/gt-preserve-root.sh.m8Ex ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chown + test yes =3D yes + local i + for i in '$*' + env chown --version chown (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'preserve-root.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'preserve-root.sh: skipped test: must be run as non-root'= preserve-root.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'preserve-root.sh: skipped test: must be run as non-root'= + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-preserve-root.sh.m8Ex + rm -rf /tmp/32-bit/coreutils-8.24/gt-preserve-root.sh.m8Ex + exit 77 SKIP tests/chown/preserve-root.sh (exit status: 77) SKIP: tests/cp/acl =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-acl.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-acl.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-acl.sh.Hm5R +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-acl.sh.Hm5R ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-acl.sh.Hm5R ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-a= cl.sh.Hm5R' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-acl.sh.Hm5R +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-acl.sh.Hm5R ++ cd /tmp/32-bit/coreutils-8.24/gt-acl.sh.Hm5R ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp getfacl setfacl + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env getfacl --version getfacl: illegal option -- version usage: getfacl [-ad] file ...=20 + for i in '$*' + env setfacl --version usage: setfacl [-r] -f aclfile file ... setfacl [-r] -d acl_entries file ... setfacl [-r] -m acl_entries file ... setfacl [-r] -s acl_entries file ... + require_acl_ + getfacl --version + skip_ 'This test requires getfacl and setfacl.' + warn_ 'acl.sh: skipped test: This test requires getfacl and setfacl.' + case $IFS in + printf '%s\n' 'acl.sh: skipped test: This test requires getfacl and set= facl.' acl.sh: skipped test: This test requires getfacl and setfacl. + test 9 =3D 2 + sed 1q + printf '%s\n' 'acl.sh: skipped test: This test requires getfacl and set= facl.' + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-acl.sh.Hm5R + rm -rf /tmp/32-bit/coreutils-8.24/gt-acl.sh.Hm5R + exit 77 SKIP tests/cp/acl.sh (exit status: 77) SKIP: tests/cp/existing-perm-race =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-existing-perm-race.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-existing-perm-race.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.vggh +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.vggh ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.vggh ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-e= xisting-perm-race.sh.vggh' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.vggh +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.vggh ++ cd /tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.vggh ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_membership_in_two_groups_ + test 0 =3D 0 + groups=3D0 + case "$groups" in + skip_ '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=3D'\''users cdrom'\'' make check ' + warn_ 'existing-perm-race.sh: skipped 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=3D'\''users cdrom'\'' make check ' + case $IFS in + printf '%s\n' 'existing-perm-race.sh: skipped 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=3D'\''users cdrom'\'' make check ' existing-perm-race.sh: skipped 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=3D'users cdrom' make check + test 9 =3D 2 + printf '%s\n' 'existing-perm-race.sh: skipped 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=3D'\''users cdrom'\'' make check ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.vggh= + rm -rf /tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.vggh + exit 77 SKIP tests/cp/existing-perm-race.sh (exit status: 77) SKIP: tests/cp/fail-perm =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-fail-perm.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-fail-perm.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-fail-perm.sh.EnKk +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-fail-perm.sh.EnKk ++++ tr S - ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-fail-perm.sh.EnKk +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-f= ail-perm.sh.EnKk' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-fail-perm.sh.EnKk +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-fail-perm.sh.EnKk ++ cd /tmp/32-bit/coreutils-8.24/gt-fail-perm.sh.EnKk ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'fail-perm.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'fail-perm.sh: skipped test: must be run as non-root' fail-perm.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'fail-perm.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-fail-perm.sh.EnKk + rm -rf /tmp/32-bit/coreutils-8.24/gt-fail-perm.sh.EnKk + exit 77 SKIP tests/cp/fail-perm.sh (exit status: 77) SKIP: tests/cp/fiemap-empty =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-fiemap-empty.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-fiemap-empty.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.zfd1 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.zfd1 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.zfd1 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-f= iemap-empty.sh.zfd1' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.zfd1 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.zfd1 ++ cd /tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.zfd1 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + skip_ 'disabled for now' + warn_ 'fiemap-empty.sh: skipped test: disabled for now' + case $IFS in + printf '%s\n' 'fiemap-empty.sh: skipped test: disabled for now' fiemap-empty.sh: skipped test: disabled for now + test 9 =3D 2 + sed 1q + printf '%s\n' 'fiemap-empty.sh: skipped test: disabled for now' + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.zfd1 + rm -rf /tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.zfd1 + exit 77 SKIP tests/cp/fiemap-empty.sh (exit status: 77) SKIP: tests/cp/fiemap-FMR =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-fiemap-FMR.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-fiemap-FMR.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.em0F +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.em0F ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.em0F ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-f= iemap-FMR.sh.em0F' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.em0F +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.em0F ++ cd /tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.em0F ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_valgrind_ + valgrind --error-exitcode=3D1 true + skip_ 'requires a working valgrind' + warn_ 'fiemap-FMR.sh: skipped test: requires a working valgrind' + case $IFS in + printf '%s\n' 'fiemap-FMR.sh: skipped test: requires a working valgrind= ' fiemap-FMR.sh: skipped test: requires a working valgrind + test 9 =3D 2 + printf '%s\n' 'fiemap-FMR.sh: skipped test: requires a working valgrind= ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.em0F + rm -rf /tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.em0F + exit 77 SKIP tests/cp/fiemap-FMR.sh (exit status: 77) SKIP: tests/cp/fiemap-perf =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-fiemap-perf.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-fiemap-perf.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.i4Xf +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.i4Xf ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.i4Xf ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-f= iemap-perf.sh.i4Xf' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.i4Xf +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.i4Xf ++ cd /tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.i4Xf ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + touch fiemap_chk + fiemap_capable_ fiemap_chk + python + python /tmp/32-bit/coreutils-8.24/tests/fiemap-capable fiemap_chk + skip_ 'this file system lacks FIEMAP support' + warn_ 'fiemap-perf.sh: skipped test: this file system lacks FIEMAP supp= ort' + case $IFS in + printf '%s\n' 'fiemap-perf.sh: skipped test: this file system lacks FIE= MAP support' fiemap-perf.sh: skipped test: this file system lacks FIEMAP support + test 9 =3D 2 + printf '%s\n' 'fiemap-perf.sh: skipped test: this file system lacks FIE= MAP support' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.i4Xf + rm -rf /tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.i4Xf + exit 77 SKIP tests/cp/fiemap-perf.sh (exit status: 77) SKIP: tests/cp/fiemap-2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-fiemap-2.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-fiemap-2.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.bA51 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.bA51 ++++ tr S - ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.bA51 +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-f= iemap-2.sh.bA51' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.bA51 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.bA51 ++ cd /tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.bA51 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + touch fiemap_chk + fiemap_capable_ fiemap_chk + python + python /tmp/32-bit/coreutils-8.24/tests/fiemap-capable fiemap_chk + skip_ 'this file system lacks FIEMAP support' + warn_ 'fiemap-2.sh: skipped test: this file system lacks FIEMAP support= ' + case $IFS in + printf '%s\n' 'fiemap-2.sh: skipped test: this file system lacks FIEMAP= support' fiemap-2.sh: skipped test: this file system lacks FIEMAP support + test 9 =3D 2 + printf '%s\n' 'fiemap-2.sh: skipped test: this file system lacks FIEMAP= support' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.bA51 + rm -rf /tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.bA51 + exit 77 SKIP tests/cp/fiemap-2.sh (exit status: 77) SKIP: tests/cp/link-symlink =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-link-symlink.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-link-symlink.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-link-symlink.sh.tDgM +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-link-symlink.sh.tDgM ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-link-symlink.sh.tDgM ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-l= ink-symlink.sh.tDgM' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-link-symlink.sh.tDgM +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-link-symlink.sh.tDgM ++ cd /tmp/32-bit/coreutils-8.24/gt-link-symlink.sh.tDgM ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + touch file + ln -s file link + touch -m -h -d 2011-01-01 link touch: setting times of 'link': Operation not applicable + skip_ 'Your system doesn'\''t support updating symlink timestamps' + warn_ 'link-symlink.sh: skipped test: Your system doesn'\''t support up= dating symlink timestamps' + case $IFS in + printf '%s\n' 'link-symlink.sh: skipped test: Your system doesn'\''t su= pport updating symlink timestamps' link-symlink.sh: skipped test: Your system doesn't support updating symli= nk timestamps + test 9 =3D 2 + sed 1q + printf '%s\n' 'link-symlink.sh: skipped test: Your system doesn'\''t su= pport updating symlink timestamps' + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-link-symlink.sh.tDgM + rm -rf /tmp/32-bit/coreutils-8.24/gt-link-symlink.sh.tDgM + exit 77 SKIP tests/cp/link-symlink.sh (exit status: 77) SKIP: tests/cp/nfs-removal-race =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-nfs-removal-race.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-nfs-removal-race.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.c9Fi +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.c9Fi ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.c9Fi ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-n= fs-removal-race.sh.c9Fi' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.c9Fi +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.c9Fi ++ cd /tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.c9Fi ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_gcc_shared_ + gcc_shared_ - d.so -xc + local in=3D- + local out=3Dd.so + shift 2 + gcc -std=3Dgnu99 -Wall -shared --std=3Dgnu99 -fPIC -O2 -xc - -o d.so -l= dl + rm -f d.so + cat + gcc_shared_ k.c k.so + local in=3Dk.c + local out=3Dk.so + shift 2 + gcc -std=3Dgnu99 -Wall -shared --std=3Dgnu99 -fPIC -O2 k.c -o k.so -ldl= + touch d2 + echo xyz + LD_PRELOAD=3D:./k.so + cp src d ld.so.1: cp: fatal: libgcc_s.so.1: open failed: No such file or directory= =2E/tests/cp/nfs-removal-race.sh: line 70: 14014 Killed = LD_PRELOAD=3D$LD_PRELOAD:./k.so cp src d + fail=3D1 + test -f preloaded + skip_ 'LD_PRELOAD was ineffective?' + warn_ 'nfs-removal-race.sh: skipped test: LD_PRELOAD was ineffective?' + case $IFS in + printf '%s\n' 'nfs-removal-race.sh: skipped test: LD_PRELOAD was ineffe= ctive?' nfs-removal-race.sh: skipped test: LD_PRELOAD was ineffective? + test 9 =3D 2 + printf '%s\n' 'nfs-removal-race.sh: skipped test: LD_PRELOAD was ineffe= ctive?' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.c9Fi + rm -rf /tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.c9Fi + exit 77 SKIP tests/cp/nfs-removal-race.sh (exit status: 77) SKIP: tests/cp/perm =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-perm.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-perm.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-perm.sh.G5AV +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-perm.sh.G5AV ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-perm.sh.G5AV ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-p= erm.sh.G5AV' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-perm.sh.G5AV +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-perm.sh.G5AV ++ cd /tmp/32-bit/coreutils-8.24/gt-perm.sh.G5AV ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp mv + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 'perm.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 'perm.sh: skipped test: very expensive: disabled by defau= lt 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' perm.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 'perm.sh: skipped test: very expensive: disabled by defau= lt 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-perm.sh.G5AV + rm -rf /tmp/32-bit/coreutils-8.24/gt-perm.sh.G5AV + exit 77 SKIP tests/cp/perm.sh (exit status: 77) SKIP: tests/cp/preserve-slink-time =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-preserve-slink-time.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-preserve-slink-time.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-preserve-slink-time.sh.4Ff7 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-preserve-slink-time.sh.4Ff7 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-preserve-slink-time.sh.4Ff7 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-p= reserve-slink-time.sh.4Ff7' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-preserve-slink-time.sh.4Ff7 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-preserve-slink-time.sh.4Ff7 ++ cd /tmp/32-bit/coreutils-8.24/gt-preserve-slink-time.sh.4Ff7 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + grep '^#define HAVE_UTIMENSAT 1' /tmp/32-bit/coreutils-8.24/lib/config.= h + grep '^#define HAVE_LUTIMES 1' /tmp/32-bit/coreutils-8.24/lib/config.h + skip_ 'this system lacks the utimensat function' + warn_ 'preserve-slink-time.sh: skipped test: this system lacks the utim= ensat function' + case $IFS in + printf '%s\n' 'preserve-slink-time.sh: skipped test: this system lacks = the utimensat function' preserve-slink-time.sh: skipped test: this system lacks the utimensat fun= ction + test 9 =3D 2 + sed 1q + printf '%s\n' 'preserve-slink-time.sh: skipped test: this system lacks = the utimensat function' + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-preserve-slink-time.sh.4Ff= 7 + rm -rf /tmp/32-bit/coreutils-8.24/gt-preserve-slink-time.sh.4Ff7 + exit 77 SKIP tests/cp/preserve-slink-time.sh (exit status: 77) SKIP: tests/cp/proc-short-read =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-proc-short-read.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-proc-short-read.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.DIHP +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.DIHP ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.DIHP ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-p= roc-short-read.sh.DIHP' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.DIHP +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.DIHP ++ cd /tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.DIHP ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + kall=3D/proc/kallsyms + test -r /proc/kallsyms + skip_ 'your system lacks /proc/kallsyms' + warn_ 'proc-short-read.sh: skipped test: your system lacks /proc/kallsy= ms' + case $IFS in + printf '%s\n' 'proc-short-read.sh: skipped test: your system lacks /pro= c/kallsyms' proc-short-read.sh: skipped test: your system lacks /proc/kallsyms + test 9 =3D 2 + printf '%s\n' 'proc-short-read.sh: skipped test: your system lacks /pro= c/kallsyms' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.DIHP + rm -rf /tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.DIHP + exit 77 SKIP tests/cp/proc-short-read.sh (exit status: 77) SKIP: tests/cp/sparse =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sparse.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sparse.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sparse.sh.JX55 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sparse.sh.JX55 ++++ tr S - ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sparse.sh.JX55 +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-s= parse.sh.JX55' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sparse.sh.JX55 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sparse.sh.JX55 ++ cd /tmp/32-bit/coreutils-8.24/gt-sparse.sh.JX55 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_sparse_support_ + test 0 =3D 0 + t=3Dsparse.16247 + dd bs=3D1 seek=3D128K of=3Dsparse.16247 ++ du -sk sparse.16247 + set x 128 sparse.16247 + kb_size=3D128 + rm -f sparse.16247 + test 128 -ge 128 + skip_ 'this file system does not support sparse files' + warn_ 'sparse.sh: skipped test: this file system does not support spars= e files' + case $IFS in + printf '%s\n' 'sparse.sh: skipped test: this file system does not suppo= rt sparse files' sparse.sh: skipped test: this file system does not support sparse files + test 9 =3D 2 + printf '%s\n' 'sparse.sh: skipped test: this file system does not suppo= rt sparse files' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sparse.sh.JX55 + rm -rf /tmp/32-bit/coreutils-8.24/gt-sparse.sh.JX55 + exit 77 SKIP tests/cp/sparse.sh (exit status: 77) SKIP: tests/cp/sparse-to-pipe =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sparse-to-pipe.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sparse-to-pipe.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.pCOF +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.pCOF ++++ tr S - ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.pCOF +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-s= parse-to-pipe.sh.pCOF' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.pCOF +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.pCOF ++ cd /tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.pCOF ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_sparse_support_ + test 0 =3D 0 + t=3Dsparse.16313 + dd bs=3D1 seek=3D128K of=3Dsparse.16313 ++ du -sk sparse.16313 + set x 128 sparse.16313 + kb_size=3D128 + rm -f sparse.16313 + test 128 -ge 128 + skip_ 'this file system does not support sparse files' + warn_ 'sparse-to-pipe.sh: skipped test: this file system does not suppo= rt sparse files' + case $IFS in + printf '%s\n' 'sparse-to-pipe.sh: skipped test: this file system does n= ot support sparse files' sparse-to-pipe.sh: skipped test: this file system does not support sparse= files + test 9 =3D 2 + sed 1q + printf '%s\n' 'sparse-to-pipe.sh: skipped test: this file system does n= ot support sparse files' + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.pCOF + rm -rf /tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.pCOF + exit 77 SKIP tests/cp/sparse-to-pipe.sh (exit status: 77) SKIP: tests/df/df-symlink =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-df-symlink.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-df-symlink.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.zSdT +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.zSdT ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.zSdT ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-d= f-symlink.sh.z-dT' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.zSdT +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.zSdT ++ cd /tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.zSdT ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ df + test yes =3D yes + local i + for i in '$*' + env df --version df (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Paul Eggert. ++ df --out=3Dsource . ++ tail -n1 + disk=3Dswap + ln -s swap symlink + df --out=3Dsource,target swap df: 'swap': No such file or directory + skip_ 'cannot get info for swap' + warn_ 'df-symlink.sh: skipped test: cannot get info for swap' + case $IFS in + printf '%s\n' 'df-symlink.sh: skipped test: cannot get info for swap' df-symlink.sh: skipped test: cannot get info for swap + test 9 =3D 2 + sed 1q + printf '%s\n' 'df-symlink.sh: skipped test: cannot get info for swap' + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.zSdT + rm -rf /tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.zSdT + exit 77 SKIP tests/df/df-symlink.sh (exit status: 77) SKIP: tests/df/unreadable =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-unreadable.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-unreadable.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-unreadable.sh.jqqB +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-unreadable.sh.jqqB ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-unreadable.sh.jqqB ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-u= nreadable.sh.jqqB' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-unreadable.sh.jqqB +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-unreadable.sh.jqqB ++ cd /tmp/32-bit/coreutils-8.24/gt-unreadable.sh.jqqB ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ df + test yes =3D yes + local i + for i in '$*' + env df --version df (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Paul Eggert. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'unreadable.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'unreadable.sh: skipped test: must be run as non-root' unreadable.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'unreadable.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-unreadable.sh.jqqB + rm -rf /tmp/32-bit/coreutils-8.24/gt-unreadable.sh.jqqB + exit 77 SKIP tests/df/unreadable.sh (exit status: 77) SKIP: tests/df/no-mtab-status =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-no-mtab-status.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-no-mtab-status.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.j7sr +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.j7sr ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.j7sr ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-n= o-mtab-status.sh.j7sr' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.j7sr +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.j7sr ++ cd /tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.j7sr ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ df + test yes =3D yes + local i + for i in '$*' + env df --version df (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Paul Eggert. + require_gcc_shared_ + gcc_shared_ - d.so -xc + local in=3D- + local out=3Dd.so + shift 2 + gcc -std=3Dgnu99 -Wall -shared --std=3Dgnu99 -fPIC -O2 -xc - -o d.so -l= dl + rm -f d.so + timeout 10 df Filesystem 1K-blocks Used Available Use% Mounte= d on rpool/ROOT/s10u08 99089368 3949464 95139904 4% / swap 4847596 968 4846628 1% /etc/s= vc/volatile rpool/ROOT/s10u08/var 96395923 1256019 95139904 2% /var swap 4966948 120320 4846628 3% /tmp swap 4846664 36 4846628 1% /var/r= un rpool/export 95139927 23 95139904 1% /expor= t rpool/export/home 95143836 3932 95139904 1% /expor= t/home rpool/pkgs 95140034 130 95139904 1% /pkgs rpool/pkgs/32-bit 95141776 1872 95139904 1% /pkgs/= 32-bit rpool/pkgs/32-bit/release 101769165 6629261 95139904 7% /pkgs/= 32-bit/release rpool/pkgs/32-bit/release/ARCHIVE 101325707 6185803 95139904 7% /pkgs/= 32-bit/release/ARCHIVE rpool/pkgs/64-bit 95139927 23 95139904 1% /pkgs/= 64-bit rpool/pkgs/64-bit/release 95139927 23 95139904 1% /pkgs/= 64-bit/release rpool/pkgs/64-bit/release/ARCHIVE 95139925 21 95139904 1% /pkgs/= 64-bit/release/ARCHIVE rpool/pkgs/release 95145061 5157 95139904 1% /pkgs/= release rpool/pkgs/release/ARCHIVE 95139925 21 95139904 1% /pkgs/= release/ARCHIVE rpool 95139938 34 95139904 1% /rpool= + grep '^#define HAVE_MNTENT_H 1' /tmp/32-bit/coreutils-8.24/lib/config.h= + skip_ 'no mntent.h available to confirm the interface' + warn_ 'no-mtab-status.sh: skipped test: no mntent.h available to confir= m the interface' + case $IFS in + printf '%s\n' 'no-mtab-status.sh: skipped test: no mntent.h available t= o confirm the interface' no-mtab-status.sh: skipped test: no mntent.h available to confirm the int= erface + test 9 =3D 2 + printf '%s\n' 'no-mtab-status.sh: skipped test: no mntent.h available t= o confirm the interface' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.j7sr + rm -rf /tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.j7sr + exit 77 SKIP tests/df/no-mtab-status.sh (exit status: 77) SKIP: tests/df/skip-duplicates =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-skip-duplicates.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-skip-duplicates.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.09Oe +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.09Oe ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.09Oe ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-s= kip-duplicates.sh.09Oe' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.09Oe +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.09Oe ++ cd /tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.09Oe ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ df + test yes =3D yes + local i + for i in '$*' + env df --version df (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Paul Eggert. + require_gcc_shared_ + gcc_shared_ - d.so -xc + local in=3D- + local out=3Dd.so + shift 2 + gcc -std=3Dgnu99 -Wall -shared --std=3Dgnu99 -fPIC -O2 -xc - -o d.so -l= dl + rm -f d.so + df --local Filesystem 1K-blocks Used Available Use% Mounte= d on rpool/ROOT/s10u08 99089368 3949464 95139904 4% / swap 4847980 968 4847012 1% /etc/s= vc/volatile rpool/ROOT/s10u08/var 96395923 1256019 95139904 2% /var swap 4967344 120332 4847012 3% /tmp swap 4847048 36 4847012 1% /var/r= un rpool/export 95139927 23 95139904 1% /expor= t rpool/export/home 95143836 3932 95139904 1% /expor= t/home rpool/pkgs 95140034 130 95139904 1% /pkgs rpool/pkgs/32-bit 95141776 1872 95139904 1% /pkgs/= 32-bit rpool/pkgs/32-bit/release 101769165 6629261 95139904 7% /pkgs/= 32-bit/release rpool/pkgs/32-bit/release/ARCHIVE 101325707 6185803 95139904 7% /pkgs/= 32-bit/release/ARCHIVE rpool/pkgs/64-bit 95139927 23 95139904 1% /pkgs/= 64-bit rpool/pkgs/64-bit/release 95139927 23 95139904 1% /pkgs/= 64-bit/release rpool/pkgs/64-bit/release/ARCHIVE 95139925 21 95139904 1% /pkgs/= 64-bit/release/ARCHIVE rpool/pkgs/release 95145061 5157 95139904 1% /pkgs/= release rpool/pkgs/release/ARCHIVE 95139925 21 95139904 1% /pkgs/= release/ARCHIVE rpool 95139938 34 95139904 1% /rpool= ++ df --local --output=3Dtarget ++ grep /. ++ head -n1 + export CU_NONROOT_FS=3D/etc/svc/volatile + CU_NONROOT_FS=3D/etc/svc/volatile ++ grep /. ++ df --local --output=3Dtarget ++ tail -n+2 ++ head -n1 + export CU_REMOTE_FS=3D/var + CU_REMOTE_FS=3D/var + unique_entries=3D1 + test -z /etc/svc/volatile ++ expr 1 + 1 + unique_entries=3D2 + test -z /var ++ expr 2 + 2 + unique_entries=3D4 + grep '^#define HAVE_MNTENT_H 1' /tmp/32-bit/coreutils-8.24/lib/config.h= + skip_ 'no mntent.h available to confirm the interface' + warn_ 'skip-duplicates.sh: skipped test: no mntent.h available to confi= rm the interface' + case $IFS in + printf '%s\n' 'skip-duplicates.sh: skipped test: no mntent.h available = to confirm the interface' skip-duplicates.sh: skipped test: no mntent.h available to confirm the in= terface + test 9 =3D 2 + printf '%s\n' 'skip-duplicates.sh: skipped test: no mntent.h available = to confirm the interface' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.09Oe + rm -rf /tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.09Oe + exit 77 SKIP tests/df/skip-duplicates.sh (exit status: 77) SKIP: tests/df/skip-rootfs =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-skip-rootfs.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-skip-rootfs.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.3ipF +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.3ipF ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.3ipF ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-s= kip-rootfs.sh.3ipF' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.3ipF +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.3ipF ++ cd /tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.3ipF ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ df + test yes =3D yes + local i + for i in '$*' + env df --version df (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Paul Eggert. + timeout 10 df Filesystem 1K-blocks Used Available Use% Mounte= d on rpool/ROOT/s10u08 99089368 3949464 95139904 4% / swap 4847572 968 4846604 1% /etc/s= vc/volatile rpool/ROOT/s10u08/var 96395923 1256019 95139904 2% /var swap 4966948 120344 4846604 3% /tmp swap 4846640 36 4846604 1% /var/r= un rpool/export 95139927 23 95139904 1% /expor= t rpool/export/home 95143836 3932 95139904 1% /expor= t/home rpool/pkgs 95140034 130 95139904 1% /pkgs rpool/pkgs/32-bit 95141776 1872 95139904 1% /pkgs/= 32-bit rpool/pkgs/32-bit/release 101769165 6629261 95139904 7% /pkgs/= 32-bit/release rpool/pkgs/32-bit/release/ARCHIVE 101325707 6185803 95139904 7% /pkgs/= 32-bit/release/ARCHIVE rpool/pkgs/64-bit 95139927 23 95139904 1% /pkgs/= 64-bit rpool/pkgs/64-bit/release 95139927 23 95139904 1% /pkgs/= 64-bit/release rpool/pkgs/64-bit/release/ARCHIVE 95139925 21 95139904 1% /pkgs/= 64-bit/release/ARCHIVE rpool/pkgs/release 95145061 5157 95139904 1% /pkgs/= release rpool/pkgs/release/ARCHIVE 95139925 21 95139904 1% /pkgs/= release/ARCHIVE rpool 95139938 34 95139904 1% /rpool= + df -a + grep '^rootfs' out + skip_ 'no rootfs in mtab' + warn_ 'skip-rootfs.sh: skipped test: no rootfs in mtab' + case $IFS in + printf '%s\n' 'skip-rootfs.sh: skipped test: no rootfs in mtab' skip-rootfs.sh: skipped test: no rootfs in mtab + test 9 =3D 2 + printf '%s\n' 'skip-rootfs.sh: skipped test: no rootfs in mtab' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.3ipF + rm -rf /tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.3ipF + exit 77 SKIP tests/df/skip-rootfs.sh (exit status: 77) SKIP: tests/dd/direct =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-direct.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-direct.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-direct.sh.BToK +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-direct.sh.BToK ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-direct.sh.BToK ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-d= irect.sh.BToK' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-direct.sh.BToK +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-direct.sh.BToK ++ cd /tmp/32-bit/coreutils-8.24/gt-direct.sh.BToK ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ dd + test yes =3D yes + local i + for i in '$*' + env dd --version dd (coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + truncate -s 8192 in + dd if=3Din oflag=3Ddirect of=3Dout + skip_ 'this file system lacks support for O_DIRECT' + warn_ 'direct.sh: skipped test: this file system lacks support for O_DI= RECT' + case $IFS in + printf '%s\n' 'direct.sh: skipped test: this file system lacks support = for O_DIRECT' direct.sh: skipped test: this file system lacks support for O_DIRECT + test 9 =3D 2 + printf '%s\n' 'direct.sh: skipped test: this file system lacks support = for O_DIRECT' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-direct.sh.BToK + rm -rf /tmp/32-bit/coreutils-8.24/gt-direct.sh.BToK + exit 77 SKIP tests/dd/direct.sh (exit status: 77) SKIP: tests/dd/skip-seek-past-file =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-skip-seek-past-file.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-skip-seek-past-file.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.Kkxz +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.Kkxz ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.Kkxz ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-s= kip-seek-past-file.sh.Kkxz' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.Kkxz +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.Kkxz ++ cd /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.Kkxz ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ dd + test yes =3D yes + local i + for i in '$*' + env dd --version dd (coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_sparse_support_ + test 0 =3D 0 + t=3Dsparse.18069 + dd bs=3D1 seek=3D128K of=3Dsparse.18069 ++ du -sk sparse.18069 + set x 128 sparse.18069 + kb_size=3D128 + rm -f sparse.18069 + test 128 -ge 128 + skip_ 'this file system does not support sparse files' + warn_ 'skip-seek-past-file.sh: skipped test: this file system does not = support sparse files' + case $IFS in + printf '%s\n' 'skip-seek-past-file.sh: skipped test: this file system d= oes not support sparse files' skip-seek-past-file.sh: skipped test: this file system does not support s= parse files + test 9 =3D 2 + printf '%s\n' 'skip-seek-past-file.sh: skipped test: this file system d= oes not support sparse files' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.Kkx= z + rm -rf /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.Kkxz + exit 77 SKIP tests/dd/skip-seek-past-file.sh (exit status: 77) SKIP: tests/dd/sparse =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sparse.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sparse.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sparse.sh.vryu +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sparse.sh.vryu ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sparse.sh.vryu ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-s= parse.sh.vryu' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sparse.sh.vryu +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sparse.sh.vryu ++ cd /tmp/32-bit/coreutils-8.24/gt-sparse.sh.vryu ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ dd + test yes =3D yes + local i + for i in '$*' + env dd --version dd (coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + is_local_dir_ . + test 1 =3D 1 + df --local . + require_sparse_support_ + test 0 =3D 0 + t=3Dsparse.18135 + dd bs=3D1 seek=3D128K of=3Dsparse.18135 ++ du -sk sparse.18135 + set x 128 sparse.18135 + kb_size=3D128 + rm -f sparse.18135 + test 128 -ge 128 + skip_ 'this file system does not support sparse files' + warn_ 'sparse.sh: skipped test: this file system does not support spars= e files' + case $IFS in + printf '%s\n' 'sparse.sh: skipped test: this file system does not suppo= rt sparse files' sparse.sh: skipped test: this file system does not support sparse files + test 9 =3D 2 + printf '%s\n' 'sparse.sh: skipped test: this file system does not suppo= rt sparse files' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sparse.sh.vryu + rm -rf /tmp/32-bit/coreutils-8.24/gt-sparse.sh.vryu + exit 77 SKIP tests/dd/sparse.sh (exit status: 77) SKIP: tests/du/2g =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-2g.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-2g.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-2g.sh.vntT +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-2g.sh.vntT ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-2g.sh.vntT ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-2= g.sh.vntT' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-2g.sh.vntT +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-2g.sh.vntT ++ cd /tmp/32-bit/coreutils-8.24/gt-2g.sh.vntT ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ '2g.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' '2g.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' 2g.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' '2g.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-2g.sh.vntT + rm -rf /tmp/32-bit/coreutils-8.24/gt-2g.sh.vntT + exit 77 SKIP tests/du/2g.sh (exit status: 77) SKIP: tests/du/8gb =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-8gb.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-8gb.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-8gb.sh.zVQj +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-8gb.sh.zVQj ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-8gb.sh.zVQj ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-8= gb.sh.zVQj' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-8gb.sh.zVQj +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-8gb.sh.zVQj ++ cd /tmp/32-bit/coreutils-8.24/gt-8gb.sh.zVQj ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + require_sparse_support_ + test 0 =3D 0 + t=3Dsparse.18604 + dd bs=3D1 seek=3D128K of=3Dsparse.18604 ++ du -sk sparse.18604 + set x 128 sparse.18604 + kb_size=3D128 + rm -f sparse.18604 + test 128 -ge 128 + skip_ 'this file system does not support sparse files' + warn_ '8gb.sh: skipped test: this file system does not support sparse f= iles' + case $IFS in + printf '%s\n' '8gb.sh: skipped test: this file system does not support = sparse files' 8gb.sh: skipped test: this file system does not support sparse files + test 9 =3D 2 + printf '%s\n' '8gb.sh: skipped test: this file system does not support = sparse files' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-8gb.sh.zVQj + rm -rf /tmp/32-bit/coreutils-8.24/gt-8gb.sh.zVQj + exit 77 SKIP tests/du/8gb.sh (exit status: 77) SKIP: tests/du/bigtime =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-bigtime.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-bigtime.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-bigtime.sh.N7Ro +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-bigtime.sh.N7Ro ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-bigtime.sh.N7Ro ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-b= igtime.sh.N7Ro' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-bigtime.sh.N7Ro +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-bigtime.sh.N7Ro ++ cd /tmp/32-bit/coreutils-8.24/gt-bigtime.sh.N7Ro ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + export LC_ALL=3DC + LC_ALL=3DC + export TZ=3DUTC0 + TZ=3DUTC0 + bignum=3D9223372036854775807 + touch -d @9223372036854775807 future + skip_ 'file system cannot represent big time stamps' + warn_ 'bigtime.sh: skipped test: file system cannot represent big time = stamps' + case $IFS in + printf '%s\n' 'bigtime.sh: skipped test: file system cannot represent b= ig time stamps' bigtime.sh: skipped test: file system cannot represent big time stamps + test 9 =3D 2 + printf '%s\n' 'bigtime.sh: skipped test: file system cannot represent b= ig time stamps' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-bigtime.sh.N7Ro + rm -rf /tmp/32-bit/coreutils-8.24/gt-bigtime.sh.N7Ro + exit 77 SKIP tests/du/bigtime.sh (exit status: 77) SKIP: tests/du/fd-leak =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-fd-leak.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-fd-leak.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.Uehf +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.Uehf ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.Uehf ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-f= d-leak.sh.Uehf' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.Uehf +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.Uehf ++ cd /tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.Uehf ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'fd-leak.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'fd-leak.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' fd-leak.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'fd-leak.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.Uehf + rm -rf /tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.Uehf + exit 77 SKIP tests/du/fd-leak.sh (exit status: 77) SKIP: tests/du/inacc-dest =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-inacc-dest.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-inacc-dest.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-inacc-dest.sh.MYeK +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-inacc-dest.sh.MYeK ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-inacc-dest.sh.MYeK ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-i= nacc-dest.sh.MYeK' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-inacc-dest.sh.MYeK +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-inacc-dest.sh.MYeK ++ cd /tmp/32-bit/coreutils-8.24/gt-inacc-dest.sh.MYeK ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'inacc-dest.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'inacc-dest.sh: skipped test: must be run as non-root' inacc-dest.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'inacc-dest.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-inacc-dest.sh.MYeK + rm -rf /tmp/32-bit/coreutils-8.24/gt-inacc-dest.sh.MYeK + exit 77 SKIP tests/du/inacc-dest.sh (exit status: 77) SKIP: tests/du/inacc-dir =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-inacc-dir.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-inacc-dir.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-inacc-dir.sh.6JFR +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-inacc-dir.sh.6JFR ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-inacc-dir.sh.6JFR ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:54 /tmp/32-bit/coreutils-8.24/gt-i= nacc-dir.sh.6JFR' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-inacc-dir.sh.6JFR +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-inacc-dir.sh.6JFR ++ cd /tmp/32-bit/coreutils-8.24/gt-inacc-dir.sh.6JFR ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'inacc-dir.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'inacc-dir.sh: skipped test: must be run as non-root' inacc-dir.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'inacc-dir.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-inacc-dir.sh.6JFR + rm -rf /tmp/32-bit/coreutils-8.24/gt-inacc-dir.sh.6JFR + exit 77 SKIP tests/du/inacc-dir.sh (exit status: 77) SKIP: tests/du/inaccessible-cwd =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-inaccessible-cwd.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-inaccessible-cwd.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-inaccessible-cwd.sh.td4Q +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-inaccessible-cwd.sh.td4Q ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-inaccessible-cwd.sh.td4Q ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-i= naccessible-cwd.sh.td4Q' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-inaccessible-cwd.sh.td4Q +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-inaccessible-cwd.sh.td4Q ++ cd /tmp/32-bit/coreutils-8.24/gt-inaccessible-cwd.sh.td4Q ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + require_openat_support_ + test -z /tmp/32-bit/coreutils-8.24/lib/config.h + _skip=3Dyes + grep '^#define HAVE_OPENAT' /tmp/32-bit/coreutils-8.24/lib/config.h + _skip=3Dno + test -d /proc/self/fd + _skip=3Dno + test no =3D yes + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'inaccessible-cwd.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'inaccessible-cwd.sh: skipped test: must be run as non-ro= ot' inaccessible-cwd.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'inaccessible-cwd.sh: skipped test: must be run as non-ro= ot' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-inaccessible-cwd.sh.td4Q + rm -rf /tmp/32-bit/coreutils-8.24/gt-inaccessible-cwd.sh.td4Q + exit 77 SKIP tests/du/inaccessible-cwd.sh (exit status: 77) SKIP: tests/du/move-dir-while-traversing =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-move-dir-while-traversing.sh.X= XXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-move-dir-while-traversing.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.sh.IlNi +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.sh.Il= Ni ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.sh.I= lNi ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-m= ove-dir-while-traversing.sh.IlNi' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.sh.IlNi +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.sh= =2EIlNi ++ cd /tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.sh.IlNi ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + python -m pyinotify -h python: module pyinotify not found + skip_ 'python inotify package not installed' + warn_ 'move-dir-while-traversing.sh: skipped test: python inotify packa= ge not installed' + case $IFS in + printf '%s\n' 'move-dir-while-traversing.sh: skipped test: python inoti= fy package not installed' move-dir-while-traversing.sh: skipped test: python inotify package not in= stalled + test 9 =3D 2 + printf '%s\n' 'move-dir-while-traversing.sh: skipped test: python inoti= fy package not installed' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.= sh.IlNi + rm -rf /tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.sh.IlNi + exit 77 SKIP tests/du/move-dir-while-traversing.sh (exit status: 77) SKIP: tests/du/no-x =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-no-x.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-no-x.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-no-x.sh.9E6Z +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-no-x.sh.9E6Z ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-no-x.sh.9E6Z ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-n= o-x.sh.9E6Z' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-no-x.sh.9E6Z +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-no-x.sh.9E6Z ++ cd /tmp/32-bit/coreutils-8.24/gt-no-x.sh.9E6Z ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'no-x.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'no-x.sh: skipped test: must be run as non-root' no-x.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'no-x.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-no-x.sh.9E6Z + rm -rf /tmp/32-bit/coreutils-8.24/gt-no-x.sh.9E6Z + exit 77 SKIP tests/du/no-x.sh (exit status: 77) SKIP: tests/id/gnu-zero-uids =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-gnu-zero-uids.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-gnu-zero-uids.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.Y2AG +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.Y2AG ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.Y2AG ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-g= nu-zero-uids.sh.Y2AG' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.Y2AG +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.Y2AG ++ cd /tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.Y2AG ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ id + test yes =3D yes + local i + for i in '$*' + env id --version id (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_gnu_ ++ uname + test SunOS =3D GNU + skip_ 'not running on GNU/Hurd' + warn_ 'gnu-zero-uids.sh: skipped test: not running on GNU/Hurd' + case $IFS in + printf '%s\n' 'gnu-zero-uids.sh: skipped test: not running on GNU/Hurd'= gnu-zero-uids.sh: skipped test: not running on GNU/Hurd + test 9 =3D 2 + printf '%s\n' 'gnu-zero-uids.sh: skipped test: not running on GNU/Hurd'= + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.Y2AG + rm -rf /tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.Y2AG + exit 77 SKIP tests/id/gnu-zero-uids.sh (exit status: 77) SKIP: tests/id/no-context =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-no-context.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-no-context.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-no-context.sh.eHZn +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-no-context.sh.eHZn ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-no-context.sh.eHZn ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-n= o-context.sh.eHZn' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-no-context.sh.eHZn +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-no-context.sh.eHZn ++ cd /tmp/32-bit/coreutils-8.24/gt-no-context.sh.eHZn ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ id + test yes =3D yes + local i + for i in '$*' + env id --version id (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'no-context.sh: skipped test: this system lacks SELinux support' + case $IFS in + printf '%s\n' 'no-context.sh: skipped test: this system lacks SELinux s= upport' no-context.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'no-context.sh: skipped test: this system lacks SELinux s= upport' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-no-context.sh.eHZn + rm -rf /tmp/32-bit/coreutils-8.24/gt-no-context.sh.eHZn + exit 77 SKIP tests/id/no-context.sh (exit status: 77) SKIP: tests/id/context =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-context.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-context.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-context.sh.s3O7 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-context.sh.s3O7 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-context.sh.s3O7 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-c= ontext.sh.s3O7' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-context.sh.s3O7 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-context.sh.s3O7 ++ cd /tmp/32-bit/coreutils-8.24/gt-context.sh.s3O7 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ id + test yes =3D yes + local i + for i in '$*' + env id --version id (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'context.sh: skipped test: this system lacks SELinux support' + case $IFS in + printf '%s\n' 'context.sh: skipped test: this system lacks SELinux supp= ort' context.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'context.sh: skipped test: this system lacks SELinux supp= ort' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-context.sh.s3O7 + rm -rf /tmp/32-bit/coreutils-8.24/gt-context.sh.s3O7 + exit 77 SKIP tests/id/context.sh (exit status: 77) SKIP: tests/id/smack =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-smack.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-smack.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-smack.sh.3S5S +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-smack.sh.3S5S ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-smack.sh.3S5S ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-s= mack.sh.3-5-' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-smack.sh.3S5S +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-smack.sh.3S5S ++ cd /tmp/32-bit/coreutils-8.24/gt-smack.sh.3S5S ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ id + test yes =3D yes + local i + for i in '$*' + env id --version id (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_smack_ + grep 'smackfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SMACK support' + warn_ 'smack.sh: skipped test: this system lacks SMACK support' + case $IFS in + printf '%s\n' 'smack.sh: skipped test: this system lacks SMACK support'= smack.sh: skipped test: this system lacks SMACK support + test 9 =3D 2 + printf '%s\n' 'smack.sh: skipped test: this system lacks SMACK support'= + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-smack.sh.3S5S + rm -rf /tmp/32-bit/coreutils-8.24/gt-smack.sh.3S5S + exit 77 SKIP tests/id/smack.sh (exit status: 77) SKIP: tests/install/basic-1 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-basic-1.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-basic-1.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-basic-1.sh.azeX +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-basic-1.sh.azeX ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-basic-1.sh.azeX ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-b= asic-1.sh.azeX' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-basic-1.sh.azeX +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-basic-1.sh.azeX ++ cd /tmp/32-bit/coreutils-8.24/gt-basic-1.sh.azeX ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ginstall + test yes =3D yes + local i + for i in '$*' + env ginstall --version install (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'basic-1.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'basic-1.sh: skipped test: must be run as non-root' basic-1.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'basic-1.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-basic-1.sh.azeX + rm -rf /tmp/32-bit/coreutils-8.24/gt-basic-1.sh.azeX + exit 77 SKIP tests/install/basic-1.sh (exit status: 77) SKIP: tests/install/install-C-selinux =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-install-C-selinux.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-install-C-selinux.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.FpeO +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.FpeO ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.FpeO ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-i= nstall-C-selinux.sh.FpeO' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.FpeO +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.FpeO ++ cd /tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.FpeO ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ginstall + test yes =3D yes + local i + for i in '$*' + env ginstall --version install (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'install-C-selinux.sh: skipped test: this system lacks SELinux su= pport' + case $IFS in + printf '%s\n' 'install-C-selinux.sh: skipped test: this system lacks SE= Linux support' install-C-selinux.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'install-C-selinux.sh: skipped test: this system lacks SE= Linux support' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.FpeO + rm -rf /tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.FpeO + exit 77 SKIP tests/install/install-C-selinux.sh (exit status: 77) SKIP: tests/ls/getxattr-speedup =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-getxattr-speedup.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-getxattr-speedup.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-getxattr-speedup.sh.fVnl +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-getxattr-speedup.sh.fVnl ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-getxattr-speedup.sh.fVnl ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-g= etxattr-speedup.sh.fVnl' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-getxattr-speedup.sh.fVnl +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-getxattr-speedup.sh.fVnl ++ cd /tmp/32-bit/coreutils-8.24/gt-getxattr-speedup.sh.fVnl ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ls + test yes =3D yes + local i + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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_gcc_shared_ + gcc_shared_ - d.so -xc + local in=3D- + local out=3Dd.so + shift 2 + gcc -std=3Dgnu99 -Wall -shared --std=3Dgnu99 -fPIC -O2 -xc - -o d.so -l= dl + rm -f d.so + cat + gcc_shared_ k.c k.so + local in=3Dk.c + local out=3Dk.so + shift 2 + gcc -std=3Dgnu99 -Wall -shared --std=3Dgnu99 -fPIC -O2 k.c -o k.so -ldl= + seq 20 + xargs touch + LD_PRELOAD=3D:./k.so + ls --color=3Dalways -l . ld.so.1: ls: fatal: libgcc_s.so.1: open failed: No such file or directory= =2E/tests/ls/getxattr-speedup.sh: line 58: 25461 Killed = LD_PRELOAD=3D$LD_PRELOAD:./k.so ls --color=3Dalways -l . + fail=3D1 + test -f x + skip_ 'internal test failure: maybe LD_PRELOAD doesn'\''t work?' + warn_ 'getxattr-speedup.sh: skipped test: internal test failure: maybe = LD_PRELOAD doesn'\''t work?' + case $IFS in + printf '%s\n' 'getxattr-speedup.sh: skipped test: internal test failure= : maybe LD_PRELOAD doesn'\''t work?' getxattr-speedup.sh: skipped test: internal test failure: maybe LD_PRELOA= D doesn't work? + test 9 =3D 2 + printf '%s\n' 'getxattr-speedup.sh: skipped test: internal test failure= : maybe LD_PRELOAD doesn'\''t work?' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-getxattr-speedup.sh.fVnl + rm -rf /tmp/32-bit/coreutils-8.24/gt-getxattr-speedup.sh.fVnl + exit 77 SKIP tests/ls/getxattr-speedup.sh (exit status: 77) SKIP: tests/ls/no-cap =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-no-cap.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-no-cap.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-no-cap.sh.U8Sx +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-no-cap.sh.U8Sx ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-no-cap.sh.U8Sx ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-n= o-cap.sh.U8-x' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-no-cap.sh.U8Sx +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-no-cap.sh.U8Sx ++ cd /tmp/32-bit/coreutils-8.24/gt-no-cap.sh.U8Sx ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ls + test yes =3D yes + local i + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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_strace_ capget + test 1 =3D 1 + strace -V + skip_ 'no strace program' + warn_ 'no-cap.sh: skipped test: no strace program' + case $IFS in + printf '%s\n' 'no-cap.sh: skipped test: no strace program' no-cap.sh: skipped test: no strace program + test 9 =3D 2 + printf '%s\n' 'no-cap.sh: skipped test: no strace program' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-no-cap.sh.U8Sx + rm -rf /tmp/32-bit/coreutils-8.24/gt-no-cap.sh.U8Sx + exit 77 SKIP tests/ls/no-cap.sh (exit status: 77) SKIP: tests/ls/slink-acl =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-slink-acl.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-slink-acl.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.Xhhr +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.Xhhr ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.Xhhr ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-s= link-acl.sh.Xhhr' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.Xhhr +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.Xhhr ++ cd /tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.Xhhr ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ls + test yes =3D yes + local i + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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_setfacl_ + local d=3Dacltestdir_ + mkdir acltestdir_ + local f=3D0 + setfacl -d -m user::r-x acltestdir_ user::r-x: failed to get acl count get acl count error: No such file or directory + f=3D1 + rm -rf acltestdir_ + test 1 =3D 0 + skip_ 'setfacl does not work on the current file system' + warn_ 'slink-acl.sh: skipped test: setfacl does not work on the current= file system' + case $IFS in + printf '%s\n' 'slink-acl.sh: skipped test: setfacl does not work on the= current file system' slink-acl.sh: skipped test: setfacl does not work on the current file sys= tem + test 9 =3D 2 + printf '%s\n' 'slink-acl.sh: skipped test: setfacl does not work on the= current file system' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.Xhhr + rm -rf /tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.Xhhr + exit 77 SKIP tests/ls/slink-acl.sh (exit status: 77) SKIP: tests/ls/stat-failed =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-stat-failed.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-stat-failed.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-stat-failed.sh.IjFb +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-stat-failed.sh.IjFb ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-stat-failed.sh.IjFb ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-s= tat-failed.sh.IjFb' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-stat-failed.sh.IjFb +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-stat-failed.sh.IjFb ++ cd /tmp/32-bit/coreutils-8.24/gt-stat-failed.sh.IjFb ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ls + test yes =3D yes + local i + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'stat-failed.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'stat-failed.sh: skipped test: must be run as non-root' stat-failed.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'stat-failed.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-stat-failed.sh.IjFb + rm -rf /tmp/32-bit/coreutils-8.24/gt-stat-failed.sh.IjFb + exit 77 SKIP tests/ls/stat-failed.sh (exit status: 77) SKIP: tests/ls/stat-free-color =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-stat-free-color.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-stat-free-color.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.p9bK +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.p9bK ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.p9bK ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-s= tat-free-color.sh.p9bK' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.p9bK +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.p9bK ++ cd /tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.p9bK ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ls + test yes =3D yes + local i + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + stats=3Dstat,lstat,stat64,lstat64,newfstatat + require_strace_ stat,lstat,stat64,lstat64,newfstatat + test 1 =3D 1 + strace -V + skip_ 'no strace program' + warn_ 'stat-free-color.sh: skipped test: no strace program' + case $IFS in + printf '%s\n' 'stat-free-color.sh: skipped test: no strace program' stat-free-color.sh: skipped test: no strace program + test 9 =3D 2 + printf '%s\n' 'stat-free-color.sh: skipped test: no strace program' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.p9bK + rm -rf /tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.p9bK + exit 77 SKIP tests/ls/stat-free-color.sh (exit status: 77) SKIP: tests/ls/stat-free-symlinks =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-stat-free-symlinks.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-stat-free-symlinks.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.P6zG +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.P6zG ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.P6zG ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-s= tat-free-symlinks.sh.P6zG' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.P6zG +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.P6zG ++ cd /tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.P6zG ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ls + test yes =3D yes + local i + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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_strace_ stat + test 1 =3D 1 + strace -V + skip_ 'no strace program' + warn_ 'stat-free-symlinks.sh: skipped test: no strace program' + case $IFS in + printf '%s\n' 'stat-free-symlinks.sh: skipped test: no strace program' stat-free-symlinks.sh: skipped test: no strace program + test 9 =3D 2 + printf '%s\n' 'stat-free-symlinks.sh: skipped test: no strace program' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.P6zG= + rm -rf /tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.P6zG + exit 77 SKIP tests/ls/stat-free-symlinks.sh (exit status: 77) SKIP: tests/mkdir/p-3 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-p-3.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-p-3.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-p-3.sh.XVdd +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-p-3.sh.XVdd ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-p-3.sh.XVdd ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-p= -3.sh.XVdd' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-p-3.sh.XVdd +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-p-3.sh.XVdd ++ cd /tmp/32-bit/coreutils-8.24/gt-p-3.sh.XVdd ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'p-3.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'p-3.sh: skipped test: must be run as non-root' p-3.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'p-3.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-p-3.sh.XVdd + rm -rf /tmp/32-bit/coreutils-8.24/gt-p-3.sh.XVdd + exit 77 SKIP tests/mkdir/p-3.sh (exit status: 77) SKIP: tests/mkdir/p-acl =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-p-acl.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-p-acl.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-p-acl.sh.anfg +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-p-acl.sh.anfg ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-p-acl.sh.anfg ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-p= -acl.sh.anfg' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-p-acl.sh.anfg +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-p-acl.sh.anfg ++ cd /tmp/32-bit/coreutils-8.24/gt-p-acl.sh.anfg ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_setfacl_ + local d=3Dacltestdir_ + mkdir acltestdir_ + local f=3D0 + setfacl -d -m user::r-x acltestdir_ user::r-x: failed to get acl count get acl count error: No such file or directory + f=3D1 + rm -rf acltestdir_ + test 1 =3D 0 + skip_ 'setfacl does not work on the current file system' + warn_ 'p-acl.sh: skipped test: setfacl does not work on the current fil= e system' + case $IFS in + printf '%s\n' 'p-acl.sh: skipped test: setfacl does not work on the cur= rent file system' p-acl.sh: skipped test: setfacl does not work on the current file system + test 9 =3D 2 + printf '%s\n' 'p-acl.sh: skipped test: setfacl does not work on the cur= rent file system' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-p-acl.sh.anfg + rm -rf /tmp/32-bit/coreutils-8.24/gt-p-acl.sh.anfg + exit 77 SKIP tests/mkdir/p-acl.sh (exit status: 77) SKIP: tests/mkdir/selinux =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-selinux.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-selinux.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-selinux.sh.Ke0K +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-selinux.sh.Ke0K ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-selinux.sh.Ke0K ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-s= elinux.sh.Ke0K' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-selinux.sh.Ke0K +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-selinux.sh.Ke0K ++ cd /tmp/32-bit/coreutils-8.24/gt-selinux.sh.Ke0K ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir mkfifo mknod + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mkfifo --version mkfifo (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mknod --version mknod (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_selinux_enforcing_ + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'selinux.sh: skipped test: this system lacks SELinux support' + case $IFS in + printf '%s\n' 'selinux.sh: skipped test: this system lacks SELinux supp= ort' selinux.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'selinux.sh: skipped test: this system lacks SELinux supp= ort' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-selinux.sh.Ke0K + rm -rf /tmp/32-bit/coreutils-8.24/gt-selinux.sh.Ke0K + exit 77 SKIP tests/mkdir/selinux.sh (exit status: 77) SKIP: tests/mkdir/restorecon =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-restorecon.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-restorecon.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-restorecon.sh.QoOv +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-restorecon.sh.QoOv ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-restorecon.sh.QoOv ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-r= estorecon.sh.QoOv' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-restorecon.sh.QoOv +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-restorecon.sh.QoOv ++ cd /tmp/32-bit/coreutils-8.24/gt-restorecon.sh.QoOv ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir mknod mkfifo + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mknod --version mknod (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mkfifo --version mkfifo (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'restorecon.sh: skipped test: this system lacks SELinux support' + case $IFS in + printf '%s\n' 'restorecon.sh: skipped test: this system lacks SELinux s= upport' restorecon.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'restorecon.sh: skipped test: this system lacks SELinux s= upport' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-restorecon.sh.QoOv + rm -rf /tmp/32-bit/coreutils-8.24/gt-restorecon.sh.QoOv + exit 77 SKIP tests/mkdir/restorecon.sh (exit status: 77) SKIP: tests/mkdir/smack-no-root =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-smack-no-root.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-smack-no-root.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.J2HZ +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.J2HZ ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.J2HZ ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-s= mack-no-root.sh.J2HZ' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.J2HZ +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.J2HZ ++ cd /tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.J2HZ ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir mkfifo mknod + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mkfifo --version mkfifo (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mknod --version mknod (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_smack_ + grep 'smackfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SMACK support' + warn_ 'smack-no-root.sh: skipped test: this system lacks SMACK support'= + case $IFS in + printf '%s\n' 'smack-no-root.sh: skipped test: this system lacks SMACK = support' smack-no-root.sh: skipped test: this system lacks SMACK support + test 9 =3D 2 + printf '%s\n' 'smack-no-root.sh: skipped test: this system lacks SMACK = support' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.J2HZ + rm -rf /tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.J2HZ + exit 77 SKIP tests/mkdir/smack-no-root.sh (exit status: 77) SKIP: tests/mkdir/smack-root =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-smack-root.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-smack-root.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-smack-root.sh.2GA0 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.2GA0 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.2GA0 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-s= mack-root.sh.2GA0' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.2GA0 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-smack-root.sh.2GA0 ++ cd /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.2GA0 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir mkfifo mknod + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mkfifo --version mkfifo (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mknod --version mknod (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_smack_ + grep 'smackfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SMACK support' + warn_ 'smack-root.sh: skipped test: this system lacks SMACK support' + case $IFS in + printf '%s\n' 'smack-root.sh: skipped test: this system lacks SMACK sup= port' smack-root.sh: skipped test: this system lacks SMACK support + test 9 =3D 2 + printf '%s\n' 'smack-root.sh: skipped test: this system lacks SMACK sup= port' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.2GA0 + rm -rf /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.2GA0 + exit 77 SKIP tests/mkdir/smack-root.sh (exit status: 77) SKIP: tests/mv/acl =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-acl.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-acl.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-acl.sh.PLp4 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-acl.sh.PLp4 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-acl.sh.PLp4 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-a= cl.sh.PLp4' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-acl.sh.PLp4 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-acl.sh.PLp4 ++ cd /tmp/32-bit/coreutils-8.24/gt-acl.sh.PLp4 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv getfacl setfacl + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env getfacl --version getfacl: illegal option -- version usage: getfacl [-ad] file ...=20 + for i in '$*' + env setfacl --version usage: setfacl [-r] -f aclfile file ... setfacl [-r] -d acl_entries file ... setfacl [-r] -m acl_entries file ... setfacl [-r] -s acl_entries file ... + require_acl_ + getfacl --version + skip_ 'This test requires getfacl and setfacl.' + warn_ 'acl.sh: skipped test: This test requires getfacl and setfacl.' + case $IFS in + printf '%s\n' 'acl.sh: skipped test: This test requires getfacl and set= facl.' acl.sh: skipped test: This test requires getfacl and setfacl. + test 9 =3D 2 + printf '%s\n' 'acl.sh: skipped test: This test requires getfacl and set= facl.' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-acl.sh.PLp4 + rm -rf /tmp/32-bit/coreutils-8.24/gt-acl.sh.PLp4 + exit 77 SKIP tests/mv/acl.sh (exit status: 77) SKIP: tests/mv/atomic =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-atomic.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-atomic.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-atomic.sh.EeRz +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-atomic.sh.EeRz ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-atomic.sh.EeRz ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-a= tomic.sh.EeRz' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-atomic.sh.EeRz +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-atomic.sh.EeRz ++ cd /tmp/32-bit/coreutils-8.24/gt-atomic.sh.EeRz ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_strace_ unlink + test 1 =3D 1 + strace -V + skip_ 'no strace program' + warn_ 'atomic.sh: skipped test: no strace program' + case $IFS in + printf '%s\n' 'atomic.sh: skipped test: no strace program' atomic.sh: skipped test: no strace program + test 9 =3D 2 + printf '%s\n' 'atomic.sh: skipped test: no strace program' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-atomic.sh.EeRz + rm -rf /tmp/32-bit/coreutils-8.24/gt-atomic.sh.EeRz + exit 77 SKIP tests/mv/atomic.sh (exit status: 77) SKIP: tests/mv/atomic2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-atomic2.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-atomic2.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-atomic2.sh.9j74 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-atomic2.sh.9j74 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-atomic2.sh.9j74 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-a= tomic2.sh.9j74' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-atomic2.sh.9j74 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-atomic2.sh.9j74 ++ cd /tmp/32-bit/coreutils-8.24/gt-atomic2.sh.9j74 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_strace_ unlink + test 1 =3D 1 + strace -V + skip_ 'no strace program' + warn_ 'atomic2.sh: skipped test: no strace program' + case $IFS in + printf '%s\n' 'atomic2.sh: skipped test: no strace program' atomic2.sh: skipped test: no strace program + test 9 =3D 2 + printf '%s\n' 'atomic2.sh: skipped test: no strace program' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-atomic2.sh.9j74 + rm -rf /tmp/32-bit/coreutils-8.24/gt-atomic2.sh.9j74 + exit 77 SKIP tests/mv/atomic2.sh (exit status: 77) SKIP: tests/mv/childproof =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-childproof.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-childproof.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-childproof.sh.QKep +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-childproof.sh.QKep ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-childproof.sh.QKep ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-c= hildproof.sh.QKep' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-childproof.sh.QKep +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-childproof.sh.QKep ++ cd /tmp/32-bit/coreutils-8.24/gt-childproof.sh.QKep ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp mv ln + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env ln --version ln (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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 and David MacKenzie. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'childproof.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'childproof.sh: skipped test: must be run as non-root' childproof.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'childproof.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-childproof.sh.QKep + rm -rf /tmp/32-bit/coreutils-8.24/gt-childproof.sh.QKep + exit 77 SKIP tests/mv/childproof.sh (exit status: 77) SKIP: tests/mv/dup-source =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-dup-source.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-dup-source.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-dup-source.sh.G6tv +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-dup-source.sh.G6tv ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-dup-source.sh.G6tv ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-d= up-source.sh.G6tv' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-dup-source.sh.G6tv +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-dup-source.sh.G6tv ++ cd /tmp/32-bit/coreutils-8.24/gt-dup-source.sh.G6tv ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp mv + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'dup-source.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'dup-source.sh: skipped test: must be run as non-root' dup-source.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'dup-source.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-dup-source.sh.G6tv + rm -rf /tmp/32-bit/coreutils-8.24/gt-dup-source.sh.G6tv + exit 77 SKIP tests/mv/dup-source.sh (exit status: 77) SKIP: tests/mv/hard-2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-hard-2.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-hard-2.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-hard-2.sh.nQPs +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-hard-2.sh.nQPs ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-hard-2.sh.nQPs ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-h= ard-2.sh.nQPs' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-hard-2.sh.nQPs +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-hard-2.sh.nQPs ++ cd /tmp/32-bit/coreutils-8.24/gt-hard-2.sh.nQPs ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp mv + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'hard-2.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'hard-2.sh: skipped test: must be run as non-root' hard-2.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'hard-2.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-hard-2.sh.nQPs + rm -rf /tmp/32-bit/coreutils-8.24/gt-hard-2.sh.nQPs + exit 77 SKIP tests/mv/hard-2.sh (exit status: 77) SKIP: tests/mv/hard-3 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-hard-3.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-hard-3.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-hard-3.sh.z36o +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-hard-3.sh.z36o ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-hard-3.sh.z36o ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-h= ard-3.sh.z36o' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-hard-3.sh.z36o +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-hard-3.sh.z36o ++ cd /tmp/32-bit/coreutils-8.24/gt-hard-3.sh.z36o ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'hard-3.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'hard-3.sh: skipped test: must be run as non-root' hard-3.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'hard-3.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-hard-3.sh.z36o + rm -rf /tmp/32-bit/coreutils-8.24/gt-hard-3.sh.z36o + exit 77 SKIP tests/mv/hard-3.sh (exit status: 77) SKIP: tests/mv/i-2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-i-2.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-i-2.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-i-2.sh.4A3Z +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-i-2.sh.4A3Z ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-i-2.sh.4A3Z ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-i= -2.sh.4A3Z' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-i-2.sh.4A3Z +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-i-2.sh.4A3Z ++ cd /tmp/32-bit/coreutils-8.24/gt-i-2.sh.4A3Z ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp mv + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'i-2.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'i-2.sh: skipped test: must be run as non-root' i-2.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'i-2.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-i-2.sh.4A3Z + rm -rf /tmp/32-bit/coreutils-8.24/gt-i-2.sh.4A3Z + exit 77 SKIP tests/mv/i-2.sh (exit status: 77) SKIP: tests/mv/i-3 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-i-3.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-i-3.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-i-3.sh.UoaR +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-i-3.sh.UoaR ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-i-3.sh.UoaR ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-i= -3.sh.UoaR' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-i-3.sh.UoaR +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-i-3.sh.UoaR ++ cd /tmp/32-bit/coreutils-8.24/gt-i-3.sh.UoaR ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_controlling_input_terminal_ + tty -s + test -t 0 + test '' =3D no + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'i-3.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'i-3.sh: skipped test: must be run as non-root' i-3.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'i-3.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-i-3.sh.UoaR + rm -rf /tmp/32-bit/coreutils-8.24/gt-i-3.sh.UoaR + exit 77 SKIP tests/mv/i-3.sh (exit status: 77) SKIP: tests/mv/leak-fd =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-leak-fd.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-leak-fd.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.GUqb +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.GUqb ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.GUqb ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-l= eak-fd.sh.GUqb' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.GUqb +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.GUqb ++ cd /tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.GUqb ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'leak-fd.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'leak-fd.sh: skipped test: must be run as non-root' leak-fd.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'leak-fd.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.GUqb + rm -rf /tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.GUqb + exit 77 SKIP tests/mv/leak-fd.sh (exit status: 77) SKIP: tests/mv/part-fail =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-part-fail.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-part-fail.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-part-fail.sh.CLZh +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-part-fail.sh.CLZh ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-part-fail.sh.CLZh ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-p= art-fail.sh.CLZh' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-part-fail.sh.CLZh +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-part-fail.sh.CLZh ++ cd /tmp/32-bit/coreutils-8.24/gt-part-fail.sh.CLZh ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'part-fail.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'part-fail.sh: skipped test: must be run as non-root' part-fail.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'part-fail.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-part-fail.sh.CLZh + rm -rf /tmp/32-bit/coreutils-8.24/gt-part-fail.sh.CLZh + exit 77 SKIP tests/mv/part-fail.sh (exit status: 77) SKIP: tests/mv/perm-1 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-perm-1.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-perm-1.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-perm-1.sh.F5TY +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-perm-1.sh.F5TY ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-perm-1.sh.F5TY ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-p= erm-1.sh.F5TY' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-perm-1.sh.F5TY +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-perm-1.sh.F5TY ++ cd /tmp/32-bit/coreutils-8.24/gt-perm-1.sh.F5TY ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'perm-1.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'perm-1.sh: skipped test: must be run as non-root' perm-1.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'perm-1.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-perm-1.sh.F5TY + rm -rf /tmp/32-bit/coreutils-8.24/gt-perm-1.sh.F5TY + exit 77 SKIP tests/mv/perm-1.sh (exit status: 77) SKIP: tests/mv/symlink-onto-hardlink-to-self =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-symlink-onto-hardlink-to-self.= sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-symlink-onto-hardlink-to-self.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-self.sh.rh= Ed +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-self.s= h.rhEd ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-self.= sh.rhEd ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-s= ymlink-onto-hardlink-to-self.sh.rhEd' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-self.sh.r= hEd +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-sel= f.sh.rhEd ++ cd /tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-self.sh.rhEd= ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + touch f + ln -s f s2 + ln s2 s1 + test -h s1 + skip_ your kernel or file system cannot create a hard link to a symlink= + warn_ 'symlink-onto-hardlink-to-self.sh: skipped test: your' kernel or = file system cannot create a hard link to a symlink + case $IFS in + printf '%s\n' 'symlink-onto-hardlink-to-self.sh: skipped test: your ker= nel or file system cannot create a hard link to a symlink' symlink-onto-hardlink-to-self.sh: skipped test: your kernel or file syste= m cannot create a hard link to a symlink + test 9 =3D 2 + printf '%s\n' 'symlink-onto-hardlink-to-self.sh: skipped test: your ker= nel or file system cannot create a hard link to a symlink' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-s= elf.sh.rhEd + rm -rf /tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-self.sh.r= hEd + exit 77 SKIP tests/mv/symlink-onto-hardlink-to-self.sh (exit status: 77) SKIP: tests/tail-2/big-4gb =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-big-4gb.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-big-4gb.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.5XiI +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.5XiI ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.5XiI ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-b= ig-4gb.sh.5XiI' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.5XiI +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.5XiI ++ cd /tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.5XiI ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'big-4gb.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'big-4gb.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' big-4gb.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'big-4gb.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.5XiI + rm -rf /tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.5XiI + exit 77 SKIP tests/tail-2/big-4gb.sh (exit status: 77) SKIP: tests/touch/fail-diag =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-fail-diag.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-fail-diag.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-fail-diag.sh.8XEt +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-fail-diag.sh.8XEt ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-fail-diag.sh.8XEt ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-f= ail-diag.sh.8XEt' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-fail-diag.sh.8XEt +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-fail-diag.sh.8XEt ++ cd /tmp/32-bit/coreutils-8.24/gt-fail-diag.sh.8XEt ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ touch + test yes =3D yes + local i + for i in '$*' + env touch --version touch (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'fail-diag.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'fail-diag.sh: skipped test: must be run as non-root' fail-diag.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'fail-diag.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-fail-diag.sh.8XEt + rm -rf /tmp/32-bit/coreutils-8.24/gt-fail-diag.sh.8XEt + exit 77 SKIP tests/touch/fail-diag.sh (exit status: 77) SKIP: tests/touch/no-dereference =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-no-dereference.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-no-dereference.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-no-dereference.sh.iaqo +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-no-dereference.sh.iaqo ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-no-dereference.sh.iaqo ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-n= o-dereference.sh.iaqo' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-no-dereference.sh.iaqo +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-no-dereference.sh.iaqo ++ cd /tmp/32-bit/coreutils-8.24/gt-no-dereference.sh.iaqo ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ touch + test yes =3D yes + local i + for i in '$*' + env touch --version touch (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + ln -s nowhere dangling + touch file + ln -s file link + returns_ 1 touch -h no-file + compare /dev/null err + compare_dev_null_ /dev/null err + test 2 =3D 2 + test x/dev/null =3D x/dev/null + test -s err + emit_diff_u_header_ /dev/null err + printf '%s\n' 'diff -u /dev/null err' '--- /dev/null 1970-01-01' '+++ e= rr 1970-01-01' diff -u /dev/null err --- /dev/null 1970-01-01 +++ err 1970-01-01 + sed 's/^/+/' err +touch: setting times of 'no-file': No such file or directory + return 1 + case $? in + return 1 + touch -h -c no-file + compare /dev/null err + compare_dev_null_ /dev/null err + test 2 =3D 2 + test x/dev/null =3D x/dev/null + test -s err + return 0 + return 0 + touch -h file + touch -h -r dangling file + test -f nowhere + grep '^#define HAVE_UTIMENSAT 1' /tmp/32-bit/coreutils-8.24/lib/config.= h + grep '^#define HAVE_LUTIMES 1' /tmp/32-bit/coreutils-8.24/lib/config.h + skip_ 'this system lacks the utimensat function' + warn_ 'no-dereference.sh: skipped test: this system lacks the utimensat= function' + case $IFS in + printf '%s\n' 'no-dereference.sh: skipped test: this system lacks the u= timensat function' no-dereference.sh: skipped test: this system lacks the utimensat function= + test 9 =3D 2 + printf '%s\n' 'no-dereference.sh: skipped test: this system lacks the u= timensat function' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-no-dereference.sh.iaqo + rm -rf /tmp/32-bit/coreutils-8.24/gt-no-dereference.sh.iaqo + exit 77 SKIP tests/touch/no-dereference.sh (exit status: 77) SKIP: tests/touch/not-owner =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-not-owner.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-not-owner.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-not-owner.sh.32QH +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-not-owner.sh.32QH ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-not-owner.sh.32QH ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-n= ot-owner.sh.32QH' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-not-owner.sh.32QH +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-not-owner.sh.32QH ++ cd /tmp/32-bit/coreutils-8.24/gt-not-owner.sh.32QH ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ touch + test yes =3D yes + local i + for i in '$*' + env touch --version touch (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + env -- test -w / + skip_ you have write access to /. + warn_ 'not-owner.sh: skipped test: you' have write access to /. + case $IFS in + printf '%s\n' 'not-owner.sh: skipped test: you have write access to /.'= not-owner.sh: skipped test: you have write access to /. + test 9 =3D 2 + printf '%s\n' 'not-owner.sh: skipped test: you have write access to /.'= + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-not-owner.sh.32QH + rm -rf /tmp/32-bit/coreutils-8.24/gt-not-owner.sh.32QH + exit 77 SKIP tests/touch/not-owner.sh (exit status: 77) SKIP: tests/touch/read-only =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-read-only.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-read-only.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-read-only.sh.caDV +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-read-only.sh.caDV ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-read-only.sh.caDV ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-r= ead-only.sh.caDV' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-read-only.sh.caDV +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-read-only.sh.caDV ++ cd /tmp/32-bit/coreutils-8.24/gt-read-only.sh.caDV ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ touch + test yes =3D yes + local i + for i in '$*' + env touch --version touch (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'read-only.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'read-only.sh: skipped test: must be run as non-root' read-only.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'read-only.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-read-only.sh.caDV + rm -rf /tmp/32-bit/coreutils-8.24/gt-read-only.sh.caDV + exit 77 SKIP tests/touch/read-only.sh (exit status: 77) SKIP: tests/cp/cp-a-selinux =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-cp-a-selinux.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-cp-a-selinux.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.YL0Q +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.YL0Q ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.YL0Q ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-c= p-a-selinux.sh.YL0Q' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.YL0Q +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.YL0Q ++ cd /tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.YL0Q ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/cp/cp-a-selinux.sh + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'cp-a-selinux.sh: skipped test: this system lacks SELinux support= ' + case $IFS in + printf '%s\n' 'cp-a-selinux.sh: skipped test: this system lacks SELinux= support' cp-a-selinux.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'cp-a-selinux.sh: skipped test: this system lacks SELinux= support' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.YL0Q + rm -rf /tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.YL0Q + exit 77 SKIP tests/cp/cp-a-selinux.sh (exit status: 77) SKIP: tests/cp/cp-mv-enotsup-xattr =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-cp-mv-enotsup-xattr.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-cp-mv-enotsup-xattr.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.UDlD +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.UDlD ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.UDlD ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-c= p-mv-enotsup-xattr.sh.UDlD' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.UDlD +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.UDlD ++ cd /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.UDlD ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp mv + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/cp/cp-mv-enotsup-xattr.sh ++ pwd + cwd=3D/tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.UDlD + skip=3D0 + make_fs noxattr nouser_xattr + where=3Dnoxattr + opts=3Dnouser_xattr + fs=3Dnoxattr.bin + dd if=3D/dev/zero of=3Dnoxattr.bin bs=3D8192 count=3D200 + mkdir noxattr + mkfs -t ext2 -F noxattr.bin mkfs: illegal option -- t Usage: mkfs [-F FSType] [-V] [-m] [-o specific_options] special=20 mkfs [operands] + skip_ 'failed to create ext2 file system' + warn_ 'cp-mv-enotsup-xattr.sh: skipped test: failed to create ext2 file= system' + case $IFS in + printf '%s\n' 'cp-mv-enotsup-xattr.sh: skipped test: failed to create e= xt2 file system' cp-mv-enotsup-xattr.sh: skipped test: failed to create ext2 file system + test 9 =3D 2 + printf '%s\n' 'cp-mv-enotsup-xattr.sh: skipped test: failed to create e= xt2 file system' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + cd / + umount /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.UDlD/noxatt= r umount: warning: /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.UDl= D/noxattr not in mnttab umount: /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.UDlD/noxattr= not mounted + umount /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.UDlD/xattr umount: warning: /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.UDl= D/xattr not in mnttab umount: /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.UDlD/xattr n= o such file or directory + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.UDl= D + rm -rf /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.UDlD + exit 77 SKIP tests/cp/cp-mv-enotsup-xattr.sh (exit status: 77) SKIP: tests/cp/capability =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-capability.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-capability.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-capability.sh.MyMV +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-capability.sh.MyMV ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-capability.sh.MyMV ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-c= apability.sh.MyMV' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-capability.sh.MyMV +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-capability.sh.MyMV ++ cd /tmp/32-bit/coreutils-8.24/gt-capability.sh.MyMV ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/cp/capability.sh + working_umask_or_skip_ + umask 022 + touch file1 file2 + chmod 644 file2 ++ ls -l file1 file2 ++ sed 's/ .*//' ++ uniq + perms=3D-rw-r--r-- + rm -f file1 file2 + case $perms in + grep '^#define HAVE_CAP 1' /tmp/32-bit/coreutils-8.24/lib/config.h + skip_ 'configured without libcap support' + warn_ 'capability.sh: skipped test: configured without libcap support' + case $IFS in + printf '%s\n' 'capability.sh: skipped test: configured without libcap s= upport' capability.sh: skipped test: configured without libcap support + test 9 =3D 2 + printf '%s\n' 'capability.sh: skipped test: configured without libcap s= upport' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-capability.sh.MyMV + rm -rf /tmp/32-bit/coreutils-8.24/gt-capability.sh.MyMV + exit 77 SKIP tests/cp/capability.sh (exit status: 77) SKIP: tests/cp/sparse-fiemap =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sparse-fiemap.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sparse-fiemap.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.N40r +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.N40r ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.N40r ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-s= parse-fiemap.sh.N40r' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.N40r +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.N40r ++ cd /tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.N40r ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_perl_ + : perl + perl -e 'use warnings' + touch fiemap_chk + fiemap_capable_ fiemap_chk + python + python /tmp/32-bit/coreutils-8.24/tests/fiemap-capable fiemap_chk + skip_ 'current file system has insufficient FIEMAP support' + warn_ 'sparse-fiemap.sh: skipped test: current file system has insuffic= ient FIEMAP support' + case $IFS in + printf '%s\n' 'sparse-fiemap.sh: skipped test: current file system has = insufficient FIEMAP support' sparse-fiemap.sh: skipped test: current file system has insufficient FIEM= AP support + test 9 =3D 2 + printf '%s\n' 'sparse-fiemap.sh: skipped test: current file system has = insufficient FIEMAP support' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.N40r + rm -rf /tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.N40r + exit 77 SKIP tests/cp/sparse-fiemap.sh (exit status: 77) SKIP: tests/dd/skip-seek-past-dev =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-skip-seek-past-dev.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-skip-seek-past-dev.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.ClZY +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.ClZY ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.ClZY ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-s= kip-seek-past-dev.sh.ClZY' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.ClZY +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.ClZY ++ cd /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.ClZY ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ dd + test yes =3D yes + local i + for i in '$*' + env dd --version dd (coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/dd/skip-seek-past-dev.sh + require_local_dir_ + require_mount_list_ + local 'mount_list_fail=3Dcannot read table of mounted file systems' + df --local + grep -F 'cannot read table of mounted file systems' + is_local_dir_ . + test 1 =3D 1 + df --local . ++ df --output=3Dsource . ++ tail -n1 + device=3Dswap ++ get_device_size swap ++ BLOCKDEV=3Dblockdev ++ blockdev -V ++ BLOCKDEV=3D/sbin/blockdev ++ /sbin/blockdev --getsize64 swap =2E/tests/dd/skip-seek-past-dev.sh: line 30: /sbin/blockdev: No such file= or directory + dev_size=3D + skip_ 'failed to determine size of swap' + warn_ 'skip-seek-past-dev.sh: skipped test: failed to determine size of= swap' + case $IFS in + printf '%s\n' 'skip-seek-past-dev.sh: skipped test: failed to determine= size of swap' skip-seek-past-dev.sh: skipped test: failed to determine size of swap + test 9 =3D 2 + printf '%s\n' 'skip-seek-past-dev.sh: skipped test: failed to determine= size of swap' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.ClZY= + rm -rf /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.ClZY + exit 77 SKIP tests/dd/skip-seek-past-dev.sh (exit status: 77) SKIP: tests/df/problematic-chars =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-problematic-chars.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-problematic-chars.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.tlWc +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.tlWc ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.tlWc ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-p= roblematic-chars.sh.tlWc' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.tlWc +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.tlWc ++ cd /tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.tlWc ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ df + test yes =3D yes + local i + for i in '$*' + env df --version df (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Paul Eggert. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/df/problematic-chars.sh + mnt=3D'mount point' ++ pwd + cwd=3D/tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.tlWc + skip=3D0 + dd if=3D/dev/zero of=3Dblob bs=3D8192 count=3D200 + mkdir 'mount point' + mkfs -t ext2 -F blob mkfs: illegal option -- t Usage: mkfs [-F FSType] [-V] [-m] [-o specific_options] special=20 mkfs [operands] + skip_ 'failed to create ext2 file system' + warn_ 'problematic-chars.sh: skipped test: failed to create ext2 file s= ystem' + case $IFS in + printf '%s\n' 'problematic-chars.sh: skipped test: failed to create ext= 2 file system' problematic-chars.sh: skipped test: failed to create ext2 file system + test 9 =3D 2 + printf '%s\n' 'problematic-chars.sh: skipped test: failed to create ext= 2 file system' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + cd / + umount '/tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.tlWc/mount point' umount: warning: /tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.tlWc/= mount point not in mnttab umount: /tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.tlWc/mount point not mounted + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.tlWc + rm -rf /tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.tlWc + exit 77 SKIP tests/df/problematic-chars.sh (exit status: 77) SKIP: tests/df/over-mount-device =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-over-mount-device.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-over-mount-device.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.5nSX +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.5nSX ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.5nSX ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-o= ver-mount-device.sh.5n-X' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.5nSX +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.5nSX ++ cd /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.5nSX ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ df + test yes =3D yes + local i + for i in '$*' + env df --version df (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Paul Eggert. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/df/over-mount-device.sh ++ pwd + cwd=3D/tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.5nSX + skip=3D0 + for i in 1 2 + dd if=3D/dev/zero of=3Dblob1 bs=3D8192 count=3D200 + mkfs -t ext2 -F blob1 mkfs: illegal option -- t Usage: mkfs [-F FSType] [-V] [-m] [-o specific_options] special=20 mkfs [operands] + skip_ 'failed to create ext2 file system' + warn_ 'over-mount-device.sh: skipped test: failed to create ext2 file s= ystem' + case $IFS in + printf '%s\n' 'over-mount-device.sh: skipped test: failed to create ext= 2 file system' over-mount-device.sh: skipped test: failed to create ext2 file system + test 9 =3D 2 + printf '%s\n' 'over-mount-device.sh: skipped test: failed to create ext= 2 file system' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + cd / + umount /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.5nSX/mnt umount: warning: /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.5nSX/= mnt not in mnttab umount: /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.5nSX/mnt no su= ch file or directory + umount /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.5nSX/mnt umount: warning: /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.5nSX/= mnt not in mnttab umount: /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.5nSX/mnt no su= ch file or directory + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.5nSX + rm -rf /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.5nSX + exit 77 SKIP tests/df/over-mount-device.sh (exit status: 77) SKIP: tests/du/bind-mount-dir-cycle =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-bind-mount-dir-cycle.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-bind-mount-dir-cycle.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.OGnW +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.OGnW ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.OGnW ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-b= ind-mount-dir-cycle.sh.OGnW' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.OGnW +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.OGnW= ++ cd /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.OGnW ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/du/bind-mount-dir-cycle.sh + mkdir -p a/b + mount --bind a a/b mount: illegal option -- bind Usage: mount [-v | -p] mount [-F FSType] [-V] [current_options] [-o specific_options] {special | mount_point} mount [-F FSType] [-V] [current_options] [-o specific_options] special mount_point mount -a [-F FSType ] [-V] [current_options] [-o specific_options] [mount_point ...] + skip_ 'This test requires mount with a working --bind option.' + warn_ 'bind-mount-dir-cycle.sh: skipped test: This test requires mount = with a working --bind option.' + case $IFS in + printf '%s\n' 'bind-mount-dir-cycle.sh: skipped test: This test require= s mount with a working --bind option.' bind-mount-dir-cycle.sh: skipped test: This test requires mount with a wo= rking --bind option. + test 9 =3D 2 + printf '%s\n' 'bind-mount-dir-cycle.sh: skipped test: This test require= s mount with a working --bind option.' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + umount a/b umount: warning: a/b not in mnttab umount: a/b not mounted + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.OG= nW + rm -rf /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.OGnW + exit 77 SKIP tests/du/bind-mount-dir-cycle.sh (exit status: 77) SKIP: tests/du/bind-mount-dir-cycle-v2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-bind-mount-dir-cycle-v2.sh.XXX= X +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-bind-mount-dir-cycle-v2.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh.uf26 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh.uf26= ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh.uf2= 6 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-b= ind-mount-dir-cycle-v2.sh.uf26' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh.uf26 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh.u= f26 ++ cd /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh.uf26 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/du/bind-mount-dir-cycle-v2.sh + mkdir -p a/b/c + mount --bind a a/b/c mount: illegal option -- bind Usage: mount [-v | -p] mount [-F FSType] [-V] [current_options] [-o specific_options] {special | mount_point} mount [-F FSType] [-V] [current_options] [-o specific_options] special mount_point mount -a [-F FSType ] [-V] [current_options] [-o specific_options] [mount_point ...] + skip_ 'This test requires mount with a working --bind option.' + warn_ 'bind-mount-dir-cycle-v2.sh: skipped test: This test requires mou= nt with a working --bind option.' + case $IFS in + printf '%s\n' 'bind-mount-dir-cycle-v2.sh: skipped test: This test requ= ires mount with a working --bind option.' bind-mount-dir-cycle-v2.sh: skipped test: This test requires mount with a= working --bind option. + test 9 =3D 2 + printf '%s\n' 'bind-mount-dir-cycle-v2.sh: skipped test: This test requ= ires mount with a working --bind option.' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + umount a/b/c umount: warning: a/b/c not in mnttab umount: a/b/c not mounted + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh= =2Euf26 + rm -rf /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh.uf26 + exit 77 SKIP tests/du/bind-mount-dir-cycle-v2.sh (exit status: 77) SKIP: tests/ls/capability =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-capability.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-capability.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-capability.sh.aRpY +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-capability.sh.aRpY ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-capability.sh.aRpY ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-c= apability.sh.aRpY' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-capability.sh.aRpY +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-capability.sh.aRpY ++ cd /tmp/32-bit/coreutils-8.24/gt-capability.sh.aRpY ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ls + test yes =3D yes + local i + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/ls/capability.sh + grep '^#define HAVE_CAP 1' /tmp/32-bit/coreutils-8.24/lib/config.h + skip_ 'configured without libcap support' + warn_ 'capability.sh: skipped test: configured without libcap support' + case $IFS in + printf '%s\n' 'capability.sh: skipped test: configured without libcap s= upport' capability.sh: skipped test: configured without libcap support + test 9 =3D 2 + printf '%s\n' 'capability.sh: skipped test: configured without libcap s= upport' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-capability.sh.aRpY + rm -rf /tmp/32-bit/coreutils-8.24/gt-capability.sh.aRpY + exit 77 SKIP tests/ls/capability.sh (exit status: 77) SKIP: tests/misc/chcon =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-chcon.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-chcon.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-chcon.sh.KIQ3 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-chcon.sh.KIQ3 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-chcon.sh.KIQ3 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-c= hcon.sh.KIQ3' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-chcon.sh.KIQ3 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-chcon.sh.KIQ3 ++ cd /tmp/32-bit/coreutils-8.24/gt-chcon.sh.KIQ3 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chcon + test yes =3D yes + local i + for i in '$*' + env chcon --version chcon (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/misc/chcon.sh + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'chcon.sh: skipped test: this system lacks SELinux support' + case $IFS in + printf '%s\n' 'chcon.sh: skipped test: this system lacks SELinux suppor= t' chcon.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'chcon.sh: skipped test: this system lacks SELinux suppor= t' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-chcon.sh.KIQ3 + rm -rf /tmp/32-bit/coreutils-8.24/gt-chcon.sh.KIQ3 + exit 77 SKIP tests/misc/chcon.sh (exit status: 77) SKIP: tests/misc/selinux =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-selinux.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-selinux.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-selinux.sh.6lT4 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-selinux.sh.6lT4 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-selinux.sh.6lT4 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-s= elinux.sh.6lT4' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-selinux.sh.6lT4 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-selinux.sh.6lT4 ++ cd /tmp/32-bit/coreutils-8.24/gt-selinux.sh.6lT4 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chcon cp ls mv stat + test yes =3D yes + local i + for i in '$*' + env chcon --version chcon (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env stat --version stat (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/misc/selinux.sh + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'selinux.sh: skipped test: this system lacks SELinux support' + case $IFS in + printf '%s\n' 'selinux.sh: skipped test: this system lacks SELinux supp= ort' selinux.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'selinux.sh: skipped test: this system lacks SELinux supp= ort' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-selinux.sh.6lT4 + rm -rf /tmp/32-bit/coreutils-8.24/gt-selinux.sh.6lT4 + exit 77 SKIP tests/misc/selinux.sh (exit status: 77) SKIP: tests/mkdir/writable-under-readonly =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-writable-under-readonly.sh.XXX= X +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-writable-under-readonly.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh.5WUM +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh.5WUM= ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh.5WU= M ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-w= ritable-under-readonly.sh.5WUM' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh.5WUM +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh.5= WUM ++ cd /tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh.5WUM ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/mkdir/writable-under-readonly.sh + skip_ temporarily disabled + warn_ 'writable-under-readonly.sh: skipped test: temporarily' disabled + case $IFS in + printf '%s\n' 'writable-under-readonly.sh: skipped test: temporarily di= sabled' writable-under-readonly.sh: skipped test: temporarily disabled + test 9 =3D 2 + printf '%s\n' 'writable-under-readonly.sh: skipped test: temporarily di= sabled' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh= =2E5WUM + rm -rf /tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh.5WUM + exit 77 SKIP tests/mkdir/writable-under-readonly.sh (exit status: 77) SKIP: tests/mkdir/smack-root =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-smack-root.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-smack-root.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-smack-root.sh.2GA0 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.2GA0 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.2GA0 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-s= mack-root.sh.2GA0' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.2GA0 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-smack-root.sh.2GA0 ++ cd /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.2GA0 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir mkfifo mknod + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mkfifo --version mkfifo (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mknod --version mknod (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_smack_ + grep 'smackfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SMACK support' + warn_ 'smack-root.sh: skipped test: this system lacks SMACK support' + case $IFS in + printf '%s\n' 'smack-root.sh: skipped test: this system lacks SMACK sup= port' smack-root.sh: skipped test: this system lacks SMACK support + test 9 =3D 2 + printf '%s\n' 'smack-root.sh: skipped test: this system lacks SMACK sup= port' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.2GA0 + rm -rf /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.2GA0 + exit 77 SKIP tests/mkdir/smack-root.sh (exit status: 77) SKIP: tests/mv/hardlink-case =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-hardlink-case.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-hardlink-case.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.IaCP +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.IaCP ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.IaCP ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-h= ardlink-case.sh.IaCP' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.IaCP +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.IaCP ++ cd /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.IaCP ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/mv/hardlink-case.sh ++ pwd + cwd=3D/tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.IaCP + truncate -s100M hfs.img + mkfs -t hfsplus hfs.img mkfs: illegal option -- t Usage: mkfs [-F FSType] [-V] [-m] [-o specific_options] special=20 mkfs [operands] + skip_ 'failed to create hfs file system' + warn_ 'hardlink-case.sh: skipped test: failed to create hfs file system= ' + case $IFS in + printf '%s\n' 'hardlink-case.sh: skipped test: failed to create hfs fil= e system' hardlink-case.sh: skipped test: failed to create hfs file system + test 9 =3D 2 + printf '%s\n' 'hardlink-case.sh: skipped test: failed to create hfs fil= e system' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + cd / + umount /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.IaCP/mnt umount: warning: /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.IaCP/mnt = not in mnttab umount: /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.IaCP/mnt no such f= ile or directory + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.IaCP + rm -rf /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.IaCP + exit 77 SKIP tests/mv/hardlink-case.sh (exit status: 77) SKIP: tests/rm/one-file-system =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-one-file-system.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-one-file-system.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.iMgX +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.iMgX ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.iMgX ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-o= ne-file-system.sh.iMgX' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.iMgX +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.iMgX ++ cd /tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.iMgX ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/rm/one-file-system.sh + . /tmp/32-bit/coreutils-8.24/tests/other-fs-tmpdir ++ test '' =3D set ++ CANDIDATE_TMP_DIRS=3D'/tmp /tmp /dev/shm /var/tmp /usr/tmp /' ++ other_partition_tmpdir=3D +++ stat -c %d . ++ dot_mount_point=3D76283906 ++ for d in '$CANDIDATE_TMP_DIRS' ++ test -d /tmp +++ stat -L -c %d /tmp ++ d_mount_point=3D76283906 ++ test x76283906 =3D x76283906 ++ continue ++ for d in '$CANDIDATE_TMP_DIRS' ++ test -d /tmp +++ stat -L -c %d /tmp ++ d_mount_point=3D76283906 ++ test x76283906 =3D x76283906 ++ continue ++ for d in '$CANDIDATE_TMP_DIRS' ++ test -d /dev/shm ++ continue ++ for d in '$CANDIDATE_TMP_DIRS' ++ test -d /var/tmp +++ stat -L -c %d /var/tmp ++ d_mount_point=3D47513603 ++ test x47513603 =3D x76283906 ++ mkdir /var/tmp/tmp6791 ++ other_partition_tmpdir=3D/var/tmp/tmp6791 ++ break ++ test -z /var/tmp/tmp6791 ++ test yes =3D yes ++ set -x + t=3D/var/tmp/tmp6791 + mkdir -p a/b /var/tmp/tmp6791/y + mount --bind /var/tmp/tmp6791 a/b mount: illegal option -- bind Usage: mount [-v | -p] mount [-F FSType] [-V] [current_options] [-o specific_options] {special | mount_point} mount [-F FSType] [-V] [current_options] [-o specific_options] special mount_point mount -a [-F FSType ] [-V] [current_options] [-o specific_options] [mount_point ...] + skip_ 'This test requires mount with a working --bind option.' + warn_ 'one-file-system.sh: skipped test: This test requires mount with = a working --bind option.' + case $IFS in + printf '%s\n' 'one-file-system.sh: skipped test: This test requires mou= nt with a working --bind option.' one-file-system.sh: skipped test: This test requires mount with a working= --bind option. + test 9 =3D 2 + printf '%s\n' 'one-file-system.sh: skipped test: This test requires mou= nt with a working --bind option.' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + umount a/b umount: warning: a/b not in mnttab umount: a/b not mounted + rm -rf /var/tmp/tmp6791 + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.iMgX + rm -rf /tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.iMgX + exit 77 SKIP tests/rm/one-file-system.sh (exit status: 77) SKIP: tests/rm/read-only =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-read-only.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-read-only.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-read-only.sh.BoRc +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-read-only.sh.BoRc ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-read-only.sh.BoRc ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-r= ead-only.sh.BoRc' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-read-only.sh.BoRc +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-read-only.sh.BoRc ++ cd /tmp/32-bit/coreutils-8.24/gt-read-only.sh.BoRc ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/rm/read-only.sh ++ pwd + cwd=3D/tmp/32-bit/coreutils-8.24/gt-read-only.sh.BoRc + skip=3D0 + dd if=3D/dev/zero of=3Dblob bs=3D8192 count=3D200 + mkdir mnt + mkfs -t ext2 -F blob mkfs: illegal option -- t Usage: mkfs [-F FSType] [-V] [-m] [-o specific_options] special=20 mkfs [operands] + skip_ 'failed to create ext2 file system' + warn_ 'read-only.sh: skipped test: failed to create ext2 file system' + case $IFS in + printf '%s\n' 'read-only.sh: skipped test: failed to create ext2 file s= ystem' read-only.sh: skipped test: failed to create ext2 file system + test 9 =3D 2 + printf '%s\n' 'read-only.sh: skipped test: failed to create ext2 file s= ystem' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + cd / + umount /tmp/32-bit/coreutils-8.24/gt-read-only.sh.BoRc/mnt umount: warning: /tmp/32-bit/coreutils-8.24/gt-read-only.sh.BoRc/mnt not = in mnttab umount: /tmp/32-bit/coreutils-8.24/gt-read-only.sh.BoRc/mnt not mounted + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-read-only.sh.BoRc + rm -rf /tmp/32-bit/coreutils-8.24/gt-read-only.sh.BoRc + exit 77 SKIP tests/rm/read-only.sh (exit status: 77) SKIP: tests/tail-2/append-only =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-append-only.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-append-only.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-append-only.sh.Drwr +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-append-only.sh.Drwr ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-append-only.sh.Drwr ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-a= ppend-only.sh.Drwr' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-append-only.sh.Drwr +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-append-only.sh.Drwr ++ cd /tmp/32-bit/coreutils-8.24/gt-append-only.sh.Drwr ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/tail-2/append-only.sh + chattr_a_works=3D1 + touch f + chattr +a f + chattr_a_works=3D0 + chattr_a_works=3D0 + echo x + test 0 =3D 0 + skip_ 'chattr +a doesn'\''t work on this file system' + warn_ 'append-only.sh: skipped test: chattr +a doesn'\''t work on this = file system' + case $IFS in + printf '%s\n' 'append-only.sh: skipped test: chattr +a doesn'\''t work = on this file system' append-only.sh: skipped test: chattr +a doesn't work on this file system + test 9 =3D 2 + printf '%s\n' 'append-only.sh: skipped test: chattr +a doesn'\''t work = on this file system' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + kill + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-append-only.sh.Drwr + rm -rf /tmp/32-bit/coreutils-8.24/gt-append-only.sh.Drwr + exit 77 SKIP tests/tail-2/append-only.sh (exit status: 77) SKIP: tests/factor/t00 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t00.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t00.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t00.sh.2NxQ +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t00.sh.2NxQ ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t00.sh.2NxQ ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 00.sh.2NxQ' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t00.sh.2NxQ +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t00.sh.2NxQ ++ cd /tmp/32-bit/coreutils-8.24/gt-t00.sh.2NxQ ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't00.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't00.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t00.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't00.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t00.sh.2NxQ + rm -rf /tmp/32-bit/coreutils-8.24/gt-t00.sh.2NxQ + exit 77 SKIP tests/factor/t00.sh (exit status: 77) SKIP: tests/factor/t01 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t01.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t01.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t01.sh.GYc5 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t01.sh.GYc5 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t01.sh.GYc5 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 01.sh.GYc5' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t01.sh.GYc5 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t01.sh.GYc5 ++ cd /tmp/32-bit/coreutils-8.24/gt-t01.sh.GYc5 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't01.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't01.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t01.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't01.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t01.sh.GYc5 + rm -rf /tmp/32-bit/coreutils-8.24/gt-t01.sh.GYc5 + exit 77 SKIP tests/factor/t01.sh (exit status: 77) SKIP: tests/factor/t02 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t02.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t02.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t02.sh.bJ5q +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t02.sh.bJ5q ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t02.sh.bJ5q ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 02.sh.bJ5q' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t02.sh.bJ5q +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t02.sh.bJ5q ++ cd /tmp/32-bit/coreutils-8.24/gt-t02.sh.bJ5q ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't02.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't02.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t02.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't02.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t02.sh.bJ5q + rm -rf /tmp/32-bit/coreutils-8.24/gt-t02.sh.bJ5q + exit 77 SKIP tests/factor/t02.sh (exit status: 77) SKIP: tests/factor/t03 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t03.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t03.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t03.sh.ackY +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t03.sh.ackY ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t03.sh.ackY ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 03.sh.ackY' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t03.sh.ackY +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t03.sh.ackY ++ cd /tmp/32-bit/coreutils-8.24/gt-t03.sh.ackY ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't03.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't03.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t03.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't03.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t03.sh.ackY + rm -rf /tmp/32-bit/coreutils-8.24/gt-t03.sh.ackY + exit 77 SKIP tests/factor/t03.sh (exit status: 77) SKIP: tests/factor/t04 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t04.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t04.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t04.sh.jnuB +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t04.sh.jnuB ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t04.sh.jnuB ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 04.sh.jnuB' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t04.sh.jnuB +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t04.sh.jnuB ++ cd /tmp/32-bit/coreutils-8.24/gt-t04.sh.jnuB ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't04.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't04.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t04.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't04.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t04.sh.jnuB + rm -rf /tmp/32-bit/coreutils-8.24/gt-t04.sh.jnuB + exit 77 SKIP tests/factor/t04.sh (exit status: 77) SKIP: tests/factor/t05 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t05.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t05.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t05.sh.ODRH +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t05.sh.ODRH ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t05.sh.ODRH ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 05.sh.ODRH' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t05.sh.ODRH +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t05.sh.ODRH ++ cd /tmp/32-bit/coreutils-8.24/gt-t05.sh.ODRH ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't05.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't05.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t05.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't05.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t05.sh.ODRH + rm -rf /tmp/32-bit/coreutils-8.24/gt-t05.sh.ODRH + exit 77 SKIP tests/factor/t05.sh (exit status: 77) SKIP: tests/factor/t06 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t06.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t06.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t06.sh.wZME +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t06.sh.wZME ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t06.sh.wZME ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 06.sh.wZME' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t06.sh.wZME +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t06.sh.wZME ++ cd /tmp/32-bit/coreutils-8.24/gt-t06.sh.wZME ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't06.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't06.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t06.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't06.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t06.sh.wZME + rm -rf /tmp/32-bit/coreutils-8.24/gt-t06.sh.wZME + exit 77 SKIP tests/factor/t06.sh (exit status: 77) SKIP: tests/factor/t07 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t07.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t07.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t07.sh.mRIe +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t07.sh.mRIe ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t07.sh.mRIe ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 07.sh.mRIe' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t07.sh.mRIe +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t07.sh.mRIe ++ cd /tmp/32-bit/coreutils-8.24/gt-t07.sh.mRIe ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't07.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't07.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t07.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't07.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t07.sh.mRIe + rm -rf /tmp/32-bit/coreutils-8.24/gt-t07.sh.mRIe + exit 77 SKIP tests/factor/t07.sh (exit status: 77) SKIP: tests/factor/t08 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t08.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t08.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t08.sh.6mhu +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t08.sh.6mhu ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t08.sh.6mhu ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 08.sh.6mhu' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t08.sh.6mhu +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t08.sh.6mhu ++ cd /tmp/32-bit/coreutils-8.24/gt-t08.sh.6mhu ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't08.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't08.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t08.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't08.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t08.sh.6mhu + rm -rf /tmp/32-bit/coreutils-8.24/gt-t08.sh.6mhu + exit 77 SKIP tests/factor/t08.sh (exit status: 77) SKIP: tests/factor/t09 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t09.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t09.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t09.sh.qs29 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t09.sh.qs29 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t09.sh.qs29 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 09.sh.qs29' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t09.sh.qs29 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t09.sh.qs29 ++ cd /tmp/32-bit/coreutils-8.24/gt-t09.sh.qs29 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't09.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't09.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t09.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't09.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t09.sh.qs29 + rm -rf /tmp/32-bit/coreutils-8.24/gt-t09.sh.qs29 + exit 77 SKIP tests/factor/t09.sh (exit status: 77) SKIP: tests/factor/t10 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t10.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t10.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t10.sh.3qN7 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t10.sh.3qN7 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t10.sh.3qN7 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 10.sh.3qN7' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t10.sh.3qN7 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t10.sh.3qN7 ++ cd /tmp/32-bit/coreutils-8.24/gt-t10.sh.3qN7 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't10.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't10.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t10.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't10.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t10.sh.3qN7 + rm -rf /tmp/32-bit/coreutils-8.24/gt-t10.sh.3qN7 + exit 77 SKIP tests/factor/t10.sh (exit status: 77) SKIP: tests/factor/t11 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t11.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t11.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t11.sh.MO2e +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t11.sh.MO2e ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t11.sh.MO2e ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 11.sh.MO2e' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t11.sh.MO2e +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t11.sh.MO2e ++ cd /tmp/32-bit/coreutils-8.24/gt-t11.sh.MO2e ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't11.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't11.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t11.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't11.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t11.sh.MO2e + rm -rf /tmp/32-bit/coreutils-8.24/gt-t11.sh.MO2e + exit 77 SKIP tests/factor/t11.sh (exit status: 77) SKIP: tests/factor/t12 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t12.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t12.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t12.sh.qv1j +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t12.sh.qv1j ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t12.sh.qv1j ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 12.sh.qv1j' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t12.sh.qv1j +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t12.sh.qv1j ++ cd /tmp/32-bit/coreutils-8.24/gt-t12.sh.qv1j ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't12.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't12.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t12.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't12.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t12.sh.qv1j + rm -rf /tmp/32-bit/coreutils-8.24/gt-t12.sh.qv1j + exit 77 SKIP tests/factor/t12.sh (exit status: 77) SKIP: tests/factor/t13 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t13.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t13.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t13.sh.1onE +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t13.sh.1onE ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t13.sh.1onE ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 13.sh.1onE' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t13.sh.1onE +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t13.sh.1onE ++ cd /tmp/32-bit/coreutils-8.24/gt-t13.sh.1onE ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't13.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't13.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t13.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't13.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t13.sh.1onE + rm -rf /tmp/32-bit/coreutils-8.24/gt-t13.sh.1onE + exit 77 SKIP tests/factor/t13.sh (exit status: 77) SKIP: tests/factor/t14 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t14.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t14.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t14.sh.9WP2 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t14.sh.9WP2 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t14.sh.9WP2 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 14.sh.9WP2' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t14.sh.9WP2 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t14.sh.9WP2 ++ cd /tmp/32-bit/coreutils-8.24/gt-t14.sh.9WP2 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't14.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't14.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t14.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't14.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t14.sh.9WP2 + rm -rf /tmp/32-bit/coreutils-8.24/gt-t14.sh.9WP2 + exit 77 SKIP tests/factor/t14.sh (exit status: 77) SKIP: tests/factor/t15 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t15.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t15.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t15.sh.s8wc +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t15.sh.s8wc ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t15.sh.s8wc ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 15.sh.s8wc' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t15.sh.s8wc +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t15.sh.s8wc ++ cd /tmp/32-bit/coreutils-8.24/gt-t15.sh.s8wc ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't15.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't15.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t15.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't15.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t15.sh.s8wc + rm -rf /tmp/32-bit/coreutils-8.24/gt-t15.sh.s8wc + exit 77 SKIP tests/factor/t15.sh (exit status: 77) SKIP: tests/factor/t16 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t16.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t16.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t16.sh.t9Bw +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t16.sh.t9Bw ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t16.sh.t9Bw ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 16.sh.t9Bw' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t16.sh.t9Bw +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t16.sh.t9Bw ++ cd /tmp/32-bit/coreutils-8.24/gt-t16.sh.t9Bw ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't16.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't16.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t16.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't16.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t16.sh.t9Bw + rm -rf /tmp/32-bit/coreutils-8.24/gt-t16.sh.t9Bw + exit 77 SKIP tests/factor/t16.sh (exit status: 77) SKIP: tests/factor/t17 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t17.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t17.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t17.sh.jkEQ +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t17.sh.jkEQ ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t17.sh.jkEQ ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 17.sh.jkEQ' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t17.sh.jkEQ +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t17.sh.jkEQ ++ cd /tmp/32-bit/coreutils-8.24/gt-t17.sh.jkEQ ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't17.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't17.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t17.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't17.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t17.sh.jkEQ + rm -rf /tmp/32-bit/coreutils-8.24/gt-t17.sh.jkEQ + exit 77 SKIP tests/factor/t17.sh (exit status: 77) SKIP: tests/factor/t18 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t18.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t18.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t18.sh.a92T +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t18.sh.a92T ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t18.sh.a92T ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 18.sh.a92T' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t18.sh.a92T +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t18.sh.a92T ++ cd /tmp/32-bit/coreutils-8.24/gt-t18.sh.a92T ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't18.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't18.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t18.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't18.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t18.sh.a92T + rm -rf /tmp/32-bit/coreutils-8.24/gt-t18.sh.a92T + exit 77 SKIP tests/factor/t18.sh (exit status: 77) SKIP: tests/factor/t19 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t19.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t19.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t19.sh.RLB1 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t19.sh.RLB1 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t19.sh.RLB1 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 19.sh.RLB1' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t19.sh.RLB1 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t19.sh.RLB1 ++ cd /tmp/32-bit/coreutils-8.24/gt-t19.sh.RLB1 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't19.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't19.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t19.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't19.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t19.sh.RLB1 + rm -rf /tmp/32-bit/coreutils-8.24/gt-t19.sh.RLB1 + exit 77 SKIP tests/factor/t19.sh (exit status: 77) SKIP: tests/factor/t20 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t20.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t20.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t20.sh.A9Wx +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t20.sh.A9Wx ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t20.sh.A9Wx ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 20.sh.A9Wx' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t20.sh.A9Wx +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t20.sh.A9Wx ++ cd /tmp/32-bit/coreutils-8.24/gt-t20.sh.A9Wx ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't20.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't20.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t20.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't20.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t20.sh.A9Wx + rm -rf /tmp/32-bit/coreutils-8.24/gt-t20.sh.A9Wx + exit 77 SKIP tests/factor/t20.sh (exit status: 77) SKIP: tests/factor/t21 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t21.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t21.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t21.sh.oI3m +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t21.sh.oI3m ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t21.sh.oI3m ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 21.sh.oI3m' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t21.sh.oI3m +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t21.sh.oI3m ++ cd /tmp/32-bit/coreutils-8.24/gt-t21.sh.oI3m ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't21.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't21.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t21.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't21.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t21.sh.oI3m + rm -rf /tmp/32-bit/coreutils-8.24/gt-t21.sh.oI3m + exit 77 SKIP tests/factor/t21.sh (exit status: 77) SKIP: tests/factor/t22 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t22.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t22.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t22.sh.X3Js +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t22.sh.X3Js ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t22.sh.X3Js ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 22.sh.X3Js' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t22.sh.X3Js +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t22.sh.X3Js ++ cd /tmp/32-bit/coreutils-8.24/gt-t22.sh.X3Js ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't22.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't22.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t22.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't22.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t22.sh.X3Js + rm -rf /tmp/32-bit/coreutils-8.24/gt-t22.sh.X3Js + exit 77 SKIP tests/factor/t22.sh (exit status: 77) SKIP: tests/factor/t23 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t23.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t23.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t23.sh.LQsu +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t23.sh.LQsu ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t23.sh.LQsu ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 23.sh.LQsu' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t23.sh.LQsu +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t23.sh.LQsu ++ cd /tmp/32-bit/coreutils-8.24/gt-t23.sh.LQsu ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't23.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't23.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t23.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't23.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t23.sh.LQsu + rm -rf /tmp/32-bit/coreutils-8.24/gt-t23.sh.LQsu + exit 77 SKIP tests/factor/t23.sh (exit status: 77) SKIP: tests/factor/t24 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t24.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t24.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t24.sh.HoxH +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t24.sh.HoxH ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t24.sh.HoxH ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 24.sh.HoxH' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t24.sh.HoxH +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t24.sh.HoxH ++ cd /tmp/32-bit/coreutils-8.24/gt-t24.sh.HoxH ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't24.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't24.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t24.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't24.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t24.sh.HoxH + rm -rf /tmp/32-bit/coreutils-8.24/gt-t24.sh.HoxH + exit 77 SKIP tests/factor/t24.sh (exit status: 77) SKIP: tests/factor/t25 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t25.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t25.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t25.sh.K9on +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t25.sh.K9on ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t25.sh.K9on ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 25.sh.K9on' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t25.sh.K9on +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t25.sh.K9on ++ cd /tmp/32-bit/coreutils-8.24/gt-t25.sh.K9on ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't25.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't25.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t25.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't25.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t25.sh.K9on + rm -rf /tmp/32-bit/coreutils-8.24/gt-t25.sh.K9on + exit 77 SKIP tests/factor/t25.sh (exit status: 77) SKIP: tests/factor/t26 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t26.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t26.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t26.sh.Ylki +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t26.sh.Ylki ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t26.sh.Ylki ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 26.sh.Ylki' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t26.sh.Ylki +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t26.sh.Ylki ++ cd /tmp/32-bit/coreutils-8.24/gt-t26.sh.Ylki ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't26.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't26.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t26.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't26.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t26.sh.Ylki + rm -rf /tmp/32-bit/coreutils-8.24/gt-t26.sh.Ylki + exit 77 SKIP tests/factor/t26.sh (exit status: 77) SKIP: tests/factor/t27 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t27.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t27.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t27.sh.HBZI +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t27.sh.HBZI ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t27.sh.HBZI ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 27.sh.HBZI' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t27.sh.HBZI +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t27.sh.HBZI ++ cd /tmp/32-bit/coreutils-8.24/gt-t27.sh.HBZI ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't27.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't27.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t27.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't27.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t27.sh.HBZI + rm -rf /tmp/32-bit/coreutils-8.24/gt-t27.sh.HBZI + exit 77 SKIP tests/factor/t27.sh (exit status: 77) SKIP: tests/factor/t28 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t28.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t28.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t28.sh.j1Iq +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t28.sh.j1Iq ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t28.sh.j1Iq ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 28.sh.j1Iq' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t28.sh.j1Iq +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t28.sh.j1Iq ++ cd /tmp/32-bit/coreutils-8.24/gt-t28.sh.j1Iq ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't28.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't28.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t28.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't28.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t28.sh.j1Iq + rm -rf /tmp/32-bit/coreutils-8.24/gt-t28.sh.j1Iq + exit 77 SKIP tests/factor/t28.sh (exit status: 77) SKIP: tests/factor/t29 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t29.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t29.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t29.sh.7O66 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t29.sh.7O66 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t29.sh.7O66 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 29.sh.7O66' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t29.sh.7O66 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t29.sh.7O66 ++ cd /tmp/32-bit/coreutils-8.24/gt-t29.sh.7O66 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't29.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't29.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t29.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't29.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t29.sh.7O66 + rm -rf /tmp/32-bit/coreutils-8.24/gt-t29.sh.7O66 + exit 77 SKIP tests/factor/t29.sh (exit status: 77) SKIP: tests/factor/t30 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t30.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t30.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t30.sh.wyyq +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t30.sh.wyyq ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t30.sh.wyyq ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 30.sh.wyyq' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t30.sh.wyyq +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t30.sh.wyyq ++ cd /tmp/32-bit/coreutils-8.24/gt-t30.sh.wyyq ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't30.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't30.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t30.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't30.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t30.sh.wyyq + rm -rf /tmp/32-bit/coreutils-8.24/gt-t30.sh.wyyq + exit 77 SKIP tests/factor/t30.sh (exit status: 77) SKIP: tests/factor/t31 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t31.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t31.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t31.sh.7gTe +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t31.sh.7gTe ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t31.sh.7gTe ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 31.sh.7gTe' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t31.sh.7gTe +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t31.sh.7gTe ++ cd /tmp/32-bit/coreutils-8.24/gt-t31.sh.7gTe ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't31.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't31.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t31.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't31.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t31.sh.7gTe + rm -rf /tmp/32-bit/coreutils-8.24/gt-t31.sh.7gTe + exit 77 SKIP tests/factor/t31.sh (exit status: 77) SKIP: tests/factor/t32 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t32.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t32.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t32.sh.doj3 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t32.sh.doj3 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t32.sh.doj3 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 32.sh.doj3' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t32.sh.doj3 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t32.sh.doj3 ++ cd /tmp/32-bit/coreutils-8.24/gt-t32.sh.doj3 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't32.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't32.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t32.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't32.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t32.sh.doj3 + rm -rf /tmp/32-bit/coreutils-8.24/gt-t32.sh.doj3 + exit 77 SKIP tests/factor/t32.sh (exit status: 77) SKIP: tests/factor/t33 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t33.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t33.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t33.sh.xjWx +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t33.sh.xjWx ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t33.sh.xjWx ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 33.sh.xjWx' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t33.sh.xjWx +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t33.sh.xjWx ++ cd /tmp/32-bit/coreutils-8.24/gt-t33.sh.xjWx ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't33.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't33.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t33.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't33.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t33.sh.xjWx + rm -rf /tmp/32-bit/coreutils-8.24/gt-t33.sh.xjWx + exit 77 SKIP tests/factor/t33.sh (exit status: 77) SKIP: tests/factor/t34 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t34.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t34.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t34.sh.8BYm +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t34.sh.8BYm ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t34.sh.8BYm ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 34.sh.8BYm' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t34.sh.8BYm +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t34.sh.8BYm ++ cd /tmp/32-bit/coreutils-8.24/gt-t34.sh.8BYm ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't34.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't34.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t34.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't34.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t34.sh.8BYm + rm -rf /tmp/32-bit/coreutils-8.24/gt-t34.sh.8BYm + exit 77 SKIP tests/factor/t34.sh (exit status: 77) SKIP: tests/factor/t35 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t35.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t35.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t35.sh.TTgr +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t35.sh.TTgr ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t35.sh.TTgr ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 35.sh.TTgr' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t35.sh.TTgr +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t35.sh.TTgr ++ cd /tmp/32-bit/coreutils-8.24/gt-t35.sh.TTgr ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't35.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't35.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t35.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't35.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t35.sh.TTgr + rm -rf /tmp/32-bit/coreutils-8.24/gt-t35.sh.TTgr + exit 77 SKIP tests/factor/t35.sh (exit status: 77) SKIP: tests/factor/t36 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t36.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t36.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t36.sh.JFcX +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t36.sh.JFcX ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t36.sh.JFcX ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 01:55 /tmp/32-bit/coreutils-8.24/gt-t= 36.sh.JFcX' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t36.sh.JFcX +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t36.sh.JFcX ++ cd /tmp/32-bit/coreutils-8.24/gt-t36.sh.JFcX ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't36.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't36.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t36.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't36.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t36.sh.JFcX + rm -rf /tmp/32-bit/coreutils-8.24/gt-t36.sh.JFcX + exit 77 SKIP tests/factor/t36.sh (exit status: 77) --------------020004060108090304020300 Content-Type: text/plain; charset=ISO-8859-1; name="test-suite.log-monotonic-root-s10u11" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="test-suite.log-monotonic-root-s10u11" =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D GNU coreutils 8.24: ./tests/test-suite.log =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # TOTAL: 579 # PASS: 391 # SKIP: 179 # XFAIL: 0 # FAIL: 8 # XPASS: 0 # ERROR: 1 =2E. contents:: :depth: 2 SKIP: tests/tail-2/inotify-race =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-inotify-race.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-inotify-race.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.3S1L +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.3S1L ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.3S1L ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-i= notify-race.sh.3-1L' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.3S1L +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.3S1L ++ cd /tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.3S1L ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + touch file + touch tail.out + case $(cat gdb.out) in ++ cat gdb.out + skip_ 'can'\''t run gdb' + warn_ 'inotify-race.sh: skipped test: can'\''t run gdb' + case $IFS in + printf '%s\n' 'inotify-race.sh: skipped test: can'\''t run gdb' inotify-race.sh: skipped test: can't run gdb + test 9 =3D 2 + printf '%s\n' 'inotify-race.sh: skipped test: can'\''t run gdb' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + kill + kill + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.3S1L + rm -rf /tmp/32-bit/coreutils-8.24/gt-inotify-race.sh.3S1L + exit 77 SKIP tests/tail-2/inotify-race.sh (exit status: 77) SKIP: tests/tail-2/inotify-race2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-inotify-race2.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-inotify-race2.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.7yEJ +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.7yEJ ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.7yEJ ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-i= notify-race2.sh.7yEJ' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.7yEJ +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.7yEJ ++ cd /tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.7yEJ ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + touch file + touch tail.out + case $(cat gdb.out) in ++ cat gdb.out + skip_ 'can'\''t run gdb' + warn_ 'inotify-race2.sh: skipped test: can'\''t run gdb' + case $IFS in + printf '%s\n' 'inotify-race2.sh: skipped test: can'\''t run gdb' inotify-race2.sh: skipped test: can't run gdb + test 9 =3D 2 + printf '%s\n' 'inotify-race2.sh: skipped test: can'\''t run gdb' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + kill + kill + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.7yEJ + rm -rf /tmp/32-bit/coreutils-8.24/gt-inotify-race2.sh.7yEJ + exit 77 SKIP tests/tail-2/inotify-race2.sh (exit status: 77) SKIP: tests/rm/ext3-perf =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-ext3-perf.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-ext3-perf.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.11Se +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.11Se ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.11Se ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-e= xt3-perf.sh.11-e' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.11Se +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.11Se ++ cd /tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.11Se ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 'ext3-perf.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 'ext3-perf.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' ext3-perf.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 'ext3-perf.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.11Se + rm -rf /tmp/32-bit/coreutils-8.24/gt-ext3-perf.sh.11Se + exit 77 SKIP tests/rm/ext3-perf.sh (exit status: 77) SKIP: tests/rm/cycle =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-cycle.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-cycle.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-cycle.sh.BzDd +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-cycle.sh.BzDd ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-cycle.sh.BzDd ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-c= ycle.sh.BzDd' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-cycle.sh.BzDd +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-cycle.sh.BzDd ++ cd /tmp/32-bit/coreutils-8.24/gt-cycle.sh.BzDd ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'cycle.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'cycle.sh: skipped test: must be run as non-root' cycle.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'cycle.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-cycle.sh.BzDd + rm -rf /tmp/32-bit/coreutils-8.24/gt-cycle.sh.BzDd + exit 77 SKIP tests/rm/cycle.sh (exit status: 77) SKIP: tests/cp/link-heap =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-link-heap.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-link-heap.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-link-heap.sh.xOpO +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-link-heap.sh.xOpO ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-link-heap.sh.xOpO ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-l= ink-heap.sh.xOpO' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-link-heap.sh.xOpO +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-link-heap.sh.xOpO ++ cd /tmp/32-bit/coreutils-8.24/gt-link-heap.sh.xOpO ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'link-heap.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'link-heap.sh: skipped test: expensive: disabled by defau= lt 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' link-heap.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'link-heap.sh: skipped test: expensive: disabled by defau= lt 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-link-heap.sh.xOpO + rm -rf /tmp/32-bit/coreutils-8.24/gt-link-heap.sh.xOpO + exit 77 SKIP tests/cp/link-heap.sh (exit status: 77) SKIP: tests/cp/no-ctx =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-no-ctx.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-no-ctx.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.iceu +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.iceu ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.iceu ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-n= o-ctx.sh.iceu' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.iceu +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.iceu ++ cd /tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.iceu ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_gcc_shared_ + gcc_shared_ - d.so -xc + local in=3D- + local out=3Dd.so + shift 2 + gcc -std=3Dgnu99 -Wall -shared --std=3Dgnu99 -fPIC -O2 -xc - -o d.so -l= dl + rm -f d.so + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'no-ctx.sh: skipped test: this system lacks SELinux support' + case $IFS in + printf '%s\n' 'no-ctx.sh: skipped test: this system lacks SELinux suppo= rt' no-ctx.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'no-ctx.sh: skipped test: this system lacks SELinux suppo= rt' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.iceu + rm -rf /tmp/32-bit/coreutils-8.24/gt-no-ctx.sh.iceu + exit 77 SKIP tests/cp/no-ctx.sh (exit status: 77) SKIP: tests/misc/tty-eof =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D tty-eof.pl: this script requires Perl's Expect package >=3D1.11 SKIP tests/misc/tty-eof.pl (exit status: 77) SKIP: tests/tail-2/inotify-rotate =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-inotify-rotate.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-inotify-rotate.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.SipA +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.SipA ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.SipA ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-i= notify-rotate.sh.-ipA' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.SipA +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.SipA ++ cd /tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.SipA ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + grep '^#define HAVE_INOTIFY 1' /tmp/32-bit/coreutils-8.24/lib/config.h + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'inotify-rotate.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'inotify-rotate.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' inotify-rotate.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'inotify-rotate.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.SipA + rm -rf /tmp/32-bit/coreutils-8.24/gt-inotify-rotate.sh.SipA + exit 77 SKIP tests/tail-2/inotify-rotate.sh (exit status: 77) SKIP: tests/tail-2/inotify-rotate-resources =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-inotify-rotate-resources.sh.XX= XX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-inotify-rotate-resources.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.sh.lCkI +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.sh.lCk= I ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.sh.lC= kI ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-i= notify-rotate-resources.sh.lCkI' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.sh.lCkI +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.sh.= lCkI ++ cd /tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.sh.lCkI ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + grep '^#define HAVE_INOTIFY 1' /tmp/32-bit/coreutils-8.24/lib/config.h + skip_ 'inotify required' + warn_ 'inotify-rotate-resources.sh: skipped test: inotify required' + case $IFS in + printf '%s\n' 'inotify-rotate-resources.sh: skipped test: inotify requi= red' inotify-rotate-resources.sh: skipped test: inotify required + test 9 =3D 2 + printf '%s\n' 'inotify-rotate-resources.sh: skipped test: inotify requi= red' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.s= h.lCkI + rm -rf /tmp/32-bit/coreutils-8.24/gt-inotify-rotate-resources.sh.lCkI + exit 77 SKIP tests/tail-2/inotify-rotate-resources.sh (exit status: 77) SKIP: tests/chmod/no-x =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-no-x.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-no-x.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-no-x.sh.CLSZ +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-no-x.sh.CLSZ ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-no-x.sh.CLSZ ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-n= o-x.sh.CL-Z' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-no-x.sh.CLSZ +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-no-x.sh.CLSZ ++ cd /tmp/32-bit/coreutils-8.24/gt-no-x.sh.CLSZ ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chmod + test yes =3D yes + local i + for i in '$*' + env chmod --version chmod (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'no-x.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'no-x.sh: skipped test: must be run as non-root' no-x.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'no-x.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-no-x.sh.CLSZ + rm -rf /tmp/32-bit/coreutils-8.24/gt-no-x.sh.CLSZ + exit 77 SKIP tests/chmod/no-x.sh (exit status: 77) SKIP: tests/chgrp/basic =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-basic.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-basic.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-basic.sh.B9KA +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-basic.sh.B9KA ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-basic.sh.B9KA ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-b= asic.sh.B9KA' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-basic.sh.B9KA +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-basic.sh.B9KA ++ cd /tmp/32-bit/coreutils-8.24/gt-basic.sh.B9KA ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chgrp + test yes =3D yes + local i + for i in '$*' + env chgrp --version chgrp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_membership_in_two_groups_ + test 0 =3D 0 + groups=3D0 + case "$groups" in + skip_ '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=3D'\''users cdrom'\'' make check ' + warn_ 'basic.sh: skipped 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=3D'\''users cdrom'\'' make check ' + case $IFS in + printf '%s\n' 'basic.sh: skipped test: requires membership in two group= s 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=3D'\''users cdrom'\'' make check ' basic.sh: skipped 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=3D'users cdrom' make check + test 9 =3D 2 + printf '%s\n' 'basic.sh: skipped test: requires membership in two group= s 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=3D'\''users cdrom'\'' make check ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-basic.sh.B9KA + rm -rf /tmp/32-bit/coreutils-8.24/gt-basic.sh.B9KA + exit 77 SKIP tests/chgrp/basic.sh (exit status: 77) SKIP: tests/rm/deep-2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-deep-2.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-deep-2.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-deep-2.sh.BtR1 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-deep-2.sh.BtR1 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-deep-2.sh.BtR1 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-d= eep-2.sh.BtR1' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-deep-2.sh.BtR1 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-deep-2.sh.BtR1 ++ cd /tmp/32-bit/coreutils-8.24/gt-deep-2.sh.BtR1 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_perl_ + : perl + perl -e 'use warnings' + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'deep-2.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'deep-2.sh: skipped test: must be run as non-root' deep-2.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'deep-2.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-deep-2.sh.BtR1 + rm -rf /tmp/32-bit/coreutils-8.24/gt-deep-2.sh.BtR1 + exit 77 SKIP tests/rm/deep-2.sh (exit status: 77) SKIP: tests/rm/isatty =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-isatty.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-isatty.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-isatty.sh.RBVU +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-isatty.sh.RBVU ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-isatty.sh.RBVU ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-i= satty.sh.RBVU' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-isatty.sh.RBVU +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-isatty.sh.RBVU ++ cd /tmp/32-bit/coreutils-8.24/gt-isatty.sh.RBVU ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'isatty.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'isatty.sh: skipped test: must be run as non-root' isatty.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'isatty.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-isatty.sh.RBVU + rm -rf /tmp/32-bit/coreutils-8.24/gt-isatty.sh.RBVU + exit 77 SKIP tests/rm/isatty.sh (exit status: 77) SKIP: tests/rm/empty-inacc =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-empty-inacc.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-empty-inacc.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-empty-inacc.sh.ck5N +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-empty-inacc.sh.ck5N ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-empty-inacc.sh.ck5N ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-e= mpty-inacc.sh.ck5N' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-empty-inacc.sh.ck5N +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-empty-inacc.sh.ck5N ++ cd /tmp/32-bit/coreutils-8.24/gt-empty-inacc.sh.ck5N ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'empty-inacc.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'empty-inacc.sh: skipped test: must be run as non-root' empty-inacc.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'empty-inacc.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-empty-inacc.sh.ck5N + rm -rf /tmp/32-bit/coreutils-8.24/gt-empty-inacc.sh.ck5N + exit 77 SKIP tests/rm/empty-inacc.sh (exit status: 77) SKIP: tests/rm/fail-eacces =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-fail-eacces.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-fail-eacces.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-fail-eacces.sh.SzT2 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-fail-eacces.sh.SzT2 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-fail-eacces.sh.SzT2 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-f= ail-eacces.sh.-zT2' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-fail-eacces.sh.SzT2 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-fail-eacces.sh.SzT2 ++ cd /tmp/32-bit/coreutils-8.24/gt-fail-eacces.sh.SzT2 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'fail-eacces.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'fail-eacces.sh: skipped test: must be run as non-root' fail-eacces.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'fail-eacces.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-fail-eacces.sh.SzT2 + rm -rf /tmp/32-bit/coreutils-8.24/gt-fail-eacces.sh.SzT2 + exit 77 SKIP tests/rm/fail-eacces.sh (exit status: 77) SKIP: tests/rm/fail-eperm =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= fail-eperm.xpl: can't run this test as root: skipping this test at tests/= CuSkip.pm line 30. SKIP tests/rm/fail-eperm.xpl (exit status: 77) SKIP: tests/rm/hash =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-hash.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-hash.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-hash.sh.gBKp +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-hash.sh.gBKp ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-hash.sh.gBKp ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-h= ash.sh.gBKp' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-hash.sh.gBKp +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-hash.sh.gBKp ++ cd /tmp/32-bit/coreutils-8.24/gt-hash.sh.gBKp ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'hash.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'hash.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' hash.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'hash.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-hash.sh.gBKp + rm -rf /tmp/32-bit/coreutils-8.24/gt-hash.sh.gBKp + exit 77 SKIP tests/rm/hash.sh (exit status: 77) SKIP: tests/rm/i-never =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-i-never.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-i-never.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-i-never.sh.hVB9 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-i-never.sh.hVB9 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-i-never.sh.hVB9 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-i= -never.sh.hVB9' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-i-never.sh.hVB9 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-i-never.sh.hVB9 ++ cd /tmp/32-bit/coreutils-8.24/gt-i-never.sh.hVB9 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'i-never.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'i-never.sh: skipped test: must be run as non-root' i-never.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'i-never.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-i-never.sh.hVB9 + rm -rf /tmp/32-bit/coreutils-8.24/gt-i-never.sh.hVB9 + exit 77 SKIP tests/rm/i-never.sh (exit status: 77) SKIP: tests/rm/ignorable =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-ignorable.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-ignorable.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-ignorable.sh.Ftw5 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-ignorable.sh.Ftw5 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-ignorable.sh.Ftw5 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-i= gnorable.sh.Ftw5' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-ignorable.sh.Ftw5 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-ignorable.sh.Ftw5 ++ cd /tmp/32-bit/coreutils-8.24/gt-ignorable.sh.Ftw5 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'ignorable.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'ignorable.sh: skipped test: must be run as non-root' ignorable.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'ignorable.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-ignorable.sh.Ftw5 + rm -rf /tmp/32-bit/coreutils-8.24/gt-ignorable.sh.Ftw5 + exit 77 SKIP tests/rm/ignorable.sh (exit status: 77) SKIP: tests/rm/inaccessible =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-inaccessible.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-inaccessible.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-inaccessible.sh.mppc +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-inaccessible.sh.mppc ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-inaccessible.sh.mppc ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-i= naccessible.sh.mppc' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-inaccessible.sh.mppc +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-inaccessible.sh.mppc ++ cd /tmp/32-bit/coreutils-8.24/gt-inaccessible.sh.mppc ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_openat_support_ + test -z /tmp/32-bit/coreutils-8.24/lib/config.h + _skip=3Dyes + grep '^#define HAVE_OPENAT' /tmp/32-bit/coreutils-8.24/lib/config.h + _skip=3Dno + test -d /proc/self/fd + _skip=3Dno + test no =3D yes + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'inaccessible.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'inaccessible.sh: skipped test: must be run as non-root' inaccessible.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'inaccessible.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-inaccessible.sh.mppc + rm -rf /tmp/32-bit/coreutils-8.24/gt-inaccessible.sh.mppc + exit 77 SKIP tests/rm/inaccessible.sh (exit status: 77) SKIP: tests/rm/r-root =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-r-root.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-r-root.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-r-root.sh.WLn5 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-r-root.sh.WLn5 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-r-root.sh.WLn5 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-r= -root.sh.WLn5' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-r-root.sh.WLn5 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-r-root.sh.WLn5 ++ cd /tmp/32-bit/coreutils-8.24/gt-r-root.sh.WLn5 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'r-root.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'r-root.sh: skipped test: must be run as non-root' r-root.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'r-root.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-r-root.sh.WLn5 + rm -rf /tmp/32-bit/coreutils-8.24/gt-r-root.sh.WLn5 + exit 77 SKIP tests/rm/r-root.sh (exit status: 77) SKIP: tests/rm/rm1 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-rm1.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-rm1.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-rm1.sh.xKzb +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-rm1.sh.xKzb ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-rm1.sh.xKzb ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-r= m1.sh.xKzb' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-rm1.sh.xKzb +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-rm1.sh.xKzb ++ cd /tmp/32-bit/coreutils-8.24/gt-rm1.sh.xKzb ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'rm1.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'rm1.sh: skipped test: must be run as non-root' rm1.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'rm1.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-rm1.sh.xKzb + rm -rf /tmp/32-bit/coreutils-8.24/gt-rm1.sh.xKzb + exit 77 SKIP tests/rm/rm1.sh (exit status: 77) SKIP: tests/rm/rm2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-rm2.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-rm2.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-rm2.sh.Y025 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-rm2.sh.Y025 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-rm2.sh.Y025 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-r= m2.sh.Y025' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-rm2.sh.Y025 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-rm2.sh.Y025 ++ cd /tmp/32-bit/coreutils-8.24/gt-rm2.sh.Y025 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'rm2.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'rm2.sh: skipped test: must be run as non-root' rm2.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'rm2.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-rm2.sh.Y025 + rm -rf /tmp/32-bit/coreutils-8.24/gt-rm2.sh.Y025 + exit 77 SKIP tests/rm/rm2.sh (exit status: 77) SKIP: tests/rm/rm3 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-rm3.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-rm3.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-rm3.sh.z3MK +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-rm3.sh.z3MK ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-rm3.sh.z3MK ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-r= m3.sh.z3MK' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-rm3.sh.z3MK +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-rm3.sh.z3MK ++ cd /tmp/32-bit/coreutils-8.24/gt-rm3.sh.z3MK ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'rm3.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'rm3.sh: skipped test: must be run as non-root' rm3.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'rm3.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-rm3.sh.z3MK + rm -rf /tmp/32-bit/coreutils-8.24/gt-rm3.sh.z3MK + exit 77 SKIP tests/rm/rm3.sh (exit status: 77) SKIP: tests/rm/rm4 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-rm4.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-rm4.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-rm4.sh.ezqo +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-rm4.sh.ezqo ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-rm4.sh.ezqo ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-r= m4.sh.ezqo' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-rm4.sh.ezqo +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-rm4.sh.ezqo ++ cd /tmp/32-bit/coreutils-8.24/gt-rm4.sh.ezqo ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'rm4.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'rm4.sh: skipped test: must be run as non-root' rm4.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'rm4.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-rm4.sh.ezqo + rm -rf /tmp/32-bit/coreutils-8.24/gt-rm4.sh.ezqo + exit 77 SKIP tests/rm/rm4.sh (exit status: 77) SKIP: tests/rm/rm5 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-rm5.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-rm5.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-rm5.sh.vzQw +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-rm5.sh.vzQw ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-rm5.sh.vzQw ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-r= m5.sh.vzQw' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-rm5.sh.vzQw +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-rm5.sh.vzQw ++ cd /tmp/32-bit/coreutils-8.24/gt-rm5.sh.vzQw ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'rm5.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'rm5.sh: skipped test: must be run as non-root' rm5.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'rm5.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-rm5.sh.vzQw + rm -rf /tmp/32-bit/coreutils-8.24/gt-rm5.sh.vzQw + exit 77 SKIP tests/rm/rm5.sh (exit status: 77) SKIP: tests/rm/unread2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-unread2.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-unread2.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-unread2.sh.n69e +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-unread2.sh.n69e ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-unread2.sh.n69e ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-u= nread2.sh.n69e' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-unread2.sh.n69e +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-unread2.sh.n69e ++ cd /tmp/32-bit/coreutils-8.24/gt-unread2.sh.n69e ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'unread2.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'unread2.sh: skipped test: must be run as non-root' unread2.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'unread2.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-unread2.sh.n69e + rm -rf /tmp/32-bit/coreutils-8.24/gt-unread2.sh.n69e + exit 77 SKIP tests/rm/unread2.sh (exit status: 77) SKIP: tests/rm/unread3 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-unread3.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-unread3.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-unread3.sh.iM9I +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-unread3.sh.iM9I ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-unread3.sh.iM9I ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-u= nread3.sh.iM9I' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-unread3.sh.iM9I +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-unread3.sh.iM9I ++ cd /tmp/32-bit/coreutils-8.24/gt-unread3.sh.iM9I ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'unread3.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'unread3.sh: skipped test: must be run as non-root' unread3.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'unread3.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-unread3.sh.iM9I + rm -rf /tmp/32-bit/coreutils-8.24/gt-unread3.sh.iM9I + exit 77 SKIP tests/rm/unread3.sh (exit status: 77) SKIP: tests/rm/many-dir-entries-vs-OOM =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-many-dir-entries-vs-OOM.sh.XXX= X +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-many-dir-entries-vs-OOM.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh.i5dl +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh.i5dl= ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh.i5d= l ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-m= any-dir-entries-vs-OOM.sh.i5dl' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh.i5dl +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh.i= 5dl ++ cd /tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh.i5dl ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm du chmod + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + for i in '$*' + env chmod --version chmod (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_ulimit_v_ + local ulimit_works=3Dyes + local vm + case $(printenv LD_PRELOAD) in ++ printenv LD_PRELOAD + vm=3D10000 + test yes =3D no + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'many-dir-entries-vs-OOM.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'many-dir-entries-vs-OOM.sh: skipped test: expensive: dis= abled 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' many-dir-entries-vs-OOM.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'many-dir-entries-vs-OOM.sh: skipped test: expensive: dis= abled 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh= =2Ei5dl + rm -rf /tmp/32-bit/coreutils-8.24/gt-many-dir-entries-vs-OOM.sh.i5dl + exit 77 SKIP tests/rm/many-dir-entries-vs-OOM.sh (exit status: 77) SKIP: tests/chgrp/default-no-deref =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-default-no-deref.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-default-no-deref.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.kNo6 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.kNo6 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.kNo6 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-d= efault-no-deref.sh.kNo6' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.kNo6 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.kNo6 ++ cd /tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.kNo6 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chgrp + test yes =3D yes + local i + for i in '$*' + env chgrp --version chgrp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_membership_in_two_groups_ + test 0 =3D 0 + groups=3D0 + case "$groups" in + skip_ '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=3D'\''users cdrom'\'' make check ' + warn_ 'default-no-deref.sh: skipped test: requires membership in two gr= oups 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=3D'\''users cdrom'\'' make check ' + case $IFS in + printf '%s\n' 'default-no-deref.sh: skipped test: requires membership i= n 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=3D'\''users cdrom'\'' make check ' default-no-deref.sh: skipped 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=3D'users cdrom' make check + test 9 =3D 2 + printf '%s\n' 'default-no-deref.sh: skipped test: requires membership i= n 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=3D'\''users cdrom'\'' make check ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.kNo6 + rm -rf /tmp/32-bit/coreutils-8.24/gt-default-no-deref.sh.kNo6 + exit 77 SKIP tests/chgrp/default-no-deref.sh (exit status: 77) SKIP: tests/chgrp/deref =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-deref.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-deref.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-deref.sh.rWrH +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-deref.sh.rWrH ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-deref.sh.rWrH ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-d= eref.sh.rWrH' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-deref.sh.rWrH +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-deref.sh.rWrH ++ cd /tmp/32-bit/coreutils-8.24/gt-deref.sh.rWrH ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chgrp + test yes =3D yes + local i + for i in '$*' + env chgrp --version chgrp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_membership_in_two_groups_ + test 0 =3D 0 + groups=3D0 + case "$groups" in + skip_ '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=3D'\''users cdrom'\'' make check ' + warn_ 'deref.sh: skipped 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=3D'\''users cdrom'\'' make check ' + case $IFS in + printf '%s\n' 'deref.sh: skipped test: requires membership in two group= s 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=3D'\''users cdrom'\'' make check ' deref.sh: skipped 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=3D'users cdrom' make check + test 9 =3D 2 + printf '%s\n' 'deref.sh: skipped test: requires membership in two group= s 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=3D'\''users cdrom'\'' make check ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-deref.sh.rWrH + rm -rf /tmp/32-bit/coreutils-8.24/gt-deref.sh.rWrH + exit 77 SKIP tests/chgrp/deref.sh (exit status: 77) SKIP: tests/chgrp/no-x =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-no-x.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-no-x.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-no-x.sh.RnFg +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-no-x.sh.RnFg ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-no-x.sh.RnFg ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-n= o-x.sh.RnFg' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-no-x.sh.RnFg +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-no-x.sh.RnFg ++ cd /tmp/32-bit/coreutils-8.24/gt-no-x.sh.RnFg ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chgrp + test yes =3D yes + local i + for i in '$*' + env chgrp --version chgrp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_membership_in_two_groups_ + test 0 =3D 0 + groups=3D0 + case "$groups" in + skip_ '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=3D'\''users cdrom'\'' make check ' + warn_ 'no-x.sh: skipped 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=3D'\''users cdrom'\'' make check ' + case $IFS in + printf '%s\n' 'no-x.sh: skipped 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=3D'\''users cdrom'\'' make check ' no-x.sh: skipped 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=3D'users cdrom' make check + test 9 =3D 2 + printf '%s\n' 'no-x.sh: skipped 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=3D'\''users cdrom'\'' make check ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-no-x.sh.RnFg + rm -rf /tmp/32-bit/coreutils-8.24/gt-no-x.sh.RnFg + exit 77 SKIP tests/chgrp/no-x.sh (exit status: 77) SKIP: tests/chgrp/posix-H =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-posix-H.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-posix-H.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-posix-H.sh.VQuw +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-posix-H.sh.VQuw ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-posix-H.sh.VQuw ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-p= osix-H.sh.VQuw' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-posix-H.sh.VQuw +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-posix-H.sh.VQuw ++ cd /tmp/32-bit/coreutils-8.24/gt-posix-H.sh.VQuw ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chgrp + test yes =3D yes + local i + for i in '$*' + env chgrp --version chgrp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_membership_in_two_groups_ + test 0 =3D 0 + groups=3D0 + case "$groups" in + skip_ '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=3D'\''users cdrom'\'' make check ' + warn_ 'posix-H.sh: skipped 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=3D'\''users cdrom'\'' make check ' + case $IFS in + printf '%s\n' 'posix-H.sh: skipped test: requires membership in two gro= ups 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=3D'\''users cdrom'\'' make check ' posix-H.sh: skipped 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=3D'users cdrom' make check + test 9 =3D 2 + printf '%s\n' 'posix-H.sh: skipped test: requires membership in two gro= ups 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=3D'\''users cdrom'\'' make check ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-posix-H.sh.VQuw + rm -rf /tmp/32-bit/coreutils-8.24/gt-posix-H.sh.VQuw + exit 77 SKIP tests/chgrp/posix-H.sh (exit status: 77) SKIP: tests/chgrp/recurse =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-recurse.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-recurse.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-recurse.sh.NojM +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-recurse.sh.NojM ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-recurse.sh.NojM ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-r= ecurse.sh.NojM' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-recurse.sh.NojM +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-recurse.sh.NojM ++ cd /tmp/32-bit/coreutils-8.24/gt-recurse.sh.NojM ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chgrp + test yes =3D yes + local i + for i in '$*' + env chgrp --version chgrp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_membership_in_two_groups_ + test 0 =3D 0 + groups=3D0 + case "$groups" in + skip_ '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=3D'\''users cdrom'\'' make check ' + warn_ 'recurse.sh: skipped 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=3D'\''users cdrom'\'' make check ' + case $IFS in + printf '%s\n' 'recurse.sh: skipped test: requires membership in two gro= ups 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=3D'\''users cdrom'\'' make check ' recurse.sh: skipped 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=3D'users cdrom' make check + test 9 =3D 2 + printf '%s\n' 'recurse.sh: skipped test: requires membership in two gro= ups 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=3D'\''users cdrom'\'' make check ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-recurse.sh.NojM + rm -rf /tmp/32-bit/coreutils-8.24/gt-recurse.sh.NojM + exit 77 SKIP tests/chgrp/recurse.sh (exit status: 77) SKIP: tests/misc/seq-long-double =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-seq-long-double.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-seq-long-double.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.xiFG +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.xiFG ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.xiFG ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-s= eq-long-double.sh.xiFG' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.xiFG +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.xiFG ++ cd /tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.xiFG ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ seq + test yes =3D yes + local i + for i in '$*' + env seq --version seq (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + getlimits_ ++ getlimits + eval CHAR_MAX=3D127 CHAR_OFLOW=3D128 CHAR_MIN=3D-128 CHAR_UFLOW=3D-129 = SCHAR_MAX=3D127 SCHAR_OFLOW=3D128 SCHAR_MIN=3D-128 SCHAR_UFLOW=3D-129 UCH= AR_MAX=3D255 UCHAR_OFLOW=3D256 SHRT_MAX=3D32767 SHRT_OFLOW=3D32768 SHRT_M= IN=3D-32768 SHRT_UFLOW=3D-32769 INT_MAX=3D2147483647 INT_OFLOW=3D21474836= 48 INT_MIN=3D-2147483648 INT_UFLOW=3D-2147483649 UINT_MAX=3D4294967295 UI= NT_OFLOW=3D4294967296 LONG_MAX=3D2147483647 LONG_OFLOW=3D2147483648 LONG_= MIN=3D-2147483648 LONG_UFLOW=3D-2147483649 ULONG_MAX=3D4294967295 ULONG_O= FLOW=3D4294967296 SIZE_MAX=3D4294967295 SIZE_OFLOW=3D4294967296 SSIZE_MAX= =3D2147483647 SSIZE_OFLOW=3D2147483648 SSIZE_MIN=3D-2147483648 SSIZE_UFLO= W=3D-2147483649 TIME_T_MAX=3D2147483647 TIME_T_OFLOW=3D2147483648 TIME_T_= MIN=3D-2147483648 TIME_T_UFLOW=3D-2147483649 UID_T_MAX=3D2147483647 UID_T= _OFLOW=3D2147483648 GID_T_MAX=3D2147483647 GID_T_OFLOW=3D2147483648 PID_T= _MAX=3D2147483647 PID_T_OFLOW=3D2147483648 PID_T_MIN=3D-2147483648 PID_T_= UFLOW=3D-2147483649 OFF_T_MAX=3D9223372036854775807 OFF_T_OFLOW=3D9223372= 036854775808 OFF_T_MIN=3D-9223372036854775808 OFF_T_UFLOW=3D-922337203685= 4775809 INTMAX_MAX=3D9223372036854775807 INTMAX_OFLOW=3D92233720368547758= 08 INTMAX_MIN=3D-9223372036854775808 INTMAX_UFLOW=3D-9223372036854775809 = UINTMAX_MAX=3D18446744073709551615 UINTMAX_OFLOW=3D18446744073709551616 F= LT_MIN=3D1.1754944e-38 FLT_MAX=3D3.4028235e+38 DBL_MIN=3D2.22507385850720= 14e-308 DBL_MAX=3D1.7976931348623157e+308 LDBL_MIN=3D3.362103143112093506= 3e-4932 LDBL_MAX=3D1.189731495357231765e+4932 ++ CHAR_MAX=3D127 ++ CHAR_OFLOW=3D128 ++ CHAR_MIN=3D-128 ++ CHAR_UFLOW=3D-129 ++ SCHAR_MAX=3D127 ++ SCHAR_OFLOW=3D128 ++ SCHAR_MIN=3D-128 ++ SCHAR_UFLOW=3D-129 ++ UCHAR_MAX=3D255 ++ UCHAR_OFLOW=3D256 ++ SHRT_MAX=3D32767 ++ SHRT_OFLOW=3D32768 ++ SHRT_MIN=3D-32768 ++ SHRT_UFLOW=3D-32769 ++ INT_MAX=3D2147483647 ++ INT_OFLOW=3D2147483648 ++ INT_MIN=3D-2147483648 ++ INT_UFLOW=3D-2147483649 ++ UINT_MAX=3D4294967295 ++ UINT_OFLOW=3D4294967296 ++ LONG_MAX=3D2147483647 ++ LONG_OFLOW=3D2147483648 ++ LONG_MIN=3D-2147483648 ++ LONG_UFLOW=3D-2147483649 ++ ULONG_MAX=3D4294967295 ++ ULONG_OFLOW=3D4294967296 ++ SIZE_MAX=3D4294967295 ++ SIZE_OFLOW=3D4294967296 ++ SSIZE_MAX=3D2147483647 ++ SSIZE_OFLOW=3D2147483648 ++ SSIZE_MIN=3D-2147483648 ++ SSIZE_UFLOW=3D-2147483649 ++ TIME_T_MAX=3D2147483647 ++ TIME_T_OFLOW=3D2147483648 ++ TIME_T_MIN=3D-2147483648 ++ TIME_T_UFLOW=3D-2147483649 ++ UID_T_MAX=3D2147483647 ++ UID_T_OFLOW=3D2147483648 ++ GID_T_MAX=3D2147483647 ++ GID_T_OFLOW=3D2147483648 ++ PID_T_MAX=3D2147483647 ++ PID_T_OFLOW=3D2147483648 ++ PID_T_MIN=3D-2147483648 ++ PID_T_UFLOW=3D-2147483649 ++ OFF_T_MAX=3D9223372036854775807 ++ OFF_T_OFLOW=3D9223372036854775808 ++ OFF_T_MIN=3D-9223372036854775808 ++ OFF_T_UFLOW=3D-9223372036854775809 ++ INTMAX_MAX=3D9223372036854775807 ++ INTMAX_OFLOW=3D9223372036854775808 ++ INTMAX_MIN=3D-9223372036854775808 ++ INTMAX_UFLOW=3D-9223372036854775809 ++ UINTMAX_MAX=3D18446744073709551615 ++ UINTMAX_OFLOW=3D18446744073709551616 ++ FLT_MIN=3D1.1754944e-38 ++ FLT_MAX=3D3.4028235e+38 ++ DBL_MIN=3D2.2250738585072014e-308 ++ DBL_MAX=3D1.7976931348623157e+308 ++ LDBL_MIN=3D3.3621031431120935063e-4932 ++ LDBL_MAX=3D1.189731495357231765e+4932 + test 2147483647 + cat + gcc -std=3Dgnu99 -c long.c long.c:1:22: fatal error: features.h: No such file or directory #include <features.h> ^ compilation terminated. + skip_ 'this test runs only on systems with glibc and long double !=3D d= ouble' + warn_ 'seq-long-double.sh: skipped test: this test runs only on systems= with glibc and long double !=3D double' + case $IFS in + printf '%s\n' 'seq-long-double.sh: skipped test: this test runs only on= systems with glibc and long double !=3D double' seq-long-double.sh: skipped test: this test runs only on systems with gli= bc and long double !=3D double + test 9 =3D 2 + printf '%s\n' 'seq-long-double.sh: skipped test: this test runs only on= systems with glibc and long double !=3D double' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.xiFG + rm -rf /tmp/32-bit/coreutils-8.24/gt-seq-long-double.sh.xiFG + exit 77 SKIP tests/misc/seq-long-double.sh (exit status: 77) SKIP: tests/tail-2/tail-n0f =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-tail-n0f.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-tail-n0f.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.y7og +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.y7og ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.y7og ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:39 /tmp/32-bit/coreutils-8.24/gt-t= ail-n0f.sh.y7og' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.y7og +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.y7og ++ cd /tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.y7og ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_proc_pid_status_ + local pid=3D8454 + sleep .5 + sleep 2 + grep '^State:[ ]*[S]' /proc/8454/status + skip_ '/proc/8454/status: missing or '\''different'\''' + warn_ 'tail-n0f.sh: skipped test: /proc/8454/status: missing or '\''dif= ferent'\''' + case $IFS in + printf '%s\n' 'tail-n0f.sh: skipped test: /proc/8454/status: missing or= '\''different'\''' tail-n0f.sh: skipped test: /proc/8454/status: missing or 'different' + test 9 =3D 2 + printf '%s\n' 'tail-n0f.sh: skipped test: /proc/8454/status: missing or= '\''different'\''' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.y7og + rm -rf /tmp/32-bit/coreutils-8.24/gt-tail-n0f.sh.y7og + exit 77 SKIP tests/tail-2/tail-n0f.sh (exit status: 77) SKIP: tests/misc/arch =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-arch.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-arch.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-arch.sh.P3FJ +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-arch.sh.P3FJ ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-arch.sh.P3FJ ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-a= rch.sh.P3FJ' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-arch.sh.P3FJ +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-arch.sh.P3FJ ++ cd /tmp/32-bit/coreutils-8.24/gt-arch.sh.P3FJ ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ arch + test yes =3D yes + local i + for i in '$*' + env arch --version + require_built_ arch + skip_=3Dno + for i in '"$@"' + case " $built_programs " in + echo 'arch: not built' arch: not built + skip_=3Dyes + test yes =3D yes + skip_ 'required program(s) not built' + warn_ 'arch.sh: skipped test: required program(s) not built' + case $IFS in + printf '%s\n' 'arch.sh: skipped test: required program(s) not built' arch.sh: skipped test: required program(s) not built + test 9 =3D 2 + printf '%s\n' 'arch.sh: skipped test: required program(s) not built' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-arch.sh.P3FJ + rm -rf /tmp/32-bit/coreutils-8.24/gt-arch.sh.P3FJ + exit 77 SKIP tests/misc/arch.sh (exit status: 77) SKIP: tests/misc/coreutils =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-coreutils.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-coreutils.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-coreutils.sh.JlYj +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-coreutils.sh.JlYj ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-coreutils.sh.JlYj ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-c= oreutils.sh.JlYj' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-coreutils.sh.JlYj +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-coreutils.sh.JlYj ++ cd /tmp/32-bit/coreutils-8.24/gt-coreutils.sh.JlYj ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ coreutils + test yes =3D yes + local i + for i in '$*' + env coreutils --version env: coreutils: No such file or directory + test -s /tmp/32-bit/coreutils-8.24/src/coreutils.h + skip_ 'multicall binary is disabled' + warn_ 'coreutils.sh: skipped test: multicall binary is disabled' + case $IFS in + printf '%s\n' 'coreutils.sh: skipped test: multicall binary is disabled= ' coreutils.sh: skipped test: multicall binary is disabled + test 9 =3D 2 + printf '%s\n' 'coreutils.sh: skipped test: multicall binary is disabled= ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-coreutils.sh.JlYj + rm -rf /tmp/32-bit/coreutils-8.24/gt-coreutils.sh.JlYj + exit 77 SKIP tests/misc/coreutils.sh (exit status: 77) SKIP: tests/misc/wc-parallel =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-wc-parallel.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-wc-parallel.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.ysbV +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.ysbV ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.ysbV ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-w= c-parallel.sh.ysbV' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.ysbV +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.ysbV ++ cd /tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.ysbV ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ wc + test yes =3D yes + local i + for i in '$*' + env wc --version wc (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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 and David MacKenzie. + xargs -P2 + skip_ 'xargs -P is required' + warn_ 'wc-parallel.sh: skipped test: xargs -P is required' + case $IFS in + printf '%s\n' 'wc-parallel.sh: skipped test: xargs -P is required' wc-parallel.sh: skipped test: xargs -P is required + test 9 =3D 2 + printf '%s\n' 'wc-parallel.sh: skipped test: xargs -P is required' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.ysbV + rm -rf /tmp/32-bit/coreutils-8.24/gt-wc-parallel.sh.ysbV + exit 77 SKIP tests/misc/wc-parallel.sh (exit status: 77) SKIP: tests/misc/cat-proc =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-cat-proc.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-cat-proc.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.6gj2 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.6gj2 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.6gj2 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-c= at-proc.sh.6gj2' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.6gj2 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.6gj2 ++ cd /tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.6gj2 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cat + test yes =3D yes + local i + for i in '$*' + env cat --version cat (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund and Richard M. Stallman. + f=3D/proc/cpuinfo + test -f /proc/cpuinfo + skip_ 'no /proc/cpuinfo' + warn_ 'cat-proc.sh: skipped test: no /proc/cpuinfo' + case $IFS in + printf '%s\n' 'cat-proc.sh: skipped test: no /proc/cpuinfo' cat-proc.sh: skipped test: no /proc/cpuinfo + test 9 =3D 2 + printf '%s\n' 'cat-proc.sh: skipped test: no /proc/cpuinfo' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.6gj2 + rm -rf /tmp/32-bit/coreutils-8.24/gt-cat-proc.sh.6gj2 + exit 77 SKIP tests/misc/cat-proc.sh (exit status: 77) SKIP: tests/misc/head-write-error =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-head-write-error.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-head-write-error.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.MwYg +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.MwYg ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.MwYg ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-h= ead-write-error.sh.MwYg' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.MwYg +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.MwYg ++ cd /tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.MwYg ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ head + test yes =3D yes + local i + for i in '$*' + env head --version head (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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 -w /dev/full + skip_ '/dev/full is required' + warn_ 'head-write-error.sh: skipped test: /dev/full is required' + case $IFS in + printf '%s\n' 'head-write-error.sh: skipped test: /dev/full is required= ' head-write-error.sh: skipped test: /dev/full is required + test 9 =3D 2 + printf '%s\n' 'head-write-error.sh: skipped test: /dev/full is required= ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.MwYg + rm -rf /tmp/32-bit/coreutils-8.24/gt-head-write-error.sh.MwYg + exit 77 SKIP tests/misc/head-write-error.sh (exit status: 77) SKIP: tests/misc/md5sum-parallel =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-md5sum-parallel.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-md5sum-parallel.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.DDqB +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.DDqB ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.DDqB ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-m= d5sum-parallel.sh.DDqB' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.DDqB +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.DDqB ++ cd /tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.DDqB ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ md5sum + test yes =3D yes + local i + for i in '$*' + env md5sum --version md5sum (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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, Scott Miller, and David Madore. + xargs -P2 + skip_ 'xargs -P is required' + warn_ 'md5sum-parallel.sh: skipped test: xargs -P is required' + case $IFS in + printf '%s\n' 'md5sum-parallel.sh: skipped test: xargs -P is required' md5sum-parallel.sh: skipped test: xargs -P is required + test 9 =3D 2 + printf '%s\n' 'md5sum-parallel.sh: skipped test: xargs -P is required' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.DDqB + rm -rf /tmp/32-bit/coreutils-8.24/gt-md5sum-parallel.sh.DDqB + exit 77 SKIP tests/misc/md5sum-parallel.sh (exit status: 77) SKIP: tests/misc/pathchk1 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-pathchk1.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-pathchk1.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-pathchk1.sh.Rk5X +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-pathchk1.sh.Rk5X ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-pathchk1.sh.Rk5X ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-p= athchk1.sh.Rk5X' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-pathchk1.sh.Rk5X +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-pathchk1.sh.Rk5X ++ cd /tmp/32-bit/coreutils-8.24/gt-pathchk1.sh.Rk5X ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ pathchk + test yes =3D yes + local i + for i in '$*' + env pathchk --version pathchk (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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 Eggert, David MacKenzie, and Jim Meyering. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'pathchk1.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'pathchk1.sh: skipped test: must be run as non-root' pathchk1.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'pathchk1.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-pathchk1.sh.Rk5X + rm -rf /tmp/32-bit/coreutils-8.24/gt-pathchk1.sh.Rk5X + exit 77 SKIP tests/misc/pathchk1.sh (exit status: 77) SKIP: tests/misc/shred-remove =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-shred-remove.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-shred-remove.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-shred-remove.sh.wknb +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-shred-remove.sh.wknb ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-shred-remove.sh.wknb ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-s= hred-remove.sh.wknb' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-shred-remove.sh.wknb +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-shred-remove.sh.wknb ++ cd /tmp/32-bit/coreutils-8.24/gt-shred-remove.sh.wknb ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ shred + test yes =3D yes + local i + for i in '$*' + env shred --version shred (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Colin Plumb. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'shred-remove.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'shred-remove.sh: skipped test: must be run as non-root' shred-remove.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'shred-remove.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-shred-remove.sh.wknb + rm -rf /tmp/32-bit/coreutils-8.24/gt-shred-remove.sh.wknb + exit 77 SKIP tests/misc/shred-remove.sh (exit status: 77) SKIP: tests/misc/shuf-reservoir =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-shuf-reservoir.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-shuf-reservoir.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.d6BH +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.d6BH ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.d6BH ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-s= huf-reservoir.sh.d6BH' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.d6BH +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.d6BH ++ cd /tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.d6BH ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ shuf + test yes =3D yes + local i + for i in '$*' + env shuf --version shuf (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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 Eggert. + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'shuf-reservoir.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'shuf-reservoir.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' shuf-reservoir.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'shuf-reservoir.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.d6BH + rm -rf /tmp/32-bit/coreutils-8.24/gt-shuf-reservoir.sh.d6BH + exit 77 SKIP tests/misc/shuf-reservoir.sh (exit status: 77) SKIP: tests/misc/sort-benchmark-random =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-benchmark-random.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-benchmark-random.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.w4qe +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.w4qe ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.w4qe ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-s= ort-benchmark-random.sh.w4qe' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.w4qe +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.w4q= e ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.w4qe ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 'sort-benchmark-random.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 'sort-benchmark-random.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' sort-benchmark-random.sh: skipped test: very expensive: disabled by defau= lt 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 'sort-benchmark-random.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.w= 4qe + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-benchmark-random.sh.w4qe + exit 77 SKIP tests/misc/sort-benchmark-random.sh (exit status: 77) SKIP: tests/misc/sort-compress-hang =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-compress-hang.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-compress-hang.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.I9jO +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.I9jO ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.I9jO ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-s= ort-compress-hang.sh.I9jO' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.I9jO +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.I9jO ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.I9jO ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 'sort-compress-hang.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 'sort-compress-hang.sh: skipped test: very expensive: dis= abled 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' sort-compress-hang.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 'sort-compress-hang.sh: skipped test: very expensive: dis= abled 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.I9jO= + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-compress-hang.sh.I9jO + exit 77 SKIP tests/misc/sort-compress-hang.sh (exit status: 77) SKIP: tests/misc/sort-compress-proc =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-compress-proc.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-compress-proc.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.T2t0 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.T2t0 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.T2t0 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-s= ort-compress-proc.sh.T2t0' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.T2t0 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.T2t0 ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.T2t0 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'sort-compress-proc.sh: skipped test: expensive: disabled by defa= ult 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'sort-compress-proc.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' sort-compress-proc.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'sort-compress-proc.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.T2t0= + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-compress-proc.sh.T2t0 + exit 77 SKIP tests/misc/sort-compress-proc.sh (exit status: 77) SKIP: tests/misc/sort-month =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-month.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-month.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-month.sh.M8sL +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-month.sh.M8sL ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-month.sh.M8sL ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-s= ort-month.sh.M8sL' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-month.sh.M8sL +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-month.sh.M8sL ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-month.sh.M8sL ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + locale --version + skip_ 'The locale utility is not present' + warn_ 'sort-month.sh: skipped test: The locale utility is not present' + case $IFS in + printf '%s\n' 'sort-month.sh: skipped test: The locale utility is not p= resent' sort-month.sh: skipped test: The locale utility is not present + test 9 =3D 2 + printf '%s\n' 'sort-month.sh: skipped test: The locale utility is not p= resent' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-month.sh.M8sL + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-month.sh.M8sL + exit 77 SKIP tests/misc/sort-month.sh (exit status: 77) SKIP: tests/misc/sort-exit-early =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-exit-early.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-exit-early.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-exit-early.sh.vsXj +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-exit-early.sh.vsXj ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-exit-early.sh.vsXj ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-s= ort-exit-early.sh.vsXj' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-exit-early.sh.vsXj +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-exit-early.sh.vsXj ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-exit-early.sh.vsXj ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'sort-exit-early.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'sort-exit-early.sh: skipped test: must be run as non-roo= t' sort-exit-early.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'sort-exit-early.sh: skipped test: must be run as non-roo= t' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-exit-early.sh.vsXj + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-exit-early.sh.vsXj + exit 77 SKIP tests/misc/sort-exit-early.sh (exit status: 77) SKIP: tests/misc/sort-spinlock-abuse =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-spinlock-abuse.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-spinlock-abuse.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.iQrs +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.iQrs ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.iQrs ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-s= ort-spinlock-abuse.sh.iQrs' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.iQrs +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.iQrs ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.iQrs ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 'sort-spinlock-abuse.sh: skipped test: very expensive: disabled b= y 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 'sort-spinlock-abuse.sh: skipped test: very expensive: di= sabled 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' sort-spinlock-abuse.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 'sort-spinlock-abuse.sh: skipped test: very expensive: di= sabled 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.iQr= s + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-spinlock-abuse.sh.iQrs + exit 77 SKIP tests/misc/sort-spinlock-abuse.sh (exit status: 77) SKIP: tests/misc/sort-stale-thread-mem =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-stale-thread-mem.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-stale-thread-mem.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.qcY7 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.qcY7 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.qcY7 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-s= ort-stale-thread-mem.sh.qcY7' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.qcY7 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.qcY= 7 ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.qcY7 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 'sort-stale-thread-mem.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 'sort-stale-thread-mem.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' sort-stale-thread-mem.sh: skipped test: very expensive: disabled by defau= lt 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 'sort-stale-thread-mem.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.q= cY7 + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-stale-thread-mem.sh.qcY7 + exit 77 SKIP tests/misc/sort-stale-thread-mem.sh (exit status: 77) SKIP: tests/misc/sort-u-FMR =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sort-u-FMR.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sort-u-FMR.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.Vl2y +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.Vl2y ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.Vl2y ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-s= ort-u-FMR.sh.Vl2y' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.Vl2y +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.Vl2y ++ cd /tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.Vl2y ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ sort + test yes =3D yes + local i + for i in '$*' + env sort --version sort (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_valgrind_ + valgrind --error-exitcode=3D1 true + skip_ 'requires a working valgrind' + warn_ 'sort-u-FMR.sh: skipped test: requires a working valgrind' + case $IFS in + printf '%s\n' 'sort-u-FMR.sh: skipped test: requires a working valgrind= ' sort-u-FMR.sh: skipped test: requires a working valgrind + test 9 =3D 2 + printf '%s\n' 'sort-u-FMR.sh: skipped test: requires a working valgrind= ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.Vl2y + rm -rf /tmp/32-bit/coreutils-8.24/gt-sort-u-FMR.sh.Vl2y + exit 77 SKIP tests/misc/sort-u-FMR.sh (exit status: 77) SKIP: tests/split/filter =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-filter.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-filter.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-filter.sh.zV4W +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-filter.sh.zV4W ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-filter.sh.zV4W ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-f= ilter.sh.zV4W' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-filter.sh.zV4W +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-filter.sh.zV4W ++ cd /tmp/32-bit/coreutils-8.24/gt-filter.sh.zV4W ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ split + test yes =3D yes + local i + for i in '$*' + env split --version split (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund and Richard M. Stallman. + xz --version =2E/tests/split/filter.sh: line 21: xz: command not found + skip_ 'xz (better than gzip/bzip2) required' + warn_ 'filter.sh: skipped test: xz (better than gzip/bzip2) required' + case $IFS in + printf '%s\n' 'filter.sh: skipped test: xz (better than gzip/bzip2) req= uired' filter.sh: skipped test: xz (better than gzip/bzip2) required + test 9 =3D 2 + printf '%s\n' 'filter.sh: skipped test: xz (better than gzip/bzip2) req= uired' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-filter.sh.zV4W + rm -rf /tmp/32-bit/coreutils-8.24/gt-filter.sh.zV4W + exit 77 SKIP tests/split/filter.sh (exit status: 77) SKIP: tests/misc/stty-pairs =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-stty-pairs.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-stty-pairs.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.2RG5 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.2RG5 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.2RG5 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-s= tty-pairs.sh.2RG5' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.2RG5 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.2RG5 ++ cd /tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.2RG5 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ stty + test yes =3D yes + local i + for i in '$*' + env stty --version stty (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'stty-pairs.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'stty-pairs.sh: skipped test: expensive: disabled by defa= ult 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' stty-pairs.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'stty-pairs.sh: skipped test: expensive: disabled by defa= ult 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.2RG5 + rm -rf /tmp/32-bit/coreutils-8.24/gt-stty-pairs.sh.2RG5 + exit 77 SKIP tests/misc/stty-pairs.sh (exit status: 77) SKIP: tests/misc/tac-continue =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-tac-continue.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-tac-continue.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.dgH8 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.dgH8 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.dgH8 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-t= ac-continue.sh.dgH8' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.dgH8 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.dgH8 ++ cd /tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.dgH8 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tac + test yes =3D yes + local i + for i in '$*' + env tac --version tac (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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 x =3D x + skip_ 'FULL_PARTITION_TMPDIR not defined' + warn_ 'tac-continue.sh: skipped test: FULL_PARTITION_TMPDIR not defined= ' + case $IFS in + printf '%s\n' 'tac-continue.sh: skipped test: FULL_PARTITION_TMPDIR not= defined' tac-continue.sh: skipped test: FULL_PARTITION_TMPDIR not defined + test 9 =3D 2 + printf '%s\n' 'tac-continue.sh: skipped test: FULL_PARTITION_TMPDIR not= defined' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.dgH8 + rm -rf /tmp/32-bit/coreutils-8.24/gt-tac-continue.sh.dgH8 + exit 77 SKIP tests/misc/tac-continue.sh (exit status: 77) SKIP: tests/misc/timeout-group =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-timeout-group.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-timeout-group.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.F5Kv +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.F5Kv ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.F5Kv ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-t= imeout-group.sh.F5Kv' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.F5Kv +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.F5Kv ++ cd /tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.F5Kv ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ timeout + test yes =3D yes + local i + for i in '$*' + env timeout --version timeout (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by P'adraig Brady. + setsid true =2E/tests/misc/timeout-group.sh: line 31: setsid: command not found + skip_ 'setsid required to control groups' + warn_ 'timeout-group.sh: skipped test: setsid required to control group= s' + case $IFS in + printf '%s\n' 'timeout-group.sh: skipped test: setsid required to contr= ol groups' timeout-group.sh: skipped test: setsid required to control groups + test 9 =3D 2 + printf '%s\n' 'timeout-group.sh: skipped test: setsid required to contr= ol groups' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.F5Kv + rm -rf /tmp/32-bit/coreutils-8.24/gt-timeout-group.sh.F5Kv + exit 77 SKIP tests/misc/timeout-group.sh (exit status: 77) FAIL: tests/misc/timeout-parameters =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-timeout-parameters.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-timeout-parameters.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.l7hj +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.l7hj ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.l7hj ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-t= imeout-parameters.sh.l7hj' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.l7hj +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.l7hj ++ cd /tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.l7hj ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ timeout + test yes =3D yes + local i + for i in '$*' + env timeout --version timeout (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by P'adraig Brady. + getlimits_ ++ getlimits + eval CHAR_MAX=3D127 CHAR_OFLOW=3D128 CHAR_MIN=3D-128 CHAR_UFLOW=3D-129 = SCHAR_MAX=3D127 SCHAR_OFLOW=3D128 SCHAR_MIN=3D-128 SCHAR_UFLOW=3D-129 UCH= AR_MAX=3D255 UCHAR_OFLOW=3D256 SHRT_MAX=3D32767 SHRT_OFLOW=3D32768 SHRT_M= IN=3D-32768 SHRT_UFLOW=3D-32769 INT_MAX=3D2147483647 INT_OFLOW=3D21474836= 48 INT_MIN=3D-2147483648 INT_UFLOW=3D-2147483649 UINT_MAX=3D4294967295 UI= NT_OFLOW=3D4294967296 LONG_MAX=3D2147483647 LONG_OFLOW=3D2147483648 LONG_= MIN=3D-2147483648 LONG_UFLOW=3D-2147483649 ULONG_MAX=3D4294967295 ULONG_O= FLOW=3D4294967296 SIZE_MAX=3D4294967295 SIZE_OFLOW=3D4294967296 SSIZE_MAX= =3D2147483647 SSIZE_OFLOW=3D2147483648 SSIZE_MIN=3D-2147483648 SSIZE_UFLO= W=3D-2147483649 TIME_T_MAX=3D2147483647 TIME_T_OFLOW=3D2147483648 TIME_T_= MIN=3D-2147483648 TIME_T_UFLOW=3D-2147483649 UID_T_MAX=3D2147483647 UID_T= _OFLOW=3D2147483648 GID_T_MAX=3D2147483647 GID_T_OFLOW=3D2147483648 PID_T= _MAX=3D2147483647 PID_T_OFLOW=3D2147483648 PID_T_MIN=3D-2147483648 PID_T_= UFLOW=3D-2147483649 OFF_T_MAX=3D9223372036854775807 OFF_T_OFLOW=3D9223372= 036854775808 OFF_T_MIN=3D-9223372036854775808 OFF_T_UFLOW=3D-922337203685= 4775809 INTMAX_MAX=3D9223372036854775807 INTMAX_OFLOW=3D92233720368547758= 08 INTMAX_MIN=3D-9223372036854775808 INTMAX_UFLOW=3D-9223372036854775809 = UINTMAX_MAX=3D18446744073709551615 UINTMAX_OFLOW=3D18446744073709551616 F= LT_MIN=3D1.1754944e-38 FLT_MAX=3D3.4028235e+38 DBL_MIN=3D2.22507385850720= 14e-308 DBL_MAX=3D1.7976931348623157e+308 LDBL_MIN=3D3.362103143112093506= 3e-4932 LDBL_MAX=3D1.189731495357231765e+4932 ++ CHAR_MAX=3D127 ++ CHAR_OFLOW=3D128 ++ CHAR_MIN=3D-128 ++ CHAR_UFLOW=3D-129 ++ SCHAR_MAX=3D127 ++ SCHAR_OFLOW=3D128 ++ SCHAR_MIN=3D-128 ++ SCHAR_UFLOW=3D-129 ++ UCHAR_MAX=3D255 ++ UCHAR_OFLOW=3D256 ++ SHRT_MAX=3D32767 ++ SHRT_OFLOW=3D32768 ++ SHRT_MIN=3D-32768 ++ SHRT_UFLOW=3D-32769 ++ INT_MAX=3D2147483647 ++ INT_OFLOW=3D2147483648 ++ INT_MIN=3D-2147483648 ++ INT_UFLOW=3D-2147483649 ++ UINT_MAX=3D4294967295 ++ UINT_OFLOW=3D4294967296 ++ LONG_MAX=3D2147483647 ++ LONG_OFLOW=3D2147483648 ++ LONG_MIN=3D-2147483648 ++ LONG_UFLOW=3D-2147483649 ++ ULONG_MAX=3D4294967295 ++ ULONG_OFLOW=3D4294967296 ++ SIZE_MAX=3D4294967295 ++ SIZE_OFLOW=3D4294967296 ++ SSIZE_MAX=3D2147483647 ++ SSIZE_OFLOW=3D2147483648 ++ SSIZE_MIN=3D-2147483648 ++ SSIZE_UFLOW=3D-2147483649 ++ TIME_T_MAX=3D2147483647 ++ TIME_T_OFLOW=3D2147483648 ++ TIME_T_MIN=3D-2147483648 ++ TIME_T_UFLOW=3D-2147483649 ++ UID_T_MAX=3D2147483647 ++ UID_T_OFLOW=3D2147483648 ++ GID_T_MAX=3D2147483647 ++ GID_T_OFLOW=3D2147483648 ++ PID_T_MAX=3D2147483647 ++ PID_T_OFLOW=3D2147483648 ++ PID_T_MIN=3D-2147483648 ++ PID_T_UFLOW=3D-2147483649 ++ OFF_T_MAX=3D9223372036854775807 ++ OFF_T_OFLOW=3D9223372036854775808 ++ OFF_T_MIN=3D-9223372036854775808 ++ OFF_T_UFLOW=3D-9223372036854775809 ++ INTMAX_MAX=3D9223372036854775807 ++ INTMAX_OFLOW=3D9223372036854775808 ++ INTMAX_MIN=3D-9223372036854775808 ++ INTMAX_UFLOW=3D-9223372036854775809 ++ UINTMAX_MAX=3D18446744073709551615 ++ UINTMAX_OFLOW=3D18446744073709551616 ++ FLT_MIN=3D1.1754944e-38 ++ FLT_MAX=3D3.4028235e+38 ++ DBL_MIN=3D2.2250738585072014e-308 ++ DBL_MAX=3D1.7976931348623157e+308 ++ LDBL_MIN=3D3.3621031431120935063e-4932 ++ LDBL_MAX=3D1.189731495357231765e+4932 + test 2147483647 + timeout invalid sleep 0 timeout: invalid time interval 'invalid' Try 'timeout --help' for more information. + test 125 =3D 125 + timeout --kill-after=3Dinvalid 1 sleep 0 timeout: invalid time interval 'invalid' Try 'timeout --help' for more information. + test 125 =3D 125 + timeout 42D sleep 0 timeout: invalid time interval '42D' Try 'timeout --help' for more information. + test 125 =3D 125 +++ date +%s ++ expr 2147483647 - 1437187249 + 100 + KERNEL_OVERFLOW_LIMIT=3D710296498 + timeout 710296498 sleep 0 + test 0 '!=3D' 124 + timeout 4294967296 sleep 0 + test 124 =3D 0 + fail=3D1 ++ expr 4294967295 / 86400 + 1 + timeout 49711d sleep 0 + test 124 =3D 0 + fail=3D1 + timeout 999999999999999999999999999999999999999999999999999999999999d s= leep 0 + test 124 =3D 0 + fail=3D1 + timeout 2.34e+5d sleep 0 + test 124 =3D 0 + fail=3D1 + timeout 2.34 sleep 0 + test 0 =3D 0 + timeout .999999999 sleep 0 + timeout --signal=3Dinvalid 1 sleep 0 timeout: invalid: invalid signal Try 'timeout --help' for more information. + test 125 =3D 125 + timeout 10 . timeout: failed to run command '.': Permission denied + test 126 =3D 126 + timeout 10 no_such timeout: failed to run command 'no_such': No such file or directory + test 127 =3D 127 + Exit 1 + set +e + exit 1 + exit 1 + remove_tmp_ + __st=3D1 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.l7hj= + rm -rf /tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.l7hj + exit 1 FAIL tests/misc/timeout-parameters.sh (exit status: 1) SKIP: tests/misc/truncate-fail-diag =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-truncate-fail-diag.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-truncate-fail-diag.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-truncate-fail-diag.sh.n80N +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-truncate-fail-diag.sh.n80N ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-truncate-fail-diag.sh.n80N ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-t= runcate-fail-diag.sh.n80N' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-truncate-fail-diag.sh.n80N +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-truncate-fail-diag.sh.n80N ++ cd /tmp/32-bit/coreutils-8.24/gt-truncate-fail-diag.sh.n80N ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ truncate + test yes =3D yes + local i + for i in '$*' + env truncate --version truncate (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by P'adraig Brady. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'truncate-fail-diag.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'truncate-fail-diag.sh: skipped test: must be run as non-= root' truncate-fail-diag.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'truncate-fail-diag.sh: skipped test: must be run as non-= root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-truncate-fail-diag.sh.n80N= + rm -rf /tmp/32-bit/coreutils-8.24/gt-truncate-fail-diag.sh.n80N + exit 77 SKIP tests/misc/truncate-fail-diag.sh (exit status: 77) SKIP: tests/misc/xattr =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-xattr.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-xattr.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-xattr.sh.Hz3A +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-xattr.sh.Hz3A ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-xattr.sh.Hz3A ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:40 /tmp/32-bit/coreutils-8.24/gt-x= attr.sh.Hz3A' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-xattr.sh.Hz3A +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-xattr.sh.Hz3A ++ cd /tmp/32-bit/coreutils-8.24/gt-xattr.sh.Hz3A ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp mv ginstall + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env ginstall --version install (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + touch src dest + cp --preserve=3Dxattr -n src dest cp: cannot preserve extended attributes, cp is built without xattr suppor= t + skip_ 'coreutils built without xattr support' + warn_ 'xattr.sh: skipped test: coreutils built without xattr support' + case $IFS in + printf '%s\n' 'xattr.sh: skipped test: coreutils built without xattr su= pport' xattr.sh: skipped test: coreutils built without xattr support + test 9 =3D 2 + printf '%s\n' 'xattr.sh: skipped test: coreutils built without xattr su= pport' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-xattr.sh.Hz3A + rm -rf /tmp/32-bit/coreutils-8.24/gt-xattr.sh.Hz3A + exit 77 SKIP tests/misc/xattr.sh (exit status: 77) SKIP: tests/chown/preserve-root =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-preserve-root.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-preserve-root.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-preserve-root.sh.tYw4 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-preserve-root.sh.tYw4 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-preserve-root.sh.tYw4 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-p= reserve-root.sh.tYw4' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-preserve-root.sh.tYw4 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-preserve-root.sh.tYw4 ++ cd /tmp/32-bit/coreutils-8.24/gt-preserve-root.sh.tYw4 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chown + test yes =3D yes + local i + for i in '$*' + env chown --version chown (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'preserve-root.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'preserve-root.sh: skipped test: must be run as non-root'= preserve-root.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'preserve-root.sh: skipped test: must be run as non-root'= + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-preserve-root.sh.tYw4 + rm -rf /tmp/32-bit/coreutils-8.24/gt-preserve-root.sh.tYw4 + exit 77 SKIP tests/chown/preserve-root.sh (exit status: 77) SKIP: tests/cp/acl =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-acl.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-acl.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-acl.sh.h4bU +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-acl.sh.h4bU ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-acl.sh.h4bU ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-a= cl.sh.h4bU' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-acl.sh.h4bU +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-acl.sh.h4bU ++ cd /tmp/32-bit/coreutils-8.24/gt-acl.sh.h4bU ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp getfacl setfacl + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env getfacl --version getfacl: illegal option -- version usage: getfacl [-ad] file ...=20 + for i in '$*' + env setfacl --version usage: setfacl [-r] -f aclfile file ... setfacl [-r] -d acl_entries file ... setfacl [-r] -m acl_entries file ... setfacl [-r] -s acl_entries file ... + require_acl_ + getfacl --version + skip_ 'This test requires getfacl and setfacl.' + warn_ 'acl.sh: skipped test: This test requires getfacl and setfacl.' + case $IFS in + printf '%s\n' 'acl.sh: skipped test: This test requires getfacl and set= facl.' acl.sh: skipped test: This test requires getfacl and setfacl. + test 9 =3D 2 + printf '%s\n' 'acl.sh: skipped test: This test requires getfacl and set= facl.' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-acl.sh.h4bU + rm -rf /tmp/32-bit/coreutils-8.24/gt-acl.sh.h4bU + exit 77 SKIP tests/cp/acl.sh (exit status: 77) FAIL: tests/cp/backup-dir =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-backup-dir.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-backup-dir.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-backup-dir.sh.hjFB +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-backup-dir.sh.hjFB ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-backup-dir.sh.hjFB ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-b= ackup-dir.sh.hjFB' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-backup-dir.sh.hjFB +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-backup-dir.sh.hjFB ++ cd /tmp/32-bit/coreutils-8.24/gt-backup-dir.sh.hjFB ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + mkdir x y + cp -a x y cp: preserving permissions for 'y/x': Operation not applicable + fail=3D1 + cp -ab x y cp: preserving permissions for 'y/x': Operation not applicable + fail=3D1 + test -d y/x + test -d y/x~ + Exit 1 + set +e + exit 1 + exit 1 + remove_tmp_ + __st=3D1 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-backup-dir.sh.hjFB + rm -rf /tmp/32-bit/coreutils-8.24/gt-backup-dir.sh.hjFB + exit 1 FAIL tests/cp/backup-dir.sh (exit status: 1) FAIL: tests/cp/cp-parents =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-cp-parents.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-cp-parents.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-cp-parents.sh.jvw8 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-cp-parents.sh.jvw8 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-cp-parents.sh.jvw8 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-c= p-parents.sh.jvw8' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-cp-parents.sh.jvw8 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-cp-parents.sh.jvw8 ++ cd /tmp/32-bit/coreutils-8.24/gt-cp-parents.sh.jvw8 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + working_umask_or_skip_ + umask 022 + touch file1 file2 + chmod 644 file2 ++ ls -l file1 file2 ++ sed 's/ .*//' ++ uniq + perms=3D-rw-r--r-- + rm -f file1 file2 + case $perms in + skip_if_setgid_ + setgid_tmpdir=3Dsetgid-9614 + umask 77 + mkdir setgid-9614 ++ stat --printf %A setgid-9614 + perms=3Ddrwx------ + rmdir setgid-9614 + case $perms in + mkdir foo bar + mkdir -p a/b/c d e g + ln -s d/a sym + touch f + cp -R --parents foo/ bar + cp --verbose -a --parents a/b/c d + fail=3D1 + test -d d/a/b/c + returns_ 1 cp --parents f/g d + test -d d/f + chmod go=3Dw d/a + cp -a --parents d/a/b/c e cp: preserving permissions for 'e/d/a/b/c': Operation not applicable cp: preserving permissions for 'e/d/a/b': Operation not applicable + fail=3D1 + cp -a --parents sym/b/c g cp: preserving permissions for 'g/sym/b/c': Operation not applicable cp: preserving permissions for 'g/sym/b': Operation not applicable + fail=3D1 ++ ls -ld e/d ++ cut -b-10 + p=3Ddrwx------ + case $p in + fail=3D1 ++ ls -ld e/d/a ++ cut -b-10 + p=3Ddrwx------ + case $p in + fail=3D1 ++ ls -ld g/sym ++ cut -b-10 + p=3Ddrwx------ + case $p in + fail=3D1 ++ ls -ld e/d/a/b/c ++ cut -b-10 + p=3Ddrwxr-xr-x + case $p in ++ ls -ld g/sym/b/c ++ cut -b-10 + p=3Ddrwxr-xr-x + case $p in + Exit 1 + set +e + exit 1 + exit 1 + remove_tmp_ + __st=3D1 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-cp-parents.sh.jvw8 + rm -rf /tmp/32-bit/coreutils-8.24/gt-cp-parents.sh.jvw8 + exit 1 FAIL tests/cp/cp-parents.sh (exit status: 1) FAIL: tests/cp/duplicate-sources =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-duplicate-sources.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-duplicate-sources.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-duplicate-sources.sh.M4U8 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-duplicate-sources.sh.M4U8 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-duplicate-sources.sh.M4U8 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-d= uplicate-sources.sh.M4U8' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-duplicate-sources.sh.M4U8 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-duplicate-sources.sh.M4U8 ++ cd /tmp/32-bit/coreutils-8.24/gt-duplicate-sources.sh.M4U8 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + mkdir a + touch f + mkdir dest + cp -a a a f f dest + fail=3D1 + rm -Rf dest + mkdir dest + ln -s a al + ln -s f fl + cp -aH a al f fl dest + fail=3D1 + cat + compare exp err + compare_dev_null_ exp err + test 2 =3D 2 + test xexp =3D x/dev/null + test xerr =3D x/dev/null + return 2 + case $? in + compare_ exp err + diff -u exp err + cat diff.out --- exp Sat Jul 18 02:41:03 2015 +++ err Sat Jul 18 02:41:03 2015 @@ -1,2 +1,5 @@ +cp: preserving permissions for 'dest/a': Operation not applicable cp: warning: source directory 'a' specified more than once cp: warning: source file 'f' specified more than once +cp: preserving permissions for 'dest/a': Operation not applicable +cp: preserving permissions for 'dest/al': Operation not applicable + rm -f diff.out + false + fail=3D1 + Exit 1 + set +e + exit 1 + exit 1 + remove_tmp_ + __st=3D1 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-duplicate-sources.sh.M4U8 + rm -rf /tmp/32-bit/coreutils-8.24/gt-duplicate-sources.sh.M4U8 + exit 1 FAIL tests/cp/duplicate-sources.sh (exit status: 1) SKIP: tests/cp/existing-perm-race =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-existing-perm-race.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-existing-perm-race.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.xzmV +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.xzmV ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.xzmV ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-e= xisting-perm-race.sh.xzmV' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.xzmV +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.xzmV ++ cd /tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.xzmV ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_membership_in_two_groups_ + test 0 =3D 0 + groups=3D0 + case "$groups" in + skip_ '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=3D'\''users cdrom'\'' make check ' + warn_ 'existing-perm-race.sh: skipped 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=3D'\''users cdrom'\'' make check ' + case $IFS in + printf '%s\n' 'existing-perm-race.sh: skipped 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=3D'\''users cdrom'\'' make check ' existing-perm-race.sh: skipped 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=3D'users cdrom' make check + test 9 =3D 2 + printf '%s\n' 'existing-perm-race.sh: skipped 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=3D'\''users cdrom'\'' make check ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.xzmV= + rm -rf /tmp/32-bit/coreutils-8.24/gt-existing-perm-race.sh.xzmV + exit 77 SKIP tests/cp/existing-perm-race.sh (exit status: 77) SKIP: tests/cp/fail-perm =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-fail-perm.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-fail-perm.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-fail-perm.sh.Q4V7 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-fail-perm.sh.Q4V7 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-fail-perm.sh.Q4V7 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-f= ail-perm.sh.Q4V7' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-fail-perm.sh.Q4V7 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-fail-perm.sh.Q4V7 ++ cd /tmp/32-bit/coreutils-8.24/gt-fail-perm.sh.Q4V7 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'fail-perm.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'fail-perm.sh: skipped test: must be run as non-root' fail-perm.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'fail-perm.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-fail-perm.sh.Q4V7 + rm -rf /tmp/32-bit/coreutils-8.24/gt-fail-perm.sh.Q4V7 + exit 77 SKIP tests/cp/fail-perm.sh (exit status: 77) SKIP: tests/cp/fiemap-empty =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-fiemap-empty.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-fiemap-empty.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.tKSR +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.tKSR ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.tKSR ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-f= iemap-empty.sh.tK-R' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.tKSR +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.tKSR ++ cd /tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.tKSR ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + skip_ 'disabled for now' + warn_ 'fiemap-empty.sh: skipped test: disabled for now' + case $IFS in + printf '%s\n' 'fiemap-empty.sh: skipped test: disabled for now' fiemap-empty.sh: skipped test: disabled for now + test 9 =3D 2 + printf '%s\n' 'fiemap-empty.sh: skipped test: disabled for now' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.tKSR + rm -rf /tmp/32-bit/coreutils-8.24/gt-fiemap-empty.sh.tKSR + exit 77 SKIP tests/cp/fiemap-empty.sh (exit status: 77) SKIP: tests/cp/fiemap-FMR =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-fiemap-FMR.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-fiemap-FMR.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.ULqu +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.ULqu ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.ULqu ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-f= iemap-FMR.sh.ULqu' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.ULqu +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.ULqu ++ cd /tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.ULqu ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_valgrind_ + valgrind --error-exitcode=3D1 true + skip_ 'requires a working valgrind' + warn_ 'fiemap-FMR.sh: skipped test: requires a working valgrind' + case $IFS in + printf '%s\n' 'fiemap-FMR.sh: skipped test: requires a working valgrind= ' fiemap-FMR.sh: skipped test: requires a working valgrind + test 9 =3D 2 + printf '%s\n' 'fiemap-FMR.sh: skipped test: requires a working valgrind= ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.ULqu + rm -rf /tmp/32-bit/coreutils-8.24/gt-fiemap-FMR.sh.ULqu + exit 77 SKIP tests/cp/fiemap-FMR.sh (exit status: 77) SKIP: tests/cp/fiemap-perf =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-fiemap-perf.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-fiemap-perf.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.bV12 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.bV12 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.bV12 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-f= iemap-perf.sh.bV12' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.bV12 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.bV12 ++ cd /tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.bV12 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + touch fiemap_chk + fiemap_capable_ fiemap_chk + python + python /tmp/32-bit/coreutils-8.24/tests/fiemap-capable fiemap_chk + skip_ 'this file system lacks FIEMAP support' + warn_ 'fiemap-perf.sh: skipped test: this file system lacks FIEMAP supp= ort' + case $IFS in + printf '%s\n' 'fiemap-perf.sh: skipped test: this file system lacks FIE= MAP support' fiemap-perf.sh: skipped test: this file system lacks FIEMAP support + test 9 =3D 2 + printf '%s\n' 'fiemap-perf.sh: skipped test: this file system lacks FIE= MAP support' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.bV12 + rm -rf /tmp/32-bit/coreutils-8.24/gt-fiemap-perf.sh.bV12 + exit 77 SKIP tests/cp/fiemap-perf.sh (exit status: 77) SKIP: tests/cp/fiemap-2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-fiemap-2.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-fiemap-2.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.f4KJ +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.f4KJ ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.f4KJ ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-f= iemap-2.sh.f4KJ' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.f4KJ +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.f4KJ ++ cd /tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.f4KJ ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + touch fiemap_chk + fiemap_capable_ fiemap_chk + python + python /tmp/32-bit/coreutils-8.24/tests/fiemap-capable fiemap_chk + skip_ 'this file system lacks FIEMAP support' + warn_ 'fiemap-2.sh: skipped test: this file system lacks FIEMAP support= ' + case $IFS in + printf '%s\n' 'fiemap-2.sh: skipped test: this file system lacks FIEMAP= support' fiemap-2.sh: skipped test: this file system lacks FIEMAP support + test 9 =3D 2 + printf '%s\n' 'fiemap-2.sh: skipped test: this file system lacks FIEMAP= support' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.f4KJ + rm -rf /tmp/32-bit/coreutils-8.24/gt-fiemap-2.sh.f4KJ + exit 77 SKIP tests/cp/fiemap-2.sh (exit status: 77) SKIP: tests/cp/nfs-removal-race =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-nfs-removal-race.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-nfs-removal-race.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.ynve +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.ynve ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.ynve ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-n= fs-removal-race.sh.ynve' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.ynve +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.ynve ++ cd /tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.ynve ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_gcc_shared_ + gcc_shared_ - d.so -xc + local in=3D- + local out=3Dd.so + shift 2 + gcc -std=3Dgnu99 -Wall -shared --std=3Dgnu99 -fPIC -O2 -xc - -o d.so -l= dl + rm -f d.so + cat + gcc_shared_ k.c k.so + local in=3Dk.c + local out=3Dk.so + shift 2 + gcc -std=3Dgnu99 -Wall -shared --std=3Dgnu99 -fPIC -O2 k.c -o k.so -ldl= + touch d2 + echo xyz + LD_PRELOAD=3D:./k.so + cp src d ld.so.1: cp: fatal: libgcc_s.so.1: open failed: No such file or directory= =2E/tests/cp/nfs-removal-race.sh: line 70: 11284 Killed = LD_PRELOAD=3D$LD_PRELOAD:./k.so cp src d + fail=3D1 + test -f preloaded + skip_ 'LD_PRELOAD was ineffective?' + warn_ 'nfs-removal-race.sh: skipped test: LD_PRELOAD was ineffective?' + case $IFS in + printf '%s\n' 'nfs-removal-race.sh: skipped test: LD_PRELOAD was ineffe= ctive?' nfs-removal-race.sh: skipped test: LD_PRELOAD was ineffective? + test 9 =3D 2 + printf '%s\n' 'nfs-removal-race.sh: skipped test: LD_PRELOAD was ineffe= ctive?' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.ynve + rm -rf /tmp/32-bit/coreutils-8.24/gt-nfs-removal-race.sh.ynve + exit 77 SKIP tests/cp/nfs-removal-race.sh (exit status: 77) ERROR: tests/cp/parent-perm =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-parent-perm.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-parent-perm.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-parent-perm.sh.jvEa +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-parent-perm.sh.jvEa ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-parent-perm.sh.jvEa ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-p= arent-perm.sh.jvEa' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-parent-perm.sh.jvEa +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-parent-perm.sh.jvEa ++ cd /tmp/32-bit/coreutils-8.24/gt-parent-perm.sh.jvEa ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + working_umask_or_skip_ + umask 022 + touch file1 file2 + chmod 644 file2 ++ ls -l file1 file2 ++ sed 's/ .*//' ++ uniq + perms=3D-rw-r--r-- + rm -f file1 file2 + case $perms in + require_local_dir_ + require_mount_list_ + local 'mount_list_fail=3Dcannot read table of mounted file systems' + df --local + grep -F 'cannot read table of mounted file systems' + is_local_dir_ . + test 1 =3D 1 + df --local . + mkdir -p a/b/c a/b/d e + touch a/b/c/foo a/b/d/foo + cp -p --parent a/b/c/foo e cp: preserving permissions for 'e/a/b/c': Operation not applicable + framework_failure_ + warn_ 'parent-perm.sh: set-up failure: ' + case $IFS in + printf '%s\n' 'parent-perm.sh: set-up failure: ' parent-perm.sh: set-up failure:=20 + test 9 =3D 2 + printf '%s\n' 'parent-perm.sh: set-up failure: ' + sed 1q + Exit 99 + set +e + exit 99 + exit 99 + remove_tmp_ + __st=3D99 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-parent-perm.sh.jvEa + rm -rf /tmp/32-bit/coreutils-8.24/gt-parent-perm.sh.jvEa + exit 99 ERROR tests/cp/parent-perm.sh (exit status: 99) FAIL: tests/cp/parent-perm-race =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-parent-perm-race.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-parent-perm-race.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-parent-perm-race.sh.nrEo +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-parent-perm-race.sh.nrEo ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-parent-perm-race.sh.nrEo ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-p= arent-perm-race.sh.nrEo' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-parent-perm-race.sh.nrEo +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-parent-perm-race.sh.nrEo ++ cd /tmp/32-bit/coreutils-8.24/gt-parent-perm-race.sh.nrEo ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_local_dir_ + require_mount_list_ + local 'mount_list_fail=3Dcannot read table of mounted file systems' + df --local + grep -F 'cannot read table of mounted file systems' + is_local_dir_ . + test 1 =3D 1 + df --local . + umask 002 + mkdir mode ownership d + chmod g+s d + for attr in mode ownership + mkfifo_or_skip_ mode/fifo + test 1 =3D 1 + mkfifo mode/fifo + pid=3D11627 + cp --preserve=3Dmode -R --copy-contents --parents mode d + ls -ld d/mode + echo foo cp: preserving permissions for 'd/mode/fifo': Operation not applicable cp: preserving permissions for 'd/mode': Operation not applicable ++ cat d/mode.ls + ls_output=3D'drwxr-sr-x 2 root root 106 Jul 18 02:41 d/mode' + case $attr,$ls_output in + wait 11627 + fail=3D1 + for attr in mode ownership + mkfifo_or_skip_ ownership/fifo + test 1 =3D 1 + mkfifo ownership/fifo + pid=3D11632 + cp --preserve=3Downership -R --copy-contents --parents ownership d + ls -ld d/ownership + echo foo ++ cat d/ownership.ls + ls_output=3D'drwx--S--- 2 root root 106 Jul 18 02:41 d/ownership' + case $attr,$ls_output in + wait 11632 + Exit 1 + set +e + exit 1 + exit 1 + remove_tmp_ + __st=3D1 + cleanup_ + kill 11632 + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-parent-perm-race.sh.nrEo + rm -rf /tmp/32-bit/coreutils-8.24/gt-parent-perm-race.sh.nrEo + exit 1 FAIL tests/cp/parent-perm-race.sh (exit status: 1) SKIP: tests/cp/perm =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-perm.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-perm.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-perm.sh.LOAu +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-perm.sh.LOAu ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-perm.sh.LOAu ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-p= erm.sh.LOAu' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-perm.sh.LOAu +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-perm.sh.LOAu ++ cd /tmp/32-bit/coreutils-8.24/gt-perm.sh.LOAu ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp mv + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 'perm.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 'perm.sh: skipped test: very expensive: disabled by defau= lt 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' perm.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 'perm.sh: skipped test: very expensive: disabled by defau= lt 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-perm.sh.LOAu + rm -rf /tmp/32-bit/coreutils-8.24/gt-perm.sh.LOAu + exit 77 SKIP tests/cp/perm.sh (exit status: 77) FAIL: tests/cp/preserve-link =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-preserve-link.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-preserve-link.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-preserve-link.sh.ynYj +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-preserve-link.sh.ynYj ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-preserve-link.sh.ynYj ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-p= reserve-link.sh.ynYj' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-preserve-link.sh.ynYj +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-preserve-link.sh.ynYj ++ cd /tmp/32-bit/coreutils-8.24/gt-preserve-link.sh.ynYj ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + create_source_tree + rm -Rf s + mkdir s + touch s/f + ln s/f s/linkm + ln s/f s/linke + ln s/f s/fileo + ln s/f s/fileu + for f in f linkm + create_target_tree f + f=3Df + rm -Rf t + mkdir -p t/s/ + touch t/s/f + ln t/s/f t/s/linke + touch -d '-1 hour' t/s/fileo + touch -d '+1 hour' t/s/fileu + cp -au s t cp: preserving permissions for 't/s': Operation not applicable + fail=3D1 + same_inode t/s/f t/s/linkm + local u v ++ stat --format %i t/s/f + u=3D466071460 ++ stat --format %i t/s/linkm + v=3D466071460 + test 466071460 =3D 466071460 + same_inode t/s/f t/s/linke + local u v ++ stat --format %i t/s/f + u=3D466071460 ++ stat --format %i t/s/linke + v=3D466071460 + test 466071460 =3D 466071460 + same_inode t/s/f t/s/fileo + local u v ++ stat --format %i t/s/f + u=3D466071460 ++ stat --format %i t/s/fileo + v=3D466071460 + test 466071460 =3D 466071460 + same_inode t/s/f t/s/fileu + local u v ++ stat --format %i t/s/f + u=3D466071460 ++ stat --format %i t/s/fileu + v=3D466071460 + test 466071460 =3D 466071460 + for f in f linkm + create_target_tree linkm + f=3Dlinkm + rm -Rf t + mkdir -p t/s/ + touch t/s/linkm + ln t/s/linkm t/s/linke + touch -d '-1 hour' t/s/fileo + touch -d '+1 hour' t/s/fileu + cp -au s t cp: preserving permissions for 't/s': Operation not applicable + fail=3D1 + same_inode t/s/f t/s/linkm + local u v ++ stat --format %i t/s/f + u=3D466072532 ++ stat --format %i t/s/linkm + v=3D466072532 + test 466072532 =3D 466072532 + same_inode t/s/f t/s/linke + local u v ++ stat --format %i t/s/f + u=3D466072532 ++ stat --format %i t/s/linke + v=3D466072532 + test 466072532 =3D 466072532 + same_inode t/s/f t/s/fileo + local u v ++ stat --format %i t/s/f + u=3D466072532 ++ stat --format %i t/s/fileo + v=3D466072532 + test 466072532 =3D 466072532 + same_inode t/s/f t/s/fileu + local u v ++ stat --format %i t/s/f + u=3D466072532 ++ stat --format %i t/s/fileu + v=3D466072532 + test 466072532 =3D 466072532 + Exit 1 + set +e + exit 1 + exit 1 + remove_tmp_ + __st=3D1 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-preserve-link.sh.ynYj + rm -rf /tmp/32-bit/coreutils-8.24/gt-preserve-link.sh.ynYj + exit 1 FAIL tests/cp/preserve-link.sh (exit status: 1) SKIP: tests/cp/proc-short-read =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-proc-short-read.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-proc-short-read.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.NsJV +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.NsJV ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.NsJV ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-p= roc-short-read.sh.NsJV' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.NsJV +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.NsJV ++ cd /tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.NsJV ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + kall=3D/proc/kallsyms + test -r /proc/kallsyms + skip_ 'your system lacks /proc/kallsyms' + warn_ 'proc-short-read.sh: skipped test: your system lacks /proc/kallsy= ms' + case $IFS in + printf '%s\n' 'proc-short-read.sh: skipped test: your system lacks /pro= c/kallsyms' proc-short-read.sh: skipped test: your system lacks /proc/kallsyms + test 9 =3D 2 + printf '%s\n' 'proc-short-read.sh: skipped test: your system lacks /pro= c/kallsyms' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.NsJV + rm -rf /tmp/32-bit/coreutils-8.24/gt-proc-short-read.sh.NsJV + exit 77 SKIP tests/cp/proc-short-read.sh (exit status: 77) FAIL: tests/cp/reflink-perm =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-reflink-perm.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-reflink-perm.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-reflink-perm.sh.MZOp +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-reflink-perm.sh.MZOp ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-reflink-perm.sh.MZOp ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-r= eflink-perm.sh.MZOp' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-reflink-perm.sh.MZOp +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-reflink-perm.sh.MZOp ++ cd /tmp/32-bit/coreutils-8.24/gt-reflink-perm.sh.MZOp ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + ts=3D'2009-08-28 19:00' + touch -d '2009-08-28 19:00' file + test time_check -nt file + chmod a=3Drwx file + umask 077 + cp --reflink=3Dauto --preserve file copy cp: preserving permissions for 'copy': Operation not applicable + fail=3D1 ++ stat --printf %A copy + mode=3D-rwxrwxrwx + test -rwxrwxrwx =3D -rwxrwxrwx + test copy -nt file + echo + cp --reflink=3Dauto --preserve --attributes-only file2 empty_copy + compare /dev/null empty_copy + compare_dev_null_ /dev/null empty_copy + test 2 =3D 2 + test x/dev/null =3D x/dev/null + test -s empty_copy + return 0 + return 0 + cp --reflink=3Dalways --preserve --attributes-only file2 empty_copy + compare /dev/null empty_copy + compare_dev_null_ /dev/null empty_copy + test 2 =3D 2 + test x/dev/null =3D x/dev/null + test -s empty_copy + return 0 + return 0 + Exit 1 + set +e + exit 1 + exit 1 + remove_tmp_ + __st=3D1 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-reflink-perm.sh.MZOp + rm -rf /tmp/32-bit/coreutils-8.24/gt-reflink-perm.sh.MZOp + exit 1 FAIL tests/cp/reflink-perm.sh (exit status: 1) SKIP: tests/cp/sparse =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sparse.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sparse.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sparse.sh.ET54 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sparse.sh.ET54 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sparse.sh.ET54 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-s= parse.sh.ET54' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sparse.sh.ET54 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sparse.sh.ET54 ++ cd /tmp/32-bit/coreutils-8.24/gt-sparse.sh.ET54 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_sparse_support_ + test 0 =3D 0 + t=3Dsparse.13514 + dd bs=3D1 seek=3D128K of=3Dsparse.13514 ++ du -sk sparse.13514 + set x 128 sparse.13514 + kb_size=3D128 + rm -f sparse.13514 + test 128 -ge 128 + skip_ 'this file system does not support sparse files' + warn_ 'sparse.sh: skipped test: this file system does not support spars= e files' + case $IFS in + printf '%s\n' 'sparse.sh: skipped test: this file system does not suppo= rt sparse files' sparse.sh: skipped test: this file system does not support sparse files + test 9 =3D 2 + printf '%s\n' 'sparse.sh: skipped test: this file system does not suppo= rt sparse files' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sparse.sh.ET54 + rm -rf /tmp/32-bit/coreutils-8.24/gt-sparse.sh.ET54 + exit 77 SKIP tests/cp/sparse.sh (exit status: 77) SKIP: tests/cp/sparse-to-pipe =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sparse-to-pipe.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sparse-to-pipe.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.VlQV +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.VlQV ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.VlQV ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-s= parse-to-pipe.sh.VlQV' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.VlQV +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.VlQV ++ cd /tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.VlQV ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_sparse_support_ + test 0 =3D 0 + t=3Dsparse.13580 + dd bs=3D1 seek=3D128K of=3Dsparse.13580 ++ du -sk sparse.13580 + set x 128 sparse.13580 + kb_size=3D128 + rm -f sparse.13580 + test 128 -ge 128 + skip_ 'this file system does not support sparse files' + warn_ 'sparse-to-pipe.sh: skipped test: this file system does not suppo= rt sparse files' + case $IFS in + printf '%s\n' 'sparse-to-pipe.sh: skipped test: this file system does n= ot support sparse files' sparse-to-pipe.sh: skipped test: this file system does not support sparse= files + test 9 =3D 2 + printf '%s\n' 'sparse-to-pipe.sh: skipped test: this file system does n= ot support sparse files' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.VlQV + rm -rf /tmp/32-bit/coreutils-8.24/gt-sparse-to-pipe.sh.VlQV + exit 77 SKIP tests/cp/sparse-to-pipe.sh (exit status: 77) FAIL: tests/cp/src-base-dot =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-src-base-dot.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-src-base-dot.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-src-base-dot.sh.QcDM +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-src-base-dot.sh.QcDM ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-src-base-dot.sh.QcDM ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-s= rc-base-dot.sh.QcDM' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-src-base-dot.sh.QcDM +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-src-base-dot.sh.QcDM ++ cd /tmp/32-bit/coreutils-8.24/gt-src-base-dot.sh.QcDM ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + mkdir x y + cd y + cp --verbose -ab ../x/. . + fail=3D1 + cat + compare exp out + compare_dev_null_ exp out + test 2 =3D 2 + test xexp =3D x/dev/null + test xout =3D x/dev/null + return 2 + case $? in + compare_ exp out + diff -u exp out + cat diff.out --- exp Sat Jul 18 02:41:11 2015 +++ out Sat Jul 18 02:41:11 2015 @@ -1,0 +1,1 @@ +cp: preserving permissions for './.': Operation not applicable + rm -f diff.out + false + fail=3D1 + Exit 1 + set +e + exit 1 + exit 1 + remove_tmp_ + __st=3D1 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-src-base-dot.sh.QcDM + rm -rf /tmp/32-bit/coreutils-8.24/gt-src-base-dot.sh.QcDM + exit 1 FAIL tests/cp/src-base-dot.sh (exit status: 1) SKIP: tests/df/df-symlink =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-df-symlink.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-df-symlink.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.sV5W +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.sV5W ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.sV5W ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-d= f-symlink.sh.sV5W' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.sV5W +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.sV5W ++ cd /tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.sV5W ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ df + test yes =3D yes + local i + for i in '$*' + env df --version df (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Paul Eggert. ++ df --out=3Dsource . ++ tail -n1 + disk=3Dswap + ln -s swap symlink + df --out=3Dsource,target swap df: 'swap': No such file or directory + skip_ 'cannot get info for swap' + warn_ 'df-symlink.sh: skipped test: cannot get info for swap' + case $IFS in + printf '%s\n' 'df-symlink.sh: skipped test: cannot get info for swap' df-symlink.sh: skipped test: cannot get info for swap + test 9 =3D 2 + printf '%s\n' 'df-symlink.sh: skipped test: cannot get info for swap' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.sV5W + rm -rf /tmp/32-bit/coreutils-8.24/gt-df-symlink.sh.sV5W + exit 77 SKIP tests/df/df-symlink.sh (exit status: 77) SKIP: tests/df/unreadable =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-unreadable.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-unreadable.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-unreadable.sh.LOkq +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-unreadable.sh.LOkq ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-unreadable.sh.LOkq ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-u= nreadable.sh.LOkq' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-unreadable.sh.LOkq +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-unreadable.sh.LOkq ++ cd /tmp/32-bit/coreutils-8.24/gt-unreadable.sh.LOkq ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ df + test yes =3D yes + local i + for i in '$*' + env df --version df (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Paul Eggert. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'unreadable.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'unreadable.sh: skipped test: must be run as non-root' unreadable.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'unreadable.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-unreadable.sh.LOkq + rm -rf /tmp/32-bit/coreutils-8.24/gt-unreadable.sh.LOkq + exit 77 SKIP tests/df/unreadable.sh (exit status: 77) SKIP: tests/df/no-mtab-status =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-no-mtab-status.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-no-mtab-status.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.rHeX +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.rHeX ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.rHeX ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-n= o-mtab-status.sh.rHeX' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.rHeX +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.rHeX ++ cd /tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.rHeX ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ df + test yes =3D yes + local i + for i in '$*' + env df --version df (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Paul Eggert. + require_gcc_shared_ + gcc_shared_ - d.so -xc + local in=3D- + local out=3Dd.so + shift 2 + gcc -std=3Dgnu99 -Wall -shared --std=3Dgnu99 -fPIC -O2 -xc - -o d.so -l= dl + rm -f d.so + timeout 10 df Filesystem 1K-blocks Used Available Use% Mounte= d on rpool/ROOT/s10u11 99916637 4399752 95516885 5% / swap 4670596 984 4669612 1% /etc/s= vc/volatile rpool/ROOT/s10u11/var 96784150 1267265 95516885 2% /var swap 4793824 124212 4669612 3% /tmp swap 4669652 40 4669612 1% /var/r= un rpool/export 95516917 32 95516885 1% /expor= t rpool/export/home 95520818 3933 95516885 1% /expor= t/home rpool/pkgs 95516976 91 95516885 1% /pkgs rpool/pkgs/32-bit 95517387 502 95516885 1% /pkgs/= 32-bit rpool/pkgs/32-bit/release 101447055 5930170 95516885 6% /pkgs/= 32-bit/release rpool/pkgs/32-bit/release/ARCHIVE 101007092 5490207 95516885 6% /pkgs/= 32-bit/release/ARCHIVE rpool/pkgs/64-bit 95516917 32 95516885 1% /pkgs/= 64-bit rpool/pkgs/64-bit/release 95516917 32 95516885 1% /pkgs/= 64-bit/release rpool/pkgs/64-bit/release/ARCHIVE 95516916 31 95516885 1% /pkgs/= 64-bit/release/ARCHIVE rpool/pkgs/release 95522062 5177 95516885 1% /pkgs/= release rpool/pkgs/release/ARCHIVE 95516916 31 95516885 1% /pkgs/= release/ARCHIVE rpool 95516928 43 95516885 1% /rpool= + grep '^#define HAVE_MNTENT_H 1' /tmp/32-bit/coreutils-8.24/lib/config.h= + skip_ 'no mntent.h available to confirm the interface' + warn_ 'no-mtab-status.sh: skipped test: no mntent.h available to confir= m the interface' + case $IFS in + printf '%s\n' 'no-mtab-status.sh: skipped test: no mntent.h available t= o confirm the interface' no-mtab-status.sh: skipped test: no mntent.h available to confirm the int= erface + test 9 =3D 2 + printf '%s\n' 'no-mtab-status.sh: skipped test: no mntent.h available t= o confirm the interface' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.rHeX + rm -rf /tmp/32-bit/coreutils-8.24/gt-no-mtab-status.sh.rHeX + exit 77 SKIP tests/df/no-mtab-status.sh (exit status: 77) SKIP: tests/df/skip-duplicates =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-skip-duplicates.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-skip-duplicates.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.S5xl +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.S5xl ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.S5xl ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-s= kip-duplicates.sh.-5xl' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.S5xl +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.S5xl ++ cd /tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.S5xl ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ df + test yes =3D yes + local i + for i in '$*' + env df --version df (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Paul Eggert. + require_gcc_shared_ + gcc_shared_ - d.so -xc + local in=3D- + local out=3Dd.so + shift 2 + gcc -std=3Dgnu99 -Wall -shared --std=3Dgnu99 -fPIC -O2 -xc - -o d.so -l= dl + rm -f d.so + df --local Filesystem 1K-blocks Used Available Use% Mounte= d on rpool/ROOT/s10u11 99916637 4399752 95516885 5% / swap 4671008 984 4670024 1% /etc/s= vc/volatile rpool/ROOT/s10u11/var 96784150 1267265 95516885 2% /var swap 4794248 124224 4670024 3% /tmp swap 4670064 40 4670024 1% /var/r= un rpool/export 95516917 32 95516885 1% /expor= t rpool/export/home 95520818 3933 95516885 1% /expor= t/home rpool/pkgs 95516976 91 95516885 1% /pkgs rpool/pkgs/32-bit 95517387 502 95516885 1% /pkgs/= 32-bit rpool/pkgs/32-bit/release 101447055 5930170 95516885 6% /pkgs/= 32-bit/release rpool/pkgs/32-bit/release/ARCHIVE 101007092 5490207 95516885 6% /pkgs/= 32-bit/release/ARCHIVE rpool/pkgs/64-bit 95516917 32 95516885 1% /pkgs/= 64-bit rpool/pkgs/64-bit/release 95516917 32 95516885 1% /pkgs/= 64-bit/release rpool/pkgs/64-bit/release/ARCHIVE 95516916 31 95516885 1% /pkgs/= 64-bit/release/ARCHIVE rpool/pkgs/release 95522062 5177 95516885 1% /pkgs/= release rpool/pkgs/release/ARCHIVE 95516916 31 95516885 1% /pkgs/= release/ARCHIVE rpool 95516928 43 95516885 1% /rpool= ++ df --local --output=3Dtarget ++ grep /. ++ head -n1 + export CU_NONROOT_FS=3D/etc/svc/volatile + CU_NONROOT_FS=3D/etc/svc/volatile ++ df --local --output=3Dtarget ++ grep /. ++ tail -n+2 ++ head -n1 + export CU_REMOTE_FS=3D/var + CU_REMOTE_FS=3D/var + unique_entries=3D1 + test -z /etc/svc/volatile ++ expr 1 + 1 + unique_entries=3D2 + test -z /var ++ expr 2 + 2 + unique_entries=3D4 + grep '^#define HAVE_MNTENT_H 1' /tmp/32-bit/coreutils-8.24/lib/config.h= + skip_ 'no mntent.h available to confirm the interface' + warn_ 'skip-duplicates.sh: skipped test: no mntent.h available to confi= rm the interface' + case $IFS in + printf '%s\n' 'skip-duplicates.sh: skipped test: no mntent.h available = to confirm the interface' skip-duplicates.sh: skipped test: no mntent.h available to confirm the in= terface + test 9 =3D 2 + printf '%s\n' 'skip-duplicates.sh: skipped test: no mntent.h available = to confirm the interface' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.S5xl + rm -rf /tmp/32-bit/coreutils-8.24/gt-skip-duplicates.sh.S5xl + exit 77 SKIP tests/df/skip-duplicates.sh (exit status: 77) SKIP: tests/df/skip-rootfs =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-skip-rootfs.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-skip-rootfs.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.ZajM +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.ZajM ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.ZajM ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-s= kip-rootfs.sh.ZajM' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.ZajM +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.ZajM ++ cd /tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.ZajM ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ df + test yes =3D yes + local i + for i in '$*' + env df --version df (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Paul Eggert. + timeout 10 df Filesystem 1K-blocks Used Available Use% Mounte= d on rpool/ROOT/s10u11 99916637 4399752 95516885 5% / swap 4670572 984 4669588 1% /etc/s= vc/volatile rpool/ROOT/s10u11/var 96784150 1267265 95516885 2% /var swap 4793824 124236 4669588 3% /tmp swap 4669628 40 4669588 1% /var/r= un rpool/export 95516917 32 95516885 1% /expor= t rpool/export/home 95520818 3933 95516885 1% /expor= t/home rpool/pkgs 95516976 91 95516885 1% /pkgs rpool/pkgs/32-bit 95517387 502 95516885 1% /pkgs/= 32-bit rpool/pkgs/32-bit/release 101447055 5930170 95516885 6% /pkgs/= 32-bit/release rpool/pkgs/32-bit/release/ARCHIVE 101007092 5490207 95516885 6% /pkgs/= 32-bit/release/ARCHIVE rpool/pkgs/64-bit 95516917 32 95516885 1% /pkgs/= 64-bit rpool/pkgs/64-bit/release 95516917 32 95516885 1% /pkgs/= 64-bit/release rpool/pkgs/64-bit/release/ARCHIVE 95516916 31 95516885 1% /pkgs/= 64-bit/release/ARCHIVE rpool/pkgs/release 95522062 5177 95516885 1% /pkgs/= release rpool/pkgs/release/ARCHIVE 95516916 31 95516885 1% /pkgs/= release/ARCHIVE rpool 95516928 43 95516885 1% /rpool= + df -a + grep '^rootfs' out + skip_ 'no rootfs in mtab' + warn_ 'skip-rootfs.sh: skipped test: no rootfs in mtab' + case $IFS in + printf '%s\n' 'skip-rootfs.sh: skipped test: no rootfs in mtab' skip-rootfs.sh: skipped test: no rootfs in mtab + test 9 =3D 2 + printf '%s\n' 'skip-rootfs.sh: skipped test: no rootfs in mtab' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.ZajM + rm -rf /tmp/32-bit/coreutils-8.24/gt-skip-rootfs.sh.ZajM + exit 77 SKIP tests/df/skip-rootfs.sh (exit status: 77) SKIP: tests/dd/direct =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-direct.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-direct.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-direct.sh.C1ZJ +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-direct.sh.C1ZJ ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-direct.sh.C1ZJ ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-d= irect.sh.C1ZJ' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-direct.sh.C1ZJ +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-direct.sh.C1ZJ ++ cd /tmp/32-bit/coreutils-8.24/gt-direct.sh.C1ZJ ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ dd + test yes =3D yes + local i + for i in '$*' + env dd --version dd (coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + truncate -s 8192 in + dd if=3Din oflag=3Ddirect of=3Dout + skip_ 'this file system lacks support for O_DIRECT' + warn_ 'direct.sh: skipped test: this file system lacks support for O_DI= RECT' + case $IFS in + printf '%s\n' 'direct.sh: skipped test: this file system lacks support = for O_DIRECT' direct.sh: skipped test: this file system lacks support for O_DIRECT + test 9 =3D 2 + printf '%s\n' 'direct.sh: skipped test: this file system lacks support = for O_DIRECT' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-direct.sh.C1ZJ + rm -rf /tmp/32-bit/coreutils-8.24/gt-direct.sh.C1ZJ + exit 77 SKIP tests/dd/direct.sh (exit status: 77) SKIP: tests/dd/skip-seek-past-file =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-skip-seek-past-file.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-skip-seek-past-file.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.1G3j +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.1G3j ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.1G3j ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-s= kip-seek-past-file.sh.1G3j' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.1G3j +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.1G3j ++ cd /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.1G3j ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ dd + test yes =3D yes + local i + for i in '$*' + env dd --version dd (coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_sparse_support_ + test 0 =3D 0 + t=3Dsparse.15335 + dd bs=3D1 seek=3D128K of=3Dsparse.15335 ++ du -sk sparse.15335 + set x 128 sparse.15335 + kb_size=3D128 + rm -f sparse.15335 + test 128 -ge 128 + skip_ 'this file system does not support sparse files' + warn_ 'skip-seek-past-file.sh: skipped test: this file system does not = support sparse files' + case $IFS in + printf '%s\n' 'skip-seek-past-file.sh: skipped test: this file system d= oes not support sparse files' skip-seek-past-file.sh: skipped test: this file system does not support s= parse files + test 9 =3D 2 + printf '%s\n' 'skip-seek-past-file.sh: skipped test: this file system d= oes not support sparse files' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.1G3= j + rm -rf /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-file.sh.1G3j + exit 77 SKIP tests/dd/skip-seek-past-file.sh (exit status: 77) SKIP: tests/dd/sparse =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sparse.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sparse.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sparse.sh.iITo +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sparse.sh.iITo ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sparse.sh.iITo ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-s= parse.sh.iITo' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sparse.sh.iITo +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sparse.sh.iITo ++ cd /tmp/32-bit/coreutils-8.24/gt-sparse.sh.iITo ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ dd + test yes =3D yes + local i + for i in '$*' + env dd --version dd (coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + is_local_dir_ . + test 1 =3D 1 + df --local . + require_sparse_support_ + test 0 =3D 0 + t=3Dsparse.15401 + dd bs=3D1 seek=3D128K of=3Dsparse.15401 ++ du -sk sparse.15401 + set x 128 sparse.15401 + kb_size=3D128 + rm -f sparse.15401 + test 128 -ge 128 + skip_ 'this file system does not support sparse files' + warn_ 'sparse.sh: skipped test: this file system does not support spars= e files' + case $IFS in + printf '%s\n' 'sparse.sh: skipped test: this file system does not suppo= rt sparse files' sparse.sh: skipped test: this file system does not support sparse files + test 9 =3D 2 + printf '%s\n' 'sparse.sh: skipped test: this file system does not suppo= rt sparse files' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sparse.sh.iITo + rm -rf /tmp/32-bit/coreutils-8.24/gt-sparse.sh.iITo + exit 77 SKIP tests/dd/sparse.sh (exit status: 77) SKIP: tests/du/2g =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-2g.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-2g.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-2g.sh.j0gw +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-2g.sh.j0gw ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-2g.sh.j0gw ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-2= g.sh.j0gw' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-2g.sh.j0gw +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-2g.sh.j0gw ++ cd /tmp/32-bit/coreutils-8.24/gt-2g.sh.j0gw ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ '2g.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' '2g.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' 2g.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' '2g.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-2g.sh.j0gw + rm -rf /tmp/32-bit/coreutils-8.24/gt-2g.sh.j0gw + exit 77 SKIP tests/du/2g.sh (exit status: 77) SKIP: tests/du/8gb =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-8gb.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-8gb.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-8gb.sh.Lkdc +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-8gb.sh.Lkdc ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-8gb.sh.Lkdc ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-8= gb.sh.Lkdc' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-8gb.sh.Lkdc +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-8gb.sh.Lkdc ++ cd /tmp/32-bit/coreutils-8.24/gt-8gb.sh.Lkdc ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + require_sparse_support_ + test 0 =3D 0 + t=3Dsparse.15870 + dd bs=3D1 seek=3D128K of=3Dsparse.15870 ++ du -sk sparse.15870 + set x 128 sparse.15870 + kb_size=3D128 + rm -f sparse.15870 + test 128 -ge 128 + skip_ 'this file system does not support sparse files' + warn_ '8gb.sh: skipped test: this file system does not support sparse f= iles' + case $IFS in + printf '%s\n' '8gb.sh: skipped test: this file system does not support = sparse files' 8gb.sh: skipped test: this file system does not support sparse files + test 9 =3D 2 + printf '%s\n' '8gb.sh: skipped test: this file system does not support = sparse files' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-8gb.sh.Lkdc + rm -rf /tmp/32-bit/coreutils-8.24/gt-8gb.sh.Lkdc + exit 77 SKIP tests/du/8gb.sh (exit status: 77) SKIP: tests/du/bigtime =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-bigtime.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-bigtime.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-bigtime.sh.fI6F +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-bigtime.sh.fI6F ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-bigtime.sh.fI6F ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-b= igtime.sh.fI6F' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-bigtime.sh.fI6F +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-bigtime.sh.fI6F ++ cd /tmp/32-bit/coreutils-8.24/gt-bigtime.sh.fI6F ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + export LC_ALL=3DC + LC_ALL=3DC + export TZ=3DUTC0 + TZ=3DUTC0 + bignum=3D9223372036854775807 + touch -d @9223372036854775807 future + skip_ 'file system cannot represent big time stamps' + warn_ 'bigtime.sh: skipped test: file system cannot represent big time = stamps' + case $IFS in + printf '%s\n' 'bigtime.sh: skipped test: file system cannot represent b= ig time stamps' bigtime.sh: skipped test: file system cannot represent big time stamps + test 9 =3D 2 + printf '%s\n' 'bigtime.sh: skipped test: file system cannot represent b= ig time stamps' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-bigtime.sh.fI6F + rm -rf /tmp/32-bit/coreutils-8.24/gt-bigtime.sh.fI6F + exit 77 SKIP tests/du/bigtime.sh (exit status: 77) SKIP: tests/du/fd-leak =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-fd-leak.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-fd-leak.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.sSyG +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.sSyG ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.sSyG ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-f= d-leak.sh.s-yG' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.sSyG +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.sSyG ++ cd /tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.sSyG ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'fd-leak.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'fd-leak.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' fd-leak.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'fd-leak.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.sSyG + rm -rf /tmp/32-bit/coreutils-8.24/gt-fd-leak.sh.sSyG + exit 77 SKIP tests/du/fd-leak.sh (exit status: 77) SKIP: tests/du/inacc-dest =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-inacc-dest.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-inacc-dest.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-inacc-dest.sh.zsAI +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-inacc-dest.sh.zsAI ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-inacc-dest.sh.zsAI ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-i= nacc-dest.sh.zsAI' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-inacc-dest.sh.zsAI +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-inacc-dest.sh.zsAI ++ cd /tmp/32-bit/coreutils-8.24/gt-inacc-dest.sh.zsAI ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'inacc-dest.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'inacc-dest.sh: skipped test: must be run as non-root' inacc-dest.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'inacc-dest.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-inacc-dest.sh.zsAI + rm -rf /tmp/32-bit/coreutils-8.24/gt-inacc-dest.sh.zsAI + exit 77 SKIP tests/du/inacc-dest.sh (exit status: 77) SKIP: tests/du/inacc-dir =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-inacc-dir.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-inacc-dir.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-inacc-dir.sh.VwgC +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-inacc-dir.sh.VwgC ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-inacc-dir.sh.VwgC ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-i= nacc-dir.sh.VwgC' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-inacc-dir.sh.VwgC +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-inacc-dir.sh.VwgC ++ cd /tmp/32-bit/coreutils-8.24/gt-inacc-dir.sh.VwgC ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'inacc-dir.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'inacc-dir.sh: skipped test: must be run as non-root' inacc-dir.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'inacc-dir.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-inacc-dir.sh.VwgC + rm -rf /tmp/32-bit/coreutils-8.24/gt-inacc-dir.sh.VwgC + exit 77 SKIP tests/du/inacc-dir.sh (exit status: 77) SKIP: tests/du/inaccessible-cwd =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-inaccessible-cwd.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-inaccessible-cwd.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-inaccessible-cwd.sh.fCtR +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-inaccessible-cwd.sh.fCtR ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-inaccessible-cwd.sh.fCtR ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-i= naccessible-cwd.sh.fCtR' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-inaccessible-cwd.sh.fCtR +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-inaccessible-cwd.sh.fCtR ++ cd /tmp/32-bit/coreutils-8.24/gt-inaccessible-cwd.sh.fCtR ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + require_openat_support_ + test -z /tmp/32-bit/coreutils-8.24/lib/config.h + _skip=3Dyes + grep '^#define HAVE_OPENAT' /tmp/32-bit/coreutils-8.24/lib/config.h + _skip=3Dno + test -d /proc/self/fd + _skip=3Dno + test no =3D yes + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'inaccessible-cwd.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'inaccessible-cwd.sh: skipped test: must be run as non-ro= ot' inaccessible-cwd.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'inaccessible-cwd.sh: skipped test: must be run as non-ro= ot' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-inaccessible-cwd.sh.fCtR + rm -rf /tmp/32-bit/coreutils-8.24/gt-inaccessible-cwd.sh.fCtR + exit 77 SKIP tests/du/inaccessible-cwd.sh (exit status: 77) SKIP: tests/du/move-dir-while-traversing =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-move-dir-while-traversing.sh.X= XXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-move-dir-while-traversing.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.sh.DYUp +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.sh.DY= Up ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.sh.D= YUp ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-m= ove-dir-while-traversing.sh.DYUp' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.sh.DYUp +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.sh= =2EDYUp ++ cd /tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.sh.DYUp ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + python -m pyinotify -h /usr/bin/python: No module named pyinotify + skip_ 'python inotify package not installed' + warn_ 'move-dir-while-traversing.sh: skipped test: python inotify packa= ge not installed' + case $IFS in + printf '%s\n' 'move-dir-while-traversing.sh: skipped test: python inoti= fy package not installed' move-dir-while-traversing.sh: skipped test: python inotify package not in= stalled + test 9 =3D 2 + printf '%s\n' 'move-dir-while-traversing.sh: skipped test: python inoti= fy package not installed' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.= sh.DYUp + rm -rf /tmp/32-bit/coreutils-8.24/gt-move-dir-while-traversing.sh.DYUp + exit 77 SKIP tests/du/move-dir-while-traversing.sh (exit status: 77) SKIP: tests/du/no-x =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-no-x.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-no-x.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-no-x.sh.7qza +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-no-x.sh.7qza ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-no-x.sh.7qza ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-n= o-x.sh.7qza' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-no-x.sh.7qza +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-no-x.sh.7qza ++ cd /tmp/32-bit/coreutils-8.24/gt-no-x.sh.7qza ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'no-x.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'no-x.sh: skipped test: must be run as non-root' no-x.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'no-x.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-no-x.sh.7qza + rm -rf /tmp/32-bit/coreutils-8.24/gt-no-x.sh.7qza + exit 77 SKIP tests/du/no-x.sh (exit status: 77) SKIP: tests/id/gnu-zero-uids =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-gnu-zero-uids.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-gnu-zero-uids.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.dNqa +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.dNqa ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.dNqa ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-g= nu-zero-uids.sh.dNqa' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.dNqa +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.dNqa ++ cd /tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.dNqa ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ id + test yes =3D yes + local i + for i in '$*' + env id --version id (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_gnu_ ++ uname + test SunOS =3D GNU + skip_ 'not running on GNU/Hurd' + warn_ 'gnu-zero-uids.sh: skipped test: not running on GNU/Hurd' + case $IFS in + printf '%s\n' 'gnu-zero-uids.sh: skipped test: not running on GNU/Hurd'= gnu-zero-uids.sh: skipped test: not running on GNU/Hurd + test 9 =3D 2 + printf '%s\n' 'gnu-zero-uids.sh: skipped test: not running on GNU/Hurd'= + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.dNqa + rm -rf /tmp/32-bit/coreutils-8.24/gt-gnu-zero-uids.sh.dNqa + exit 77 SKIP tests/id/gnu-zero-uids.sh (exit status: 77) SKIP: tests/id/no-context =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-no-context.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-no-context.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-no-context.sh.4QZK +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-no-context.sh.4QZK ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-no-context.sh.4QZK ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-n= o-context.sh.4QZK' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-no-context.sh.4QZK +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-no-context.sh.4QZK ++ cd /tmp/32-bit/coreutils-8.24/gt-no-context.sh.4QZK ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ id + test yes =3D yes + local i + for i in '$*' + env id --version id (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'no-context.sh: skipped test: this system lacks SELinux support' + case $IFS in + printf '%s\n' 'no-context.sh: skipped test: this system lacks SELinux s= upport' no-context.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'no-context.sh: skipped test: this system lacks SELinux s= upport' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-no-context.sh.4QZK + rm -rf /tmp/32-bit/coreutils-8.24/gt-no-context.sh.4QZK + exit 77 SKIP tests/id/no-context.sh (exit status: 77) SKIP: tests/id/context =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-context.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-context.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-context.sh.kRu5 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-context.sh.kRu5 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-context.sh.kRu5 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-c= ontext.sh.kRu5' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-context.sh.kRu5 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-context.sh.kRu5 ++ cd /tmp/32-bit/coreutils-8.24/gt-context.sh.kRu5 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ id + test yes =3D yes + local i + for i in '$*' + env id --version id (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'context.sh: skipped test: this system lacks SELinux support' + case $IFS in + printf '%s\n' 'context.sh: skipped test: this system lacks SELinux supp= ort' context.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'context.sh: skipped test: this system lacks SELinux supp= ort' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-context.sh.kRu5 + rm -rf /tmp/32-bit/coreutils-8.24/gt-context.sh.kRu5 + exit 77 SKIP tests/id/context.sh (exit status: 77) SKIP: tests/id/smack =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-smack.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-smack.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-smack.sh.1TKR +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-smack.sh.1TKR ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-smack.sh.1TKR ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-s= mack.sh.1TKR' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-smack.sh.1TKR +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-smack.sh.1TKR ++ cd /tmp/32-bit/coreutils-8.24/gt-smack.sh.1TKR ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ id + test yes =3D yes + local i + for i in '$*' + env id --version id (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_smack_ + grep 'smackfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SMACK support' + warn_ 'smack.sh: skipped test: this system lacks SMACK support' + case $IFS in + printf '%s\n' 'smack.sh: skipped test: this system lacks SMACK support'= smack.sh: skipped test: this system lacks SMACK support + test 9 =3D 2 + printf '%s\n' 'smack.sh: skipped test: this system lacks SMACK support'= + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-smack.sh.1TKR + rm -rf /tmp/32-bit/coreutils-8.24/gt-smack.sh.1TKR + exit 77 SKIP tests/id/smack.sh (exit status: 77) SKIP: tests/install/basic-1 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-basic-1.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-basic-1.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-basic-1.sh.gwMk +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-basic-1.sh.gwMk ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-basic-1.sh.gwMk ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-b= asic-1.sh.gwMk' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-basic-1.sh.gwMk +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-basic-1.sh.gwMk ++ cd /tmp/32-bit/coreutils-8.24/gt-basic-1.sh.gwMk ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ginstall + test yes =3D yes + local i + for i in '$*' + env ginstall --version install (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'basic-1.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'basic-1.sh: skipped test: must be run as non-root' basic-1.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'basic-1.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-basic-1.sh.gwMk + rm -rf /tmp/32-bit/coreutils-8.24/gt-basic-1.sh.gwMk + exit 77 SKIP tests/install/basic-1.sh (exit status: 77) SKIP: tests/install/install-C-selinux =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-install-C-selinux.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-install-C-selinux.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.SCcO +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.SCcO ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.SCcO ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-i= nstall-C-selinux.sh.-CcO' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.SCcO +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.SCcO ++ cd /tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.SCcO ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ginstall + test yes =3D yes + local i + for i in '$*' + env ginstall --version install (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'install-C-selinux.sh: skipped test: this system lacks SELinux su= pport' + case $IFS in + printf '%s\n' 'install-C-selinux.sh: skipped test: this system lacks SE= Linux support' install-C-selinux.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'install-C-selinux.sh: skipped test: this system lacks SE= Linux support' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.SCcO + rm -rf /tmp/32-bit/coreutils-8.24/gt-install-C-selinux.sh.SCcO + exit 77 SKIP tests/install/install-C-selinux.sh (exit status: 77) SKIP: tests/ls/getxattr-speedup =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-getxattr-speedup.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-getxattr-speedup.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-getxattr-speedup.sh.MFaZ +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-getxattr-speedup.sh.MFaZ ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-getxattr-speedup.sh.MFaZ ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-g= etxattr-speedup.sh.MFaZ' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-getxattr-speedup.sh.MFaZ +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-getxattr-speedup.sh.MFaZ ++ cd /tmp/32-bit/coreutils-8.24/gt-getxattr-speedup.sh.MFaZ ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ls + test yes =3D yes + local i + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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_gcc_shared_ + gcc_shared_ - d.so -xc + local in=3D- + local out=3Dd.so + shift 2 + gcc -std=3Dgnu99 -Wall -shared --std=3Dgnu99 -fPIC -O2 -xc - -o d.so -l= dl + rm -f d.so + cat + gcc_shared_ k.c k.so + local in=3Dk.c + local out=3Dk.so + shift 2 + gcc -std=3Dgnu99 -Wall -shared --std=3Dgnu99 -fPIC -O2 k.c -o k.so -ldl= + seq 20 + xargs touch + LD_PRELOAD=3D:./k.so + ls --color=3Dalways -l . ld.so.1: ls: fatal: libgcc_s.so.1: open failed: No such file or directory= =2E/tests/ls/getxattr-speedup.sh: line 58: 22725 Killed = LD_PRELOAD=3D$LD_PRELOAD:./k.so ls --color=3Dalways -l . + fail=3D1 + test -f x + skip_ 'internal test failure: maybe LD_PRELOAD doesn'\''t work?' + warn_ 'getxattr-speedup.sh: skipped test: internal test failure: maybe = LD_PRELOAD doesn'\''t work?' + case $IFS in + printf '%s\n' 'getxattr-speedup.sh: skipped test: internal test failure= : maybe LD_PRELOAD doesn'\''t work?' getxattr-speedup.sh: skipped test: internal test failure: maybe LD_PRELOA= D doesn't work? + test 9 =3D 2 + printf '%s\n' 'getxattr-speedup.sh: skipped test: internal test failure= : maybe LD_PRELOAD doesn'\''t work?' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-getxattr-speedup.sh.MFaZ + rm -rf /tmp/32-bit/coreutils-8.24/gt-getxattr-speedup.sh.MFaZ + exit 77 SKIP tests/ls/getxattr-speedup.sh (exit status: 77) SKIP: tests/ls/no-cap =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-no-cap.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-no-cap.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-no-cap.sh.8YkT +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-no-cap.sh.8YkT ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-no-cap.sh.8YkT ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-n= o-cap.sh.8YkT' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-no-cap.sh.8YkT +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-no-cap.sh.8YkT ++ cd /tmp/32-bit/coreutils-8.24/gt-no-cap.sh.8YkT ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ls + test yes =3D yes + local i + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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_strace_ capget + test 1 =3D 1 + strace -V + skip_ 'no strace program' + warn_ 'no-cap.sh: skipped test: no strace program' + case $IFS in + printf '%s\n' 'no-cap.sh: skipped test: no strace program' no-cap.sh: skipped test: no strace program + test 9 =3D 2 + printf '%s\n' 'no-cap.sh: skipped test: no strace program' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-no-cap.sh.8YkT + rm -rf /tmp/32-bit/coreutils-8.24/gt-no-cap.sh.8YkT + exit 77 SKIP tests/ls/no-cap.sh (exit status: 77) SKIP: tests/ls/slink-acl =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-slink-acl.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-slink-acl.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.Tg7N +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.Tg7N ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.Tg7N ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-s= link-acl.sh.Tg7N' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.Tg7N +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.Tg7N ++ cd /tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.Tg7N ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ls + test yes =3D yes + local i + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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_setfacl_ + local d=3Dacltestdir_ + mkdir acltestdir_ + local f=3D0 + setfacl -d -m user::r-x acltestdir_ user::r-x: failed to get acl count get acl count error: No such file or directory + f=3D1 + rm -rf acltestdir_ + test 1 =3D 0 + skip_ 'setfacl does not work on the current file system' + warn_ 'slink-acl.sh: skipped test: setfacl does not work on the current= file system' + case $IFS in + printf '%s\n' 'slink-acl.sh: skipped test: setfacl does not work on the= current file system' slink-acl.sh: skipped test: setfacl does not work on the current file sys= tem + test 9 =3D 2 + printf '%s\n' 'slink-acl.sh: skipped test: setfacl does not work on the= current file system' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.Tg7N + rm -rf /tmp/32-bit/coreutils-8.24/gt-slink-acl.sh.Tg7N + exit 77 SKIP tests/ls/slink-acl.sh (exit status: 77) SKIP: tests/ls/stat-failed =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-stat-failed.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-stat-failed.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-stat-failed.sh.Bu3j +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-stat-failed.sh.Bu3j ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-stat-failed.sh.Bu3j ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-s= tat-failed.sh.Bu3j' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-stat-failed.sh.Bu3j +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-stat-failed.sh.Bu3j ++ cd /tmp/32-bit/coreutils-8.24/gt-stat-failed.sh.Bu3j ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ls + test yes =3D yes + local i + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'stat-failed.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'stat-failed.sh: skipped test: must be run as non-root' stat-failed.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'stat-failed.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-stat-failed.sh.Bu3j + rm -rf /tmp/32-bit/coreutils-8.24/gt-stat-failed.sh.Bu3j + exit 77 SKIP tests/ls/stat-failed.sh (exit status: 77) SKIP: tests/ls/stat-free-color =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-stat-free-color.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-stat-free-color.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.f1xs +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.f1xs ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.f1xs ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-s= tat-free-color.sh.f1xs' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.f1xs +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.f1xs ++ cd /tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.f1xs ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ls + test yes =3D yes + local i + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + stats=3Dstat,lstat,stat64,lstat64,newfstatat + require_strace_ stat,lstat,stat64,lstat64,newfstatat + test 1 =3D 1 + strace -V + skip_ 'no strace program' + warn_ 'stat-free-color.sh: skipped test: no strace program' + case $IFS in + printf '%s\n' 'stat-free-color.sh: skipped test: no strace program' stat-free-color.sh: skipped test: no strace program + test 9 =3D 2 + printf '%s\n' 'stat-free-color.sh: skipped test: no strace program' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.f1xs + rm -rf /tmp/32-bit/coreutils-8.24/gt-stat-free-color.sh.f1xs + exit 77 SKIP tests/ls/stat-free-color.sh (exit status: 77) SKIP: tests/ls/stat-free-symlinks =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-stat-free-symlinks.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-stat-free-symlinks.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.Rrrx +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.Rrrx ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.Rrrx ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-s= tat-free-symlinks.sh.Rrrx' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.Rrrx +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.Rrrx ++ cd /tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.Rrrx ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ls + test yes =3D yes + local i + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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_strace_ stat + test 1 =3D 1 + strace -V + skip_ 'no strace program' + warn_ 'stat-free-symlinks.sh: skipped test: no strace program' + case $IFS in + printf '%s\n' 'stat-free-symlinks.sh: skipped test: no strace program' stat-free-symlinks.sh: skipped test: no strace program + test 9 =3D 2 + printf '%s\n' 'stat-free-symlinks.sh: skipped test: no strace program' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.Rrrx= + rm -rf /tmp/32-bit/coreutils-8.24/gt-stat-free-symlinks.sh.Rrrx + exit 77 SKIP tests/ls/stat-free-symlinks.sh (exit status: 77) SKIP: tests/mkdir/p-3 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-p-3.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-p-3.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-p-3.sh.MGM9 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-p-3.sh.MGM9 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-p-3.sh.MGM9 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-p= -3.sh.MGM9' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-p-3.sh.MGM9 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-p-3.sh.MGM9 ++ cd /tmp/32-bit/coreutils-8.24/gt-p-3.sh.MGM9 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'p-3.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'p-3.sh: skipped test: must be run as non-root' p-3.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'p-3.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-p-3.sh.MGM9 + rm -rf /tmp/32-bit/coreutils-8.24/gt-p-3.sh.MGM9 + exit 77 SKIP tests/mkdir/p-3.sh (exit status: 77) SKIP: tests/mkdir/p-acl =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-p-acl.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-p-acl.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-p-acl.sh.wg0M +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-p-acl.sh.wg0M ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-p-acl.sh.wg0M ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-p= -acl.sh.wg0M' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-p-acl.sh.wg0M +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-p-acl.sh.wg0M ++ cd /tmp/32-bit/coreutils-8.24/gt-p-acl.sh.wg0M ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_setfacl_ + local d=3Dacltestdir_ + mkdir acltestdir_ + local f=3D0 + setfacl -d -m user::r-x acltestdir_ user::r-x: failed to get acl count get acl count error: No such file or directory + f=3D1 + rm -rf acltestdir_ + test 1 =3D 0 + skip_ 'setfacl does not work on the current file system' + warn_ 'p-acl.sh: skipped test: setfacl does not work on the current fil= e system' + case $IFS in + printf '%s\n' 'p-acl.sh: skipped test: setfacl does not work on the cur= rent file system' p-acl.sh: skipped test: setfacl does not work on the current file system + test 9 =3D 2 + printf '%s\n' 'p-acl.sh: skipped test: setfacl does not work on the cur= rent file system' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-p-acl.sh.wg0M + rm -rf /tmp/32-bit/coreutils-8.24/gt-p-acl.sh.wg0M + exit 77 SKIP tests/mkdir/p-acl.sh (exit status: 77) SKIP: tests/mkdir/selinux =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-selinux.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-selinux.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-selinux.sh.gHmu +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-selinux.sh.gHmu ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-selinux.sh.gHmu ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-s= elinux.sh.gHmu' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-selinux.sh.gHmu +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-selinux.sh.gHmu ++ cd /tmp/32-bit/coreutils-8.24/gt-selinux.sh.gHmu ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir mkfifo mknod + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mkfifo --version mkfifo (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mknod --version mknod (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_selinux_enforcing_ + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'selinux.sh: skipped test: this system lacks SELinux support' + case $IFS in + printf '%s\n' 'selinux.sh: skipped test: this system lacks SELinux supp= ort' selinux.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'selinux.sh: skipped test: this system lacks SELinux supp= ort' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-selinux.sh.gHmu + rm -rf /tmp/32-bit/coreutils-8.24/gt-selinux.sh.gHmu + exit 77 SKIP tests/mkdir/selinux.sh (exit status: 77) SKIP: tests/mkdir/restorecon =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-restorecon.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-restorecon.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-restorecon.sh.llL4 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-restorecon.sh.llL4 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-restorecon.sh.llL4 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-r= estorecon.sh.llL4' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-restorecon.sh.llL4 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-restorecon.sh.llL4 ++ cd /tmp/32-bit/coreutils-8.24/gt-restorecon.sh.llL4 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir mknod mkfifo + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mknod --version mknod (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mkfifo --version mkfifo (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'restorecon.sh: skipped test: this system lacks SELinux support' + case $IFS in + printf '%s\n' 'restorecon.sh: skipped test: this system lacks SELinux s= upport' restorecon.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'restorecon.sh: skipped test: this system lacks SELinux s= upport' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-restorecon.sh.llL4 + rm -rf /tmp/32-bit/coreutils-8.24/gt-restorecon.sh.llL4 + exit 77 SKIP tests/mkdir/restorecon.sh (exit status: 77) SKIP: tests/mkdir/smack-no-root =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-smack-no-root.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-smack-no-root.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.wdSX +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.wdSX ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.wdSX ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-s= mack-no-root.sh.wd-X' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.wdSX +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.wdSX ++ cd /tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.wdSX ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir mkfifo mknod + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mkfifo --version mkfifo (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mknod --version mknod (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_smack_ + grep 'smackfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SMACK support' + warn_ 'smack-no-root.sh: skipped test: this system lacks SMACK support'= + case $IFS in + printf '%s\n' 'smack-no-root.sh: skipped test: this system lacks SMACK = support' smack-no-root.sh: skipped test: this system lacks SMACK support + test 9 =3D 2 + printf '%s\n' 'smack-no-root.sh: skipped test: this system lacks SMACK = support' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.wdSX + rm -rf /tmp/32-bit/coreutils-8.24/gt-smack-no-root.sh.wdSX + exit 77 SKIP tests/mkdir/smack-no-root.sh (exit status: 77) SKIP: tests/mkdir/smack-root =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-smack-root.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-smack-root.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-smack-root.sh.BxkU +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.BxkU ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.BxkU ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-s= mack-root.sh.BxkU' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.BxkU +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-smack-root.sh.BxkU ++ cd /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.BxkU ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir mkfifo mknod + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mkfifo --version mkfifo (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mknod --version mknod (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_smack_ + grep 'smackfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SMACK support' + warn_ 'smack-root.sh: skipped test: this system lacks SMACK support' + case $IFS in + printf '%s\n' 'smack-root.sh: skipped test: this system lacks SMACK sup= port' smack-root.sh: skipped test: this system lacks SMACK support + test 9 =3D 2 + printf '%s\n' 'smack-root.sh: skipped test: this system lacks SMACK sup= port' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.BxkU + rm -rf /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.BxkU + exit 77 SKIP tests/mkdir/smack-root.sh (exit status: 77) SKIP: tests/mv/acl =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-acl.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-acl.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-acl.sh.7BUK +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-acl.sh.7BUK ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-acl.sh.7BUK ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-a= cl.sh.7BUK' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-acl.sh.7BUK +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-acl.sh.7BUK ++ cd /tmp/32-bit/coreutils-8.24/gt-acl.sh.7BUK ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv getfacl setfacl + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env getfacl --version getfacl: illegal option -- version usage: getfacl [-ad] file ...=20 + for i in '$*' + env setfacl --version usage: setfacl [-r] -f aclfile file ... setfacl [-r] -d acl_entries file ... setfacl [-r] -m acl_entries file ... setfacl [-r] -s acl_entries file ... + require_acl_ + getfacl --version + skip_ 'This test requires getfacl and setfacl.' + warn_ 'acl.sh: skipped test: This test requires getfacl and setfacl.' + case $IFS in + printf '%s\n' 'acl.sh: skipped test: This test requires getfacl and set= facl.' acl.sh: skipped test: This test requires getfacl and setfacl. + test 9 =3D 2 + printf '%s\n' 'acl.sh: skipped test: This test requires getfacl and set= facl.' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-acl.sh.7BUK + rm -rf /tmp/32-bit/coreutils-8.24/gt-acl.sh.7BUK + exit 77 SKIP tests/mv/acl.sh (exit status: 77) SKIP: tests/mv/atomic =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-atomic.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-atomic.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-atomic.sh.Imc0 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-atomic.sh.Imc0 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-atomic.sh.Imc0 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-a= tomic.sh.Imc0' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-atomic.sh.Imc0 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-atomic.sh.Imc0 ++ cd /tmp/32-bit/coreutils-8.24/gt-atomic.sh.Imc0 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_strace_ unlink + test 1 =3D 1 + strace -V + skip_ 'no strace program' + warn_ 'atomic.sh: skipped test: no strace program' + case $IFS in + printf '%s\n' 'atomic.sh: skipped test: no strace program' atomic.sh: skipped test: no strace program + test 9 =3D 2 + printf '%s\n' 'atomic.sh: skipped test: no strace program' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-atomic.sh.Imc0 + rm -rf /tmp/32-bit/coreutils-8.24/gt-atomic.sh.Imc0 + exit 77 SKIP tests/mv/atomic.sh (exit status: 77) SKIP: tests/mv/atomic2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-atomic2.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-atomic2.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-atomic2.sh.vdCA +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-atomic2.sh.vdCA ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-atomic2.sh.vdCA ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-a= tomic2.sh.vdCA' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-atomic2.sh.vdCA +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-atomic2.sh.vdCA ++ cd /tmp/32-bit/coreutils-8.24/gt-atomic2.sh.vdCA ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_strace_ unlink + test 1 =3D 1 + strace -V + skip_ 'no strace program' + warn_ 'atomic2.sh: skipped test: no strace program' + case $IFS in + printf '%s\n' 'atomic2.sh: skipped test: no strace program' atomic2.sh: skipped test: no strace program + test 9 =3D 2 + printf '%s\n' 'atomic2.sh: skipped test: no strace program' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-atomic2.sh.vdCA + rm -rf /tmp/32-bit/coreutils-8.24/gt-atomic2.sh.vdCA + exit 77 SKIP tests/mv/atomic2.sh (exit status: 77) SKIP: tests/mv/childproof =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-childproof.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-childproof.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-childproof.sh.o7GL +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-childproof.sh.o7GL ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-childproof.sh.o7GL ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-c= hildproof.sh.o7GL' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-childproof.sh.o7GL +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-childproof.sh.o7GL ++ cd /tmp/32-bit/coreutils-8.24/gt-childproof.sh.o7GL ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp mv ln + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env ln --version ln (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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 and David MacKenzie. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'childproof.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'childproof.sh: skipped test: must be run as non-root' childproof.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'childproof.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-childproof.sh.o7GL + rm -rf /tmp/32-bit/coreutils-8.24/gt-childproof.sh.o7GL + exit 77 SKIP tests/mv/childproof.sh (exit status: 77) SKIP: tests/mv/dup-source =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-dup-source.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-dup-source.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-dup-source.sh.IZXu +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-dup-source.sh.IZXu ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-dup-source.sh.IZXu ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-d= up-source.sh.IZXu' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-dup-source.sh.IZXu +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-dup-source.sh.IZXu ++ cd /tmp/32-bit/coreutils-8.24/gt-dup-source.sh.IZXu ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp mv + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'dup-source.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'dup-source.sh: skipped test: must be run as non-root' dup-source.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'dup-source.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-dup-source.sh.IZXu + rm -rf /tmp/32-bit/coreutils-8.24/gt-dup-source.sh.IZXu + exit 77 SKIP tests/mv/dup-source.sh (exit status: 77) SKIP: tests/mv/hard-2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-hard-2.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-hard-2.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-hard-2.sh.VR7d +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-hard-2.sh.VR7d ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-hard-2.sh.VR7d ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-h= ard-2.sh.VR7d' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-hard-2.sh.VR7d +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-hard-2.sh.VR7d ++ cd /tmp/32-bit/coreutils-8.24/gt-hard-2.sh.VR7d ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp mv + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'hard-2.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'hard-2.sh: skipped test: must be run as non-root' hard-2.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'hard-2.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-hard-2.sh.VR7d + rm -rf /tmp/32-bit/coreutils-8.24/gt-hard-2.sh.VR7d + exit 77 SKIP tests/mv/hard-2.sh (exit status: 77) SKIP: tests/mv/hard-3 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-hard-3.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-hard-3.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-hard-3.sh.gKG0 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-hard-3.sh.gKG0 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-hard-3.sh.gKG0 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-h= ard-3.sh.gKG0' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-hard-3.sh.gKG0 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-hard-3.sh.gKG0 ++ cd /tmp/32-bit/coreutils-8.24/gt-hard-3.sh.gKG0 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'hard-3.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'hard-3.sh: skipped test: must be run as non-root' hard-3.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'hard-3.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-hard-3.sh.gKG0 + rm -rf /tmp/32-bit/coreutils-8.24/gt-hard-3.sh.gKG0 + exit 77 SKIP tests/mv/hard-3.sh (exit status: 77) SKIP: tests/mv/i-2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-i-2.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-i-2.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-i-2.sh.FNUn +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-i-2.sh.FNUn ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-i-2.sh.FNUn ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-i= -2.sh.FNUn' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-i-2.sh.FNUn +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-i-2.sh.FNUn ++ cd /tmp/32-bit/coreutils-8.24/gt-i-2.sh.FNUn ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp mv + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'i-2.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'i-2.sh: skipped test: must be run as non-root' i-2.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'i-2.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-i-2.sh.FNUn + rm -rf /tmp/32-bit/coreutils-8.24/gt-i-2.sh.FNUn + exit 77 SKIP tests/mv/i-2.sh (exit status: 77) SKIP: tests/mv/i-3 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-i-3.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-i-3.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-i-3.sh.izlG +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-i-3.sh.izlG ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-i-3.sh.izlG ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-i= -3.sh.izlG' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-i-3.sh.izlG +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-i-3.sh.izlG ++ cd /tmp/32-bit/coreutils-8.24/gt-i-3.sh.izlG ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_controlling_input_terminal_ + tty -s + test -t 0 + test '' =3D no + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'i-3.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'i-3.sh: skipped test: must be run as non-root' i-3.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'i-3.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-i-3.sh.izlG + rm -rf /tmp/32-bit/coreutils-8.24/gt-i-3.sh.izlG + exit 77 SKIP tests/mv/i-3.sh (exit status: 77) SKIP: tests/mv/leak-fd =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-leak-fd.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-leak-fd.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.jizV +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.jizV ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.jizV ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-l= eak-fd.sh.jizV' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.jizV +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.jizV ++ cd /tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.jizV ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'leak-fd.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'leak-fd.sh: skipped test: must be run as non-root' leak-fd.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'leak-fd.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.jizV + rm -rf /tmp/32-bit/coreutils-8.24/gt-leak-fd.sh.jizV + exit 77 SKIP tests/mv/leak-fd.sh (exit status: 77) SKIP: tests/mv/part-fail =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-part-fail.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-part-fail.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-part-fail.sh.6heG +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-part-fail.sh.6heG ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-part-fail.sh.6heG ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-p= art-fail.sh.6heG' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-part-fail.sh.6heG +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-part-fail.sh.6heG ++ cd /tmp/32-bit/coreutils-8.24/gt-part-fail.sh.6heG ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'part-fail.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'part-fail.sh: skipped test: must be run as non-root' part-fail.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'part-fail.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-part-fail.sh.6heG + rm -rf /tmp/32-bit/coreutils-8.24/gt-part-fail.sh.6heG + exit 77 SKIP tests/mv/part-fail.sh (exit status: 77) SKIP: tests/mv/perm-1 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-perm-1.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-perm-1.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-perm-1.sh.kHbF +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-perm-1.sh.kHbF ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-perm-1.sh.kHbF ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-p= erm-1.sh.kHbF' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-perm-1.sh.kHbF +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-perm-1.sh.kHbF ++ cd /tmp/32-bit/coreutils-8.24/gt-perm-1.sh.kHbF ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'perm-1.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'perm-1.sh: skipped test: must be run as non-root' perm-1.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'perm-1.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-perm-1.sh.kHbF + rm -rf /tmp/32-bit/coreutils-8.24/gt-perm-1.sh.kHbF + exit 77 SKIP tests/mv/perm-1.sh (exit status: 77) SKIP: tests/mv/symlink-onto-hardlink-to-self =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-symlink-onto-hardlink-to-self.= sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-symlink-onto-hardlink-to-self.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-self.sh.A2= S4 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-self.s= h.A2S4 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-self.= sh.A2S4 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-s= ymlink-onto-hardlink-to-self.sh.A2-4' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-self.sh.A= 2S4 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-sel= f.sh.A2S4 ++ cd /tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-self.sh.A2S4= ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + touch f + ln -s f s2 + ln s2 s1 + test -h s1 + skip_ your kernel or file system cannot create a hard link to a symlink= + warn_ 'symlink-onto-hardlink-to-self.sh: skipped test: your' kernel or = file system cannot create a hard link to a symlink + case $IFS in + printf '%s\n' 'symlink-onto-hardlink-to-self.sh: skipped test: your ker= nel or file system cannot create a hard link to a symlink' symlink-onto-hardlink-to-self.sh: skipped test: your kernel or file syste= m cannot create a hard link to a symlink + test 9 =3D 2 + printf '%s\n' 'symlink-onto-hardlink-to-self.sh: skipped test: your ker= nel or file system cannot create a hard link to a symlink' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-s= elf.sh.A2S4 + rm -rf /tmp/32-bit/coreutils-8.24/gt-symlink-onto-hardlink-to-self.sh.A= 2S4 + exit 77 SKIP tests/mv/symlink-onto-hardlink-to-self.sh (exit status: 77) SKIP: tests/tail-2/big-4gb =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-big-4gb.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-big-4gb.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.ddoY +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.ddoY ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.ddoY ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-b= ig-4gb.sh.ddoY' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.ddoY +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.ddoY ++ cd /tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.ddoY ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + warn_ 'big-4gb.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + case $IFS in + printf '%s\n' 'big-4gb.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' big-4gb.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive + test 9 =3D 2 + printf '%s\n' 'big-4gb.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.ddoY + rm -rf /tmp/32-bit/coreutils-8.24/gt-big-4gb.sh.ddoY + exit 77 SKIP tests/tail-2/big-4gb.sh (exit status: 77) SKIP: tests/touch/fail-diag =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-fail-diag.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-fail-diag.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-fail-diag.sh.4Om3 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-fail-diag.sh.4Om3 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-fail-diag.sh.4Om3 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-f= ail-diag.sh.4Om3' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-fail-diag.sh.4Om3 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-fail-diag.sh.4Om3 ++ cd /tmp/32-bit/coreutils-8.24/gt-fail-diag.sh.4Om3 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ touch + test yes =3D yes + local i + for i in '$*' + env touch --version touch (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'fail-diag.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'fail-diag.sh: skipped test: must be run as non-root' fail-diag.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'fail-diag.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-fail-diag.sh.4Om3 + rm -rf /tmp/32-bit/coreutils-8.24/gt-fail-diag.sh.4Om3 + exit 77 SKIP tests/touch/fail-diag.sh (exit status: 77) SKIP: tests/touch/not-owner =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-not-owner.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-not-owner.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-not-owner.sh.HulI +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-not-owner.sh.HulI ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-not-owner.sh.HulI ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-n= ot-owner.sh.HulI' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-not-owner.sh.HulI +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-not-owner.sh.HulI ++ cd /tmp/32-bit/coreutils-8.24/gt-not-owner.sh.HulI ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ touch + test yes =3D yes + local i + for i in '$*' + env touch --version touch (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + env -- test -w / + skip_ you have write access to /. + warn_ 'not-owner.sh: skipped test: you' have write access to /. + case $IFS in + printf '%s\n' 'not-owner.sh: skipped test: you have write access to /.'= not-owner.sh: skipped test: you have write access to /. + test 9 =3D 2 + printf '%s\n' 'not-owner.sh: skipped test: you have write access to /.'= + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-not-owner.sh.HulI + rm -rf /tmp/32-bit/coreutils-8.24/gt-not-owner.sh.HulI + exit 77 SKIP tests/touch/not-owner.sh (exit status: 77) SKIP: tests/touch/read-only =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-read-only.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-read-only.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-read-only.sh.wIRD +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-read-only.sh.wIRD ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-read-only.sh.wIRD ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-r= ead-only.sh.wIRD' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-read-only.sh.wIRD +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-read-only.sh.wIRD ++ cd /tmp/32-bit/coreutils-8.24/gt-read-only.sh.wIRD ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ touch + test yes =3D yes + local i + for i in '$*' + env touch --version touch (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + skip_if_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + skip_ 'must be run as non-root' + warn_ 'read-only.sh: skipped test: must be run as non-root' + case $IFS in + printf '%s\n' 'read-only.sh: skipped test: must be run as non-root' read-only.sh: skipped test: must be run as non-root + test 9 =3D 2 + printf '%s\n' 'read-only.sh: skipped test: must be run as non-root' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-read-only.sh.wIRD + rm -rf /tmp/32-bit/coreutils-8.24/gt-read-only.sh.wIRD + exit 77 SKIP tests/touch/read-only.sh (exit status: 77) SKIP: tests/cp/cp-a-selinux =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-cp-a-selinux.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-cp-a-selinux.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.a0d6 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.a0d6 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.a0d6 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-c= p-a-selinux.sh.a0d6' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.a0d6 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.a0d6 ++ cd /tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.a0d6 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/cp/cp-a-selinux.sh + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'cp-a-selinux.sh: skipped test: this system lacks SELinux support= ' + case $IFS in + printf '%s\n' 'cp-a-selinux.sh: skipped test: this system lacks SELinux= support' cp-a-selinux.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'cp-a-selinux.sh: skipped test: this system lacks SELinux= support' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.a0d6 + rm -rf /tmp/32-bit/coreutils-8.24/gt-cp-a-selinux.sh.a0d6 + exit 77 SKIP tests/cp/cp-a-selinux.sh (exit status: 77) SKIP: tests/cp/cp-mv-enotsup-xattr =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-cp-mv-enotsup-xattr.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-cp-mv-enotsup-xattr.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.bYxb +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.bYxb ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.bYxb ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-c= p-mv-enotsup-xattr.sh.bYxb' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.bYxb +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.bYxb ++ cd /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.bYxb ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp mv + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/cp/cp-mv-enotsup-xattr.sh ++ pwd + cwd=3D/tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.bYxb + skip=3D0 + make_fs noxattr nouser_xattr + where=3Dnoxattr + opts=3Dnouser_xattr + fs=3Dnoxattr.bin + dd if=3D/dev/zero of=3Dnoxattr.bin bs=3D8192 count=3D200 + mkdir noxattr + mkfs -t ext2 -F noxattr.bin mkfs: illegal option -- t Usage: mkfs [-F FSType] [-V] [-m] [-o specific_options] special=20 mkfs [operands] + skip_ 'failed to create ext2 file system' + warn_ 'cp-mv-enotsup-xattr.sh: skipped test: failed to create ext2 file= system' + case $IFS in + printf '%s\n' 'cp-mv-enotsup-xattr.sh: skipped test: failed to create e= xt2 file system' cp-mv-enotsup-xattr.sh: skipped test: failed to create ext2 file system + test 9 =3D 2 + printf '%s\n' 'cp-mv-enotsup-xattr.sh: skipped test: failed to create e= xt2 file system' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + cd / + umount /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.bYxb/noxatt= r umount: warning: /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.bYx= b/noxattr not in mnttab umount: /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.bYxb/noxattr= not mounted + umount /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.bYxb/xattr umount: warning: /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.bYx= b/xattr not in mnttab umount: /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.bYxb/xattr n= o such file or directory + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.bYx= b + rm -rf /tmp/32-bit/coreutils-8.24/gt-cp-mv-enotsup-xattr.sh.bYxb + exit 77 SKIP tests/cp/cp-mv-enotsup-xattr.sh (exit status: 77) SKIP: tests/cp/capability =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-capability.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-capability.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-capability.sh.9hkr +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-capability.sh.9hkr ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-capability.sh.9hkr ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-c= apability.sh.9hkr' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-capability.sh.9hkr +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-capability.sh.9hkr ++ cd /tmp/32-bit/coreutils-8.24/gt-capability.sh.9hkr ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/cp/capability.sh + working_umask_or_skip_ + umask 022 + touch file1 file2 + chmod 644 file2 ++ ls -l file1 file2 ++ sed 's/ .*//' ++ uniq + perms=3D-rw-r--r-- + rm -f file1 file2 + case $perms in + grep '^#define HAVE_CAP 1' /tmp/32-bit/coreutils-8.24/lib/config.h + skip_ 'configured without libcap support' + warn_ 'capability.sh: skipped test: configured without libcap support' + case $IFS in + printf '%s\n' 'capability.sh: skipped test: configured without libcap s= upport' capability.sh: skipped test: configured without libcap support + test 9 =3D 2 + printf '%s\n' 'capability.sh: skipped test: configured without libcap s= upport' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-capability.sh.9hkr + rm -rf /tmp/32-bit/coreutils-8.24/gt-capability.sh.9hkr + exit 77 SKIP tests/cp/capability.sh (exit status: 77) SKIP: tests/cp/sparse-fiemap =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-sparse-fiemap.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-sparse-fiemap.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.27JE +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.27JE ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.27JE ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-s= parse-fiemap.sh.27JE' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.27JE +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.27JE ++ cd /tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.27JE ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ cp + test yes =3D yes + local i + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + require_perl_ + : perl + perl -e 'use warnings' + touch fiemap_chk + fiemap_capable_ fiemap_chk + python + python /tmp/32-bit/coreutils-8.24/tests/fiemap-capable fiemap_chk + skip_ 'current file system has insufficient FIEMAP support' + warn_ 'sparse-fiemap.sh: skipped test: current file system has insuffic= ient FIEMAP support' + case $IFS in + printf '%s\n' 'sparse-fiemap.sh: skipped test: current file system has = insufficient FIEMAP support' sparse-fiemap.sh: skipped test: current file system has insufficient FIEM= AP support + test 9 =3D 2 + printf '%s\n' 'sparse-fiemap.sh: skipped test: current file system has = insufficient FIEMAP support' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.27JE + rm -rf /tmp/32-bit/coreutils-8.24/gt-sparse-fiemap.sh.27JE + exit 77 SKIP tests/cp/sparse-fiemap.sh (exit status: 77) SKIP: tests/dd/skip-seek-past-dev =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-skip-seek-past-dev.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-skip-seek-past-dev.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.bZUh +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.bZUh ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.bZUh ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-s= kip-seek-past-dev.sh.bZUh' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.bZUh +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.bZUh ++ cd /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.bZUh ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ dd + test yes =3D yes + local i + for i in '$*' + env dd --version dd (coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/dd/skip-seek-past-dev.sh + require_local_dir_ + require_mount_list_ + local 'mount_list_fail=3Dcannot read table of mounted file systems' + df --local + grep -F 'cannot read table of mounted file systems' + is_local_dir_ . + test 1 =3D 1 + df --local . ++ df --output=3Dsource . ++ tail -n1 + device=3Dswap ++ get_device_size swap ++ BLOCKDEV=3Dblockdev ++ blockdev -V ++ BLOCKDEV=3D/sbin/blockdev ++ /sbin/blockdev --getsize64 swap =2E/tests/dd/skip-seek-past-dev.sh: line 30: /sbin/blockdev: No such file= or directory + dev_size=3D + skip_ 'failed to determine size of swap' + warn_ 'skip-seek-past-dev.sh: skipped test: failed to determine size of= swap' + case $IFS in + printf '%s\n' 'skip-seek-past-dev.sh: skipped test: failed to determine= size of swap' skip-seek-past-dev.sh: skipped test: failed to determine size of swap + test 9 =3D 2 + printf '%s\n' 'skip-seek-past-dev.sh: skipped test: failed to determine= size of swap' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.bZUh= + rm -rf /tmp/32-bit/coreutils-8.24/gt-skip-seek-past-dev.sh.bZUh + exit 77 SKIP tests/dd/skip-seek-past-dev.sh (exit status: 77) SKIP: tests/df/problematic-chars =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-problematic-chars.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-problematic-chars.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.xxpO +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.xxpO ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.xxpO ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-p= roblematic-chars.sh.xxpO' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.xxpO +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.xxpO ++ cd /tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.xxpO ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ df + test yes =3D yes + local i + for i in '$*' + env df --version df (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Paul Eggert. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/df/problematic-chars.sh + mnt=3D'mount point' ++ pwd + cwd=3D/tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.xxpO + skip=3D0 + dd if=3D/dev/zero of=3Dblob bs=3D8192 count=3D200 + mkdir 'mount point' + mkfs -t ext2 -F blob mkfs: illegal option -- t Usage: mkfs [-F FSType] [-V] [-m] [-o specific_options] special=20 mkfs [operands] + skip_ 'failed to create ext2 file system' + warn_ 'problematic-chars.sh: skipped test: failed to create ext2 file s= ystem' + case $IFS in + printf '%s\n' 'problematic-chars.sh: skipped test: failed to create ext= 2 file system' problematic-chars.sh: skipped test: failed to create ext2 file system + test 9 =3D 2 + printf '%s\n' 'problematic-chars.sh: skipped test: failed to create ext= 2 file system' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + cd / + umount '/tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.xxpO/mount point' umount: warning: /tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.xxpO/= mount point not in mnttab umount: /tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.xxpO/mount point not mounted + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.xxpO + rm -rf /tmp/32-bit/coreutils-8.24/gt-problematic-chars.sh.xxpO + exit 77 SKIP tests/df/problematic-chars.sh (exit status: 77) SKIP: tests/df/over-mount-device =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-over-mount-device.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-over-mount-device.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.3ICe +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.3ICe ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.3ICe ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-o= ver-mount-device.sh.3ICe' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.3ICe +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.3ICe ++ cd /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.3ICe ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ df + test yes =3D yes + local i + for i in '$*' + env df --version df (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Paul Eggert. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/df/over-mount-device.sh ++ pwd + cwd=3D/tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.3ICe + skip=3D0 + for i in 1 2 + dd if=3D/dev/zero of=3Dblob1 bs=3D8192 count=3D200 + mkfs -t ext2 -F blob1 mkfs: illegal option -- t Usage: mkfs [-F FSType] [-V] [-m] [-o specific_options] special=20 mkfs [operands] + skip_ 'failed to create ext2 file system' + warn_ 'over-mount-device.sh: skipped test: failed to create ext2 file s= ystem' + case $IFS in + printf '%s\n' 'over-mount-device.sh: skipped test: failed to create ext= 2 file system' over-mount-device.sh: skipped test: failed to create ext2 file system + test 9 =3D 2 + printf '%s\n' 'over-mount-device.sh: skipped test: failed to create ext= 2 file system' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + cd / + umount /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.3ICe/mnt umount: warning: /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.3ICe/= mnt not in mnttab umount: /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.3ICe/mnt no su= ch file or directory + umount /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.3ICe/mnt umount: warning: /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.3ICe/= mnt not in mnttab umount: /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.3ICe/mnt no su= ch file or directory + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.3ICe + rm -rf /tmp/32-bit/coreutils-8.24/gt-over-mount-device.sh.3ICe + exit 77 SKIP tests/df/over-mount-device.sh (exit status: 77) SKIP: tests/du/bind-mount-dir-cycle =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-bind-mount-dir-cycle.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-bind-mount-dir-cycle.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.dFrK +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.dFrK ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.dFrK ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-b= ind-mount-dir-cycle.sh.dFrK' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.dFrK +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.dFrK= ++ cd /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.dFrK ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/du/bind-mount-dir-cycle.sh + mkdir -p a/b + mount --bind a a/b mount: illegal option -- bind Usage: mount [-v | -p] mount [-F FSType] [-V] [current_options] [-o specific_options] {special | mount_point} mount [-F FSType] [-V] [current_options] [-o specific_options] special mount_point mount -a [-F FSType ] [-V] [current_options] [-o specific_options] [mount_point ...] + skip_ 'This test requires mount with a working --bind option.' + warn_ 'bind-mount-dir-cycle.sh: skipped test: This test requires mount = with a working --bind option.' + case $IFS in + printf '%s\n' 'bind-mount-dir-cycle.sh: skipped test: This test require= s mount with a working --bind option.' bind-mount-dir-cycle.sh: skipped test: This test requires mount with a wo= rking --bind option. + test 9 =3D 2 + printf '%s\n' 'bind-mount-dir-cycle.sh: skipped test: This test require= s mount with a working --bind option.' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + umount a/b umount: warning: a/b not in mnttab umount: a/b not mounted + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.dF= rK + rm -rf /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle.sh.dFrK + exit 77 SKIP tests/du/bind-mount-dir-cycle.sh (exit status: 77) SKIP: tests/du/bind-mount-dir-cycle-v2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-bind-mount-dir-cycle-v2.sh.XXX= X +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-bind-mount-dir-cycle-v2.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh.eCaV +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh.eCaV= ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh.eCa= V ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-b= ind-mount-dir-cycle-v2.sh.eCaV' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh.eCaV +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh.e= CaV ++ cd /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh.eCaV ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ du + test yes =3D yes + local i + for i in '$*' + env du --version du (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, Paul Eggert, and Jim Meyering. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/du/bind-mount-dir-cycle-v2.sh + mkdir -p a/b/c + mount --bind a a/b/c mount: illegal option -- bind Usage: mount [-v | -p] mount [-F FSType] [-V] [current_options] [-o specific_options] {special | mount_point} mount [-F FSType] [-V] [current_options] [-o specific_options] special mount_point mount -a [-F FSType ] [-V] [current_options] [-o specific_options] [mount_point ...] + skip_ 'This test requires mount with a working --bind option.' + warn_ 'bind-mount-dir-cycle-v2.sh: skipped test: This test requires mou= nt with a working --bind option.' + case $IFS in + printf '%s\n' 'bind-mount-dir-cycle-v2.sh: skipped test: This test requ= ires mount with a working --bind option.' bind-mount-dir-cycle-v2.sh: skipped test: This test requires mount with a= working --bind option. + test 9 =3D 2 + printf '%s\n' 'bind-mount-dir-cycle-v2.sh: skipped test: This test requ= ires mount with a working --bind option.' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + umount a/b/c umount: warning: a/b/c not in mnttab umount: a/b/c not mounted + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh= =2EeCaV + rm -rf /tmp/32-bit/coreutils-8.24/gt-bind-mount-dir-cycle-v2.sh.eCaV + exit 77 SKIP tests/du/bind-mount-dir-cycle-v2.sh (exit status: 77) SKIP: tests/ls/capability =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-capability.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-capability.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-capability.sh.fGyP +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-capability.sh.fGyP ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-capability.sh.fGyP ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-c= apability.sh.fGyP' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-capability.sh.fGyP +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-capability.sh.fGyP ++ cd /tmp/32-bit/coreutils-8.24/gt-capability.sh.fGyP ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ ls + test yes =3D yes + local i + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/ls/capability.sh + grep '^#define HAVE_CAP 1' /tmp/32-bit/coreutils-8.24/lib/config.h + skip_ 'configured without libcap support' + warn_ 'capability.sh: skipped test: configured without libcap support' + case $IFS in + printf '%s\n' 'capability.sh: skipped test: configured without libcap s= upport' capability.sh: skipped test: configured without libcap support + test 9 =3D 2 + printf '%s\n' 'capability.sh: skipped test: configured without libcap s= upport' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-capability.sh.fGyP + rm -rf /tmp/32-bit/coreutils-8.24/gt-capability.sh.fGyP + exit 77 SKIP tests/ls/capability.sh (exit status: 77) SKIP: tests/misc/chcon =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-chcon.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-chcon.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-chcon.sh.GwB6 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-chcon.sh.GwB6 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-chcon.sh.GwB6 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-c= hcon.sh.GwB6' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-chcon.sh.GwB6 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-chcon.sh.GwB6 ++ cd /tmp/32-bit/coreutils-8.24/gt-chcon.sh.GwB6 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chcon + test yes =3D yes + local i + for i in '$*' + env chcon --version chcon (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/misc/chcon.sh + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'chcon.sh: skipped test: this system lacks SELinux support' + case $IFS in + printf '%s\n' 'chcon.sh: skipped test: this system lacks SELinux suppor= t' chcon.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'chcon.sh: skipped test: this system lacks SELinux suppor= t' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-chcon.sh.GwB6 + rm -rf /tmp/32-bit/coreutils-8.24/gt-chcon.sh.GwB6 + exit 77 SKIP tests/misc/chcon.sh (exit status: 77) SKIP: tests/misc/selinux =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-selinux.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-selinux.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-selinux.sh.9wZ9 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-selinux.sh.9wZ9 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-selinux.sh.9wZ9 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-s= elinux.sh.9wZ9' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-selinux.sh.9wZ9 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-selinux.sh.9wZ9 ++ cd /tmp/32-bit/coreutils-8.24/gt-selinux.sh.9wZ9 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ chcon cp ls mv stat + test yes =3D yes + local i + for i in '$*' + env chcon --version chcon (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env cp --version cp (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by Torbj"orn Granlund, David MacKenzie, and Jim Meyering. + for i in '$*' + env ls --version ls (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env stat --version stat (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/misc/selinux.sh + require_selinux_ + grep 'selinuxfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SELinux support' + warn_ 'selinux.sh: skipped test: this system lacks SELinux support' + case $IFS in + printf '%s\n' 'selinux.sh: skipped test: this system lacks SELinux supp= ort' selinux.sh: skipped test: this system lacks SELinux support + test 9 =3D 2 + printf '%s\n' 'selinux.sh: skipped test: this system lacks SELinux supp= ort' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-selinux.sh.9wZ9 + rm -rf /tmp/32-bit/coreutils-8.24/gt-selinux.sh.9wZ9 + exit 77 SKIP tests/misc/selinux.sh (exit status: 77) SKIP: tests/mkdir/writable-under-readonly =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-writable-under-readonly.sh.XXX= X +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-writable-under-readonly.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh.9pco +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh.9pco= ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh.9pc= o ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-w= ritable-under-readonly.sh.9pco' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh.9pco +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh.9= pco ++ cd /tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh.9pco ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/mkdir/writable-under-readonly.sh + skip_ temporarily disabled + warn_ 'writable-under-readonly.sh: skipped test: temporarily' disabled + case $IFS in + printf '%s\n' 'writable-under-readonly.sh: skipped test: temporarily di= sabled' writable-under-readonly.sh: skipped test: temporarily disabled + test 9 =3D 2 + printf '%s\n' 'writable-under-readonly.sh: skipped test: temporarily di= sabled' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh= =2E9pco + rm -rf /tmp/32-bit/coreutils-8.24/gt-writable-under-readonly.sh.9pco + exit 77 SKIP tests/mkdir/writable-under-readonly.sh (exit status: 77) SKIP: tests/mkdir/smack-root =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-smack-root.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-smack-root.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-smack-root.sh.BxkU +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.BxkU ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.BxkU ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-s= mack-root.sh.BxkU' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.BxkU +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-smack-root.sh.BxkU ++ cd /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.BxkU ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mkdir mkfifo mknod + test yes =3D yes + local i + for i in '$*' + env mkdir --version mkdir (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mkfifo --version mkfifo (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + for i in '$*' + env mknod --version mknod (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_smack_ + grep 'smackfs$' /proc/filesystems grep: can't open "/proc/filesystems" + skip_ 'this system lacks SMACK support' + warn_ 'smack-root.sh: skipped test: this system lacks SMACK support' + case $IFS in + printf '%s\n' 'smack-root.sh: skipped test: this system lacks SMACK sup= port' smack-root.sh: skipped test: this system lacks SMACK support + test 9 =3D 2 + printf '%s\n' 'smack-root.sh: skipped test: this system lacks SMACK sup= port' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.BxkU + rm -rf /tmp/32-bit/coreutils-8.24/gt-smack-root.sh.BxkU + exit 77 SKIP tests/mkdir/smack-root.sh (exit status: 77) SKIP: tests/mv/hardlink-case =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-hardlink-case.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-hardlink-case.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.AiMP +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.AiMP ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.AiMP ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-h= ardlink-case.sh.AiMP' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.AiMP +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.AiMP ++ cd /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.AiMP ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ mv + test yes =3D yes + local i + for i in '$*' + env mv --version mv (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/mv/hardlink-case.sh ++ pwd + cwd=3D/tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.AiMP + truncate -s100M hfs.img + mkfs -t hfsplus hfs.img mkfs: illegal option -- t Usage: mkfs [-F FSType] [-V] [-m] [-o specific_options] special=20 mkfs [operands] + skip_ 'failed to create hfs file system' + warn_ 'hardlink-case.sh: skipped test: failed to create hfs file system= ' + case $IFS in + printf '%s\n' 'hardlink-case.sh: skipped test: failed to create hfs fil= e system' hardlink-case.sh: skipped test: failed to create hfs file system + test 9 =3D 2 + printf '%s\n' 'hardlink-case.sh: skipped test: failed to create hfs fil= e system' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + cd / + umount /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.AiMP/mnt umount: warning: /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.AiMP/mnt = not in mnttab umount: /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.AiMP/mnt no such f= ile or directory + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.AiMP + rm -rf /tmp/32-bit/coreutils-8.24/gt-hardlink-case.sh.AiMP + exit 77 SKIP tests/mv/hardlink-case.sh (exit status: 77) SKIP: tests/rm/one-file-system =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-one-file-system.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-one-file-system.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.awC3 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.awC3 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.awC3 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-o= ne-file-system.sh.awC3' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.awC3 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.awC3 ++ cd /tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.awC3 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/rm/one-file-system.sh + . /tmp/32-bit/coreutils-8.24/tests/other-fs-tmpdir ++ test '' =3D set ++ CANDIDATE_TMP_DIRS=3D'/tmp /tmp /dev/shm /var/tmp /usr/tmp /' ++ other_partition_tmpdir=3D +++ stat -c %d . ++ dot_mount_point=3D80740354 ++ for d in '$CANDIDATE_TMP_DIRS' ++ test -d /tmp +++ stat -L -c %d /tmp ++ d_mount_point=3D80740354 ++ test x80740354 =3D x80740354 ++ continue ++ for d in '$CANDIDATE_TMP_DIRS' ++ test -d /tmp +++ stat -L -c %d /tmp ++ d_mount_point=3D80740354 ++ test x80740354 =3D x80740354 ++ continue ++ for d in '$CANDIDATE_TMP_DIRS' ++ test -d /dev/shm ++ continue ++ for d in '$CANDIDATE_TMP_DIRS' ++ test -d /var/tmp +++ stat -L -c %d /var/tmp ++ d_mount_point=3D47513603 ++ test x47513603 =3D x80740354 ++ mkdir /var/tmp/tmp4060 ++ other_partition_tmpdir=3D/var/tmp/tmp4060 ++ break ++ test -z /var/tmp/tmp4060 ++ test yes =3D yes ++ set -x + t=3D/var/tmp/tmp4060 + mkdir -p a/b /var/tmp/tmp4060/y + mount --bind /var/tmp/tmp4060 a/b mount: illegal option -- bind Usage: mount [-v | -p] mount [-F FSType] [-V] [current_options] [-o specific_options] {special | mount_point} mount [-F FSType] [-V] [current_options] [-o specific_options] special mount_point mount -a [-F FSType ] [-V] [current_options] [-o specific_options] [mount_point ...] + skip_ 'This test requires mount with a working --bind option.' + warn_ 'one-file-system.sh: skipped test: This test requires mount with = a working --bind option.' + case $IFS in + printf '%s\n' 'one-file-system.sh: skipped test: This test requires mou= nt with a working --bind option.' one-file-system.sh: skipped test: This test requires mount with a working= --bind option. + test 9 =3D 2 + printf '%s\n' 'one-file-system.sh: skipped test: This test requires mou= nt with a working --bind option.' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + umount a/b umount: warning: a/b not in mnttab umount: a/b not mounted + rm -rf /var/tmp/tmp4060 + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.awC3 + rm -rf /tmp/32-bit/coreutils-8.24/gt-one-file-system.sh.awC3 + exit 77 SKIP tests/rm/one-file-system.sh (exit status: 77) SKIP: tests/rm/read-only =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-read-only.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-read-only.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-read-only.sh.xc80 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-read-only.sh.xc80 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-read-only.sh.xc80 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-r= ead-only.sh.xc80' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-read-only.sh.xc80 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-read-only.sh.xc80 ++ cd /tmp/32-bit/coreutils-8.24/gt-read-only.sh.xc80 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ rm + test yes =3D yes + local i + for i in '$*' + env rm --version rm (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/rm/read-only.sh ++ pwd + cwd=3D/tmp/32-bit/coreutils-8.24/gt-read-only.sh.xc80 + skip=3D0 + dd if=3D/dev/zero of=3Dblob bs=3D8192 count=3D200 + mkdir mnt + mkfs -t ext2 -F blob mkfs: illegal option -- t Usage: mkfs [-F FSType] [-V] [-m] [-o specific_options] special=20 mkfs [operands] + skip_ 'failed to create ext2 file system' + warn_ 'read-only.sh: skipped test: failed to create ext2 file system' + case $IFS in + printf '%s\n' 'read-only.sh: skipped test: failed to create ext2 file s= ystem' read-only.sh: skipped test: failed to create ext2 file system + test 9 =3D 2 + printf '%s\n' 'read-only.sh: skipped test: failed to create ext2 file s= ystem' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + cd / + umount /tmp/32-bit/coreutils-8.24/gt-read-only.sh.xc80/mnt umount: warning: /tmp/32-bit/coreutils-8.24/gt-read-only.sh.xc80/mnt not = in mnttab umount: /tmp/32-bit/coreutils-8.24/gt-read-only.sh.xc80/mnt not mounted + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-read-only.sh.xc80 + rm -rf /tmp/32-bit/coreutils-8.24/gt-read-only.sh.xc80 + exit 77 SKIP tests/rm/read-only.sh (exit status: 77) SKIP: tests/tail-2/append-only =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-append-only.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-append-only.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-append-only.sh.9mJ5 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-append-only.sh.9mJ5 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-append-only.sh.9mJ5 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-a= ppend-only.sh.9mJ5' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-append-only.sh.9mJ5 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-append-only.sh.9mJ5 ++ cd /tmp/32-bit/coreutils-8.24/gt-append-only.sh.9mJ5 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ tail + test yes =3D yes + local i + for i in '$*' + env tail --version tail (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. 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. + require_root_ + uid_is_privileged_ ++ id -u + my_uid=3D0 + case $my_uid in + NON_ROOT_USERNAME=3Dnobody ++ id -g nobody + NON_ROOT_GID=3D60001 + grep '^[ ]*chroot' .././tests/tail-2/append-only.sh + chattr_a_works=3D1 + touch f + chattr +a f + chattr_a_works=3D0 + chattr_a_works=3D0 + echo x + test 0 =3D 0 + skip_ 'chattr +a doesn'\''t work on this file system' + warn_ 'append-only.sh: skipped test: chattr +a doesn'\''t work on this = file system' + case $IFS in + printf '%s\n' 'append-only.sh: skipped test: chattr +a doesn'\''t work = on this file system' append-only.sh: skipped test: chattr +a doesn't work on this file system + test 9 =3D 2 + printf '%s\n' 'append-only.sh: skipped test: chattr +a doesn'\''t work = on this file system' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + kill + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-append-only.sh.9mJ5 + rm -rf /tmp/32-bit/coreutils-8.24/gt-append-only.sh.9mJ5 + exit 77 SKIP tests/tail-2/append-only.sh (exit status: 77) SKIP: tests/factor/t00 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t00.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t00.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t00.sh.IbAm +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t00.sh.IbAm ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t00.sh.IbAm ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 00.sh.IbAm' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t00.sh.IbAm +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t00.sh.IbAm ++ cd /tmp/32-bit/coreutils-8.24/gt-t00.sh.IbAm ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't00.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't00.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t00.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't00.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t00.sh.IbAm + rm -rf /tmp/32-bit/coreutils-8.24/gt-t00.sh.IbAm + exit 77 SKIP tests/factor/t00.sh (exit status: 77) SKIP: tests/factor/t01 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t01.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t01.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t01.sh.Ws2O +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t01.sh.Ws2O ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t01.sh.Ws2O ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 01.sh.Ws2O' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t01.sh.Ws2O +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t01.sh.Ws2O ++ cd /tmp/32-bit/coreutils-8.24/gt-t01.sh.Ws2O ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't01.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't01.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t01.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't01.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t01.sh.Ws2O + rm -rf /tmp/32-bit/coreutils-8.24/gt-t01.sh.Ws2O + exit 77 SKIP tests/factor/t01.sh (exit status: 77) SKIP: tests/factor/t02 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t02.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t02.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t02.sh.g55N +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t02.sh.g55N ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t02.sh.g55N ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 02.sh.g55N' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t02.sh.g55N +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t02.sh.g55N ++ cd /tmp/32-bit/coreutils-8.24/gt-t02.sh.g55N ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't02.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't02.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t02.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't02.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t02.sh.g55N + rm -rf /tmp/32-bit/coreutils-8.24/gt-t02.sh.g55N + exit 77 SKIP tests/factor/t02.sh (exit status: 77) SKIP: tests/factor/t03 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t03.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t03.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t03.sh.UcBi +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t03.sh.UcBi ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t03.sh.UcBi ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 03.sh.UcBi' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t03.sh.UcBi +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t03.sh.UcBi ++ cd /tmp/32-bit/coreutils-8.24/gt-t03.sh.UcBi ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't03.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't03.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t03.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't03.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t03.sh.UcBi + rm -rf /tmp/32-bit/coreutils-8.24/gt-t03.sh.UcBi + exit 77 SKIP tests/factor/t03.sh (exit status: 77) SKIP: tests/factor/t04 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t04.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t04.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t04.sh.u1VU +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t04.sh.u1VU ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t04.sh.u1VU ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 04.sh.u1VU' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t04.sh.u1VU +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t04.sh.u1VU ++ cd /tmp/32-bit/coreutils-8.24/gt-t04.sh.u1VU ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't04.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't04.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t04.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't04.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t04.sh.u1VU + rm -rf /tmp/32-bit/coreutils-8.24/gt-t04.sh.u1VU + exit 77 SKIP tests/factor/t04.sh (exit status: 77) SKIP: tests/factor/t05 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t05.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t05.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t05.sh.zPsQ +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t05.sh.zPsQ ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t05.sh.zPsQ ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 05.sh.zPsQ' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t05.sh.zPsQ +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t05.sh.zPsQ ++ cd /tmp/32-bit/coreutils-8.24/gt-t05.sh.zPsQ ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't05.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't05.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t05.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't05.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t05.sh.zPsQ + rm -rf /tmp/32-bit/coreutils-8.24/gt-t05.sh.zPsQ + exit 77 SKIP tests/factor/t05.sh (exit status: 77) SKIP: tests/factor/t06 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t06.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t06.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t06.sh.cHMD +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t06.sh.cHMD ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t06.sh.cHMD ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 06.sh.cHMD' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t06.sh.cHMD +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t06.sh.cHMD ++ cd /tmp/32-bit/coreutils-8.24/gt-t06.sh.cHMD ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't06.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't06.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t06.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't06.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t06.sh.cHMD + rm -rf /tmp/32-bit/coreutils-8.24/gt-t06.sh.cHMD + exit 77 SKIP tests/factor/t06.sh (exit status: 77) SKIP: tests/factor/t07 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t07.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t07.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t07.sh.WXBM +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t07.sh.WXBM ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t07.sh.WXBM ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 07.sh.WXBM' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t07.sh.WXBM +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t07.sh.WXBM ++ cd /tmp/32-bit/coreutils-8.24/gt-t07.sh.WXBM ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't07.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't07.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t07.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't07.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t07.sh.WXBM + rm -rf /tmp/32-bit/coreutils-8.24/gt-t07.sh.WXBM + exit 77 SKIP tests/factor/t07.sh (exit status: 77) SKIP: tests/factor/t08 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t08.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t08.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t08.sh.kEwa +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t08.sh.kEwa ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t08.sh.kEwa ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 08.sh.kEwa' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t08.sh.kEwa +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t08.sh.kEwa ++ cd /tmp/32-bit/coreutils-8.24/gt-t08.sh.kEwa ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't08.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't08.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t08.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't08.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t08.sh.kEwa + rm -rf /tmp/32-bit/coreutils-8.24/gt-t08.sh.kEwa + exit 77 SKIP tests/factor/t08.sh (exit status: 77) SKIP: tests/factor/t09 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t09.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t09.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t09.sh.8Wtv +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t09.sh.8Wtv ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t09.sh.8Wtv ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 09.sh.8Wtv' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t09.sh.8Wtv +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t09.sh.8Wtv ++ cd /tmp/32-bit/coreutils-8.24/gt-t09.sh.8Wtv ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't09.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't09.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t09.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't09.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t09.sh.8Wtv + rm -rf /tmp/32-bit/coreutils-8.24/gt-t09.sh.8Wtv + exit 77 SKIP tests/factor/t09.sh (exit status: 77) SKIP: tests/factor/t10 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t10.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t10.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t10.sh.EvCk +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t10.sh.EvCk ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t10.sh.EvCk ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 10.sh.EvCk' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t10.sh.EvCk +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t10.sh.EvCk ++ cd /tmp/32-bit/coreutils-8.24/gt-t10.sh.EvCk ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't10.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't10.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t10.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't10.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t10.sh.EvCk + rm -rf /tmp/32-bit/coreutils-8.24/gt-t10.sh.EvCk + exit 77 SKIP tests/factor/t10.sh (exit status: 77) SKIP: tests/factor/t11 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t11.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t11.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t11.sh.3lyk +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t11.sh.3lyk ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t11.sh.3lyk ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 11.sh.3lyk' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t11.sh.3lyk +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t11.sh.3lyk ++ cd /tmp/32-bit/coreutils-8.24/gt-t11.sh.3lyk ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't11.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't11.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t11.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't11.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t11.sh.3lyk + rm -rf /tmp/32-bit/coreutils-8.24/gt-t11.sh.3lyk + exit 77 SKIP tests/factor/t11.sh (exit status: 77) SKIP: tests/factor/t12 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t12.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t12.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t12.sh.sw4W +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t12.sh.sw4W ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t12.sh.sw4W ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 12.sh.sw4W' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t12.sh.sw4W +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t12.sh.sw4W ++ cd /tmp/32-bit/coreutils-8.24/gt-t12.sh.sw4W ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't12.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't12.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t12.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't12.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t12.sh.sw4W + rm -rf /tmp/32-bit/coreutils-8.24/gt-t12.sh.sw4W + exit 77 SKIP tests/factor/t12.sh (exit status: 77) SKIP: tests/factor/t13 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t13.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t13.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t13.sh.wR7M +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t13.sh.wR7M ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t13.sh.wR7M ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 13.sh.wR7M' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t13.sh.wR7M +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t13.sh.wR7M ++ cd /tmp/32-bit/coreutils-8.24/gt-t13.sh.wR7M ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't13.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't13.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t13.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't13.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t13.sh.wR7M + rm -rf /tmp/32-bit/coreutils-8.24/gt-t13.sh.wR7M + exit 77 SKIP tests/factor/t13.sh (exit status: 77) SKIP: tests/factor/t14 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t14.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t14.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t14.sh.YcSU +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t14.sh.YcSU ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t14.sh.YcSU ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 14.sh.Yc-U' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t14.sh.YcSU +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t14.sh.YcSU ++ cd /tmp/32-bit/coreutils-8.24/gt-t14.sh.YcSU ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't14.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't14.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t14.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't14.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t14.sh.YcSU + rm -rf /tmp/32-bit/coreutils-8.24/gt-t14.sh.YcSU + exit 77 SKIP tests/factor/t14.sh (exit status: 77) SKIP: tests/factor/t15 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t15.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t15.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t15.sh.x2om +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t15.sh.x2om ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t15.sh.x2om ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 15.sh.x2om' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t15.sh.x2om +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t15.sh.x2om ++ cd /tmp/32-bit/coreutils-8.24/gt-t15.sh.x2om ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't15.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't15.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t15.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't15.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t15.sh.x2om + rm -rf /tmp/32-bit/coreutils-8.24/gt-t15.sh.x2om + exit 77 SKIP tests/factor/t15.sh (exit status: 77) SKIP: tests/factor/t16 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t16.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t16.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t16.sh.Yx6H +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t16.sh.Yx6H ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t16.sh.Yx6H ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 16.sh.Yx6H' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t16.sh.Yx6H +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t16.sh.Yx6H ++ cd /tmp/32-bit/coreutils-8.24/gt-t16.sh.Yx6H ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't16.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't16.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t16.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't16.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t16.sh.Yx6H + rm -rf /tmp/32-bit/coreutils-8.24/gt-t16.sh.Yx6H + exit 77 SKIP tests/factor/t16.sh (exit status: 77) SKIP: tests/factor/t17 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t17.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t17.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t17.sh.2knf +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t17.sh.2knf ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t17.sh.2knf ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 17.sh.2knf' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t17.sh.2knf +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t17.sh.2knf ++ cd /tmp/32-bit/coreutils-8.24/gt-t17.sh.2knf ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't17.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't17.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t17.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't17.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t17.sh.2knf + rm -rf /tmp/32-bit/coreutils-8.24/gt-t17.sh.2knf + exit 77 SKIP tests/factor/t17.sh (exit status: 77) SKIP: tests/factor/t18 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t18.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t18.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t18.sh.FDCY +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t18.sh.FDCY ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t18.sh.FDCY ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 18.sh.FDCY' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t18.sh.FDCY +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t18.sh.FDCY ++ cd /tmp/32-bit/coreutils-8.24/gt-t18.sh.FDCY ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't18.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't18.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t18.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't18.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t18.sh.FDCY + rm -rf /tmp/32-bit/coreutils-8.24/gt-t18.sh.FDCY + exit 77 SKIP tests/factor/t18.sh (exit status: 77) SKIP: tests/factor/t19 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t19.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t19.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t19.sh.8unu +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t19.sh.8unu ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t19.sh.8unu ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 19.sh.8unu' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t19.sh.8unu +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t19.sh.8unu ++ cd /tmp/32-bit/coreutils-8.24/gt-t19.sh.8unu ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't19.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't19.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t19.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't19.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t19.sh.8unu + rm -rf /tmp/32-bit/coreutils-8.24/gt-t19.sh.8unu + exit 77 SKIP tests/factor/t19.sh (exit status: 77) SKIP: tests/factor/t20 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t20.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t20.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t20.sh.xRvn +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t20.sh.xRvn ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t20.sh.xRvn ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 20.sh.xRvn' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t20.sh.xRvn +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t20.sh.xRvn ++ cd /tmp/32-bit/coreutils-8.24/gt-t20.sh.xRvn ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't20.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't20.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t20.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't20.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t20.sh.xRvn + rm -rf /tmp/32-bit/coreutils-8.24/gt-t20.sh.xRvn + exit 77 SKIP tests/factor/t20.sh (exit status: 77) SKIP: tests/factor/t21 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t21.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t21.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t21.sh.1vq4 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t21.sh.1vq4 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t21.sh.1vq4 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 21.sh.1vq4' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t21.sh.1vq4 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t21.sh.1vq4 ++ cd /tmp/32-bit/coreutils-8.24/gt-t21.sh.1vq4 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't21.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't21.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t21.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't21.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t21.sh.1vq4 + rm -rf /tmp/32-bit/coreutils-8.24/gt-t21.sh.1vq4 + exit 77 SKIP tests/factor/t21.sh (exit status: 77) SKIP: tests/factor/t22 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t22.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t22.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t22.sh.9wZz +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t22.sh.9wZz ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t22.sh.9wZz ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 22.sh.9wZz' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t22.sh.9wZz +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t22.sh.9wZz ++ cd /tmp/32-bit/coreutils-8.24/gt-t22.sh.9wZz ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't22.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't22.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t22.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't22.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t22.sh.9wZz + rm -rf /tmp/32-bit/coreutils-8.24/gt-t22.sh.9wZz + exit 77 SKIP tests/factor/t22.sh (exit status: 77) SKIP: tests/factor/t23 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t23.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t23.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t23.sh.89X3 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t23.sh.89X3 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t23.sh.89X3 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 23.sh.89X3' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t23.sh.89X3 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t23.sh.89X3 ++ cd /tmp/32-bit/coreutils-8.24/gt-t23.sh.89X3 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't23.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't23.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t23.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't23.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t23.sh.89X3 + rm -rf /tmp/32-bit/coreutils-8.24/gt-t23.sh.89X3 + exit 77 SKIP tests/factor/t23.sh (exit status: 77) SKIP: tests/factor/t24 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t24.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t24.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t24.sh.9wAD +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t24.sh.9wAD ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t24.sh.9wAD ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:41 /tmp/32-bit/coreutils-8.24/gt-t= 24.sh.9wAD' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t24.sh.9wAD +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t24.sh.9wAD ++ cd /tmp/32-bit/coreutils-8.24/gt-t24.sh.9wAD ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't24.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't24.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t24.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't24.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t24.sh.9wAD + rm -rf /tmp/32-bit/coreutils-8.24/gt-t24.sh.9wAD + exit 77 SKIP tests/factor/t24.sh (exit status: 77) SKIP: tests/factor/t25 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t25.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t25.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t25.sh.XMhL +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t25.sh.XMhL ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t25.sh.XMhL ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:42 /tmp/32-bit/coreutils-8.24/gt-t= 25.sh.XMhL' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t25.sh.XMhL +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t25.sh.XMhL ++ cd /tmp/32-bit/coreutils-8.24/gt-t25.sh.XMhL ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't25.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't25.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t25.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't25.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t25.sh.XMhL + rm -rf /tmp/32-bit/coreutils-8.24/gt-t25.sh.XMhL + exit 77 SKIP tests/factor/t25.sh (exit status: 77) SKIP: tests/factor/t26 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t26.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t26.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t26.sh.JxhX +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t26.sh.JxhX ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t26.sh.JxhX ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:42 /tmp/32-bit/coreutils-8.24/gt-t= 26.sh.JxhX' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t26.sh.JxhX +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t26.sh.JxhX ++ cd /tmp/32-bit/coreutils-8.24/gt-t26.sh.JxhX ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't26.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't26.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t26.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't26.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t26.sh.JxhX + rm -rf /tmp/32-bit/coreutils-8.24/gt-t26.sh.JxhX + exit 77 SKIP tests/factor/t26.sh (exit status: 77) SKIP: tests/factor/t27 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t27.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t27.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t27.sh.tsga +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t27.sh.tsga ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t27.sh.tsga ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:42 /tmp/32-bit/coreutils-8.24/gt-t= 27.sh.tsga' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t27.sh.tsga +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t27.sh.tsga ++ cd /tmp/32-bit/coreutils-8.24/gt-t27.sh.tsga ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't27.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't27.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t27.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't27.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t27.sh.tsga + rm -rf /tmp/32-bit/coreutils-8.24/gt-t27.sh.tsga + exit 77 SKIP tests/factor/t27.sh (exit status: 77) SKIP: tests/factor/t28 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t28.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t28.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t28.sh.p8Gb +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t28.sh.p8Gb ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t28.sh.p8Gb ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:42 /tmp/32-bit/coreutils-8.24/gt-t= 28.sh.p8Gb' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t28.sh.p8Gb +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t28.sh.p8Gb ++ cd /tmp/32-bit/coreutils-8.24/gt-t28.sh.p8Gb ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't28.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't28.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t28.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't28.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t28.sh.p8Gb + rm -rf /tmp/32-bit/coreutils-8.24/gt-t28.sh.p8Gb + exit 77 SKIP tests/factor/t28.sh (exit status: 77) SKIP: tests/factor/t29 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t29.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t29.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t29.sh.G5Lg +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t29.sh.G5Lg ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t29.sh.G5Lg ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:42 /tmp/32-bit/coreutils-8.24/gt-t= 29.sh.G5Lg' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t29.sh.G5Lg +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t29.sh.G5Lg ++ cd /tmp/32-bit/coreutils-8.24/gt-t29.sh.G5Lg ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't29.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't29.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t29.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't29.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t29.sh.G5Lg + rm -rf /tmp/32-bit/coreutils-8.24/gt-t29.sh.G5Lg + exit 77 SKIP tests/factor/t29.sh (exit status: 77) SKIP: tests/factor/t30 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t30.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t30.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t30.sh.k4f5 +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t30.sh.k4f5 ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t30.sh.k4f5 ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:42 /tmp/32-bit/coreutils-8.24/gt-t= 30.sh.k4f5' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t30.sh.k4f5 +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t30.sh.k4f5 ++ cd /tmp/32-bit/coreutils-8.24/gt-t30.sh.k4f5 ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't30.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't30.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t30.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't30.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t30.sh.k4f5 + rm -rf /tmp/32-bit/coreutils-8.24/gt-t30.sh.k4f5 + exit 77 SKIP tests/factor/t30.sh (exit status: 77) SKIP: tests/factor/t31 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t31.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t31.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t31.sh.B4at +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t31.sh.B4at ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t31.sh.B4at ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:42 /tmp/32-bit/coreutils-8.24/gt-t= 31.sh.B4at' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t31.sh.B4at +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t31.sh.B4at ++ cd /tmp/32-bit/coreutils-8.24/gt-t31.sh.B4at ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't31.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't31.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t31.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't31.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t31.sh.B4at + rm -rf /tmp/32-bit/coreutils-8.24/gt-t31.sh.B4at + exit 77 SKIP tests/factor/t31.sh (exit status: 77) SKIP: tests/factor/t32 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t32.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t32.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t32.sh.hwVq +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t32.sh.hwVq ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t32.sh.hwVq ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:42 /tmp/32-bit/coreutils-8.24/gt-t= 32.sh.hwVq' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t32.sh.hwVq +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t32.sh.hwVq ++ cd /tmp/32-bit/coreutils-8.24/gt-t32.sh.hwVq ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't32.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't32.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t32.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't32.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t32.sh.hwVq + rm -rf /tmp/32-bit/coreutils-8.24/gt-t32.sh.hwVq + exit 77 SKIP tests/factor/t32.sh (exit status: 77) SKIP: tests/factor/t33 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t33.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t33.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t33.sh.HHIO +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t33.sh.HHIO ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t33.sh.HHIO ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:42 /tmp/32-bit/coreutils-8.24/gt-t= 33.sh.HHIO' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t33.sh.HHIO +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t33.sh.HHIO ++ cd /tmp/32-bit/coreutils-8.24/gt-t33.sh.HHIO ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't33.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't33.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t33.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't33.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t33.sh.HHIO + rm -rf /tmp/32-bit/coreutils-8.24/gt-t33.sh.HHIO + exit 77 SKIP tests/factor/t33.sh (exit status: 77) SKIP: tests/factor/t34 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t34.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t34.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t34.sh.si5x +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t34.sh.si5x ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t34.sh.si5x ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:42 /tmp/32-bit/coreutils-8.24/gt-t= 34.sh.si5x' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t34.sh.si5x +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t34.sh.si5x ++ cd /tmp/32-bit/coreutils-8.24/gt-t34.sh.si5x ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't34.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't34.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t34.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't34.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t34.sh.si5x + rm -rf /tmp/32-bit/coreutils-8.24/gt-t34.sh.si5x + exit 77 SKIP tests/factor/t34.sh (exit status: 77) SKIP: tests/factor/t35 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t35.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t35.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t35.sh.cN8P +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t35.sh.cN8P ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t35.sh.cN8P ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:42 /tmp/32-bit/coreutils-8.24/gt-t= 35.sh.cN8P' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t35.sh.cN8P +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t35.sh.cN8P ++ cd /tmp/32-bit/coreutils-8.24/gt-t35.sh.cN8P ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't35.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't35.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t35.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't35.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t35.sh.cN8P + rm -rf /tmp/32-bit/coreutils-8.24/gt-t35.sh.cN8P + exit 77 SKIP tests/factor/t35.sh (exit status: 77) SKIP: tests/factor/t36 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-t36.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-t36.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-t36.sh.j0Iw +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-t36.sh.j0Iw ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-t36.sh.j0Iw ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 18 02:42 /tmp/32-bit/coreutils-8.24/gt-t= 36.sh.j0Iw' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-t36.sh.j0Iw +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-t36.sh.j0Iw ++ cd /tmp/32-bit/coreutils-8.24/gt-t36.sh.j0Iw ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/bin:/usr/bin:/usr/ccs/bin:/usr/proc/bin:/usr/sbin:/sb= in:/usr/dt/bin:/usr/openwin/bin:/usr/X11/bin:/pkgs/32-bit/sbin:/pkgs/32-b= it/bin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + very_expensive_ + test '' '!=3D' yes + skip_ '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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + warn_ 't36.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + case $IFS in + printf '%s\n' 't36.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' t36.sh: skipped 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive + test 9 =3D 2 + printf '%s\n' 't36.sh: skipped test: very expensive: disabled by defaul= t 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=3Dyes make check or use the shortcut target of the toplevel Makefile, make check-very-expensive ' + sed 1q + Exit 77 + set +e + exit 77 + exit 77 + remove_tmp_ + __st=3D77 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-t36.sh.j0Iw + rm -rf /tmp/32-bit/coreutils-8.24/gt-t36.sh.j0Iw + exit 77 SKIP tests/factor/t36.sh (exit status: 77) --------------020004060108090304020300--
bug-coreutils@HIDDEN
:bug#21061
; Package coreutils
.
Full text available.Received: (at 21061) by debbugs.gnu.org; 17 Jul 2015 08:56:18 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Fri Jul 17 04:56:18 2015 Received: from localhost ([127.0.0.1]:51693 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1ZG1RK-0008Bo-2a for submit <at> debbugs.gnu.org; Fri, 17 Jul 2015 04:56:18 -0400 Received: from mail2.vodafone.ie ([213.233.128.44]:15662) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from <P@HIDDEN>) id 1ZG1RH-0008BW-Tu for 21061 <at> debbugs.gnu.org; Fri, 17 Jul 2015 04:56:16 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: ArQFADPCqFVtTtoP/2dsb2JhbABbgkFSHzUtPIJVuwCFewKBSEwBAQEBAQGBC4QkAQEEMgFWCw0BCgkWBAsJAwIBAgFFBgEMCAEBiC4BvyyQPAEri0yFDYQrAQSUTYRvkA6FRopdJoI+gT89MYJLAQEB Received: from unknown (HELO localhost.localdomain) ([109.78.218.15]) by mail2.vodafone.ie with ESMTP; 17 Jul 2015 09:56:08 +0100 Message-ID: <55A8C327.7040304@HIDDEN> Date: Fri, 17 Jul 2015 09:56:07 +0100 From: =?windows-1252?Q?P=E1draig_Brady?= <P@HIDDEN> User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: Peter Bray <pdb_ml@HIDDEN>, 21061 <at> debbugs.gnu.org Subject: Re: bug#21061: coreutils-8.24 - Partially reproducible failures of tests/misc/timeout-parameters.sh References: <55A6266C.7030009@HIDDEN> <55A63663.7020604@HIDDEN> <55A74AAA.1090401@HIDDEN> <55A763B5.2020901@HIDDEN> <55A874C2.1090901@HIDDEN> In-Reply-To: <55A874C2.1090901@HIDDEN> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 21061 X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: 0.0 (/) On 17/07/15 04:21, Peter Bray wrote: > On 16/07/15 05:56 PM, Pádraig Brady wrote: >> for i in $(seq 20); do time gtimeout 2.34e+5d sleep inf; done > > gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.015 total > gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.009 total > gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total > gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total > gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total > gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total > gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total > gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total > gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total > gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total > gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total > gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total > gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total > gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total > gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total > gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total > gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total > gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total > gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total > gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total > > Sorry, I didn't make that clear, when the command works (like it does > mostly on 64-bit on 64-bit systems, as I poorly conveyed in the last > post) it never returns and it returns "immediately" on the failure, > which (as the above shows) was 20 out of 20 test cases. Is there ever a failure with non maximal values? For example is there ever an early return with: while true; do time gtimeout 0.1 sleep inf; test $? != 124 && break; done I'm guessing not, and the kernel is having rounding issues? Do you still get the problem if you change the clock in timeout.c from CLOCK_REALTIME to say CLOCK_MONOTONIC? cheers, Pádraig.
bug-coreutils@HIDDEN
:bug#21061
; Package coreutils
.
Full text available.Received: (at 21061) by debbugs.gnu.org; 17 Jul 2015 03:22:03 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Thu Jul 16 23:22:03 2015 Received: from localhost ([127.0.0.1]:51580 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1ZFwDq-00008G-8i for submit <at> debbugs.gnu.org; Thu, 16 Jul 2015 23:22:02 -0400 Received: from nm35-vm0.bullet.mail.bf1.yahoo.com ([72.30.238.72]:57888) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from <pdb_ml@HIDDEN>) id 1ZFwDn-00007r-Gv for 21061 <at> debbugs.gnu.org; Thu, 16 Jul 2015 23:22:00 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com.au; s=s2048; t=1437103313; bh=TV7W5hk+HRyGkrdeoI96uSOvbI/pCLEbJqUDR4n4ksE=; h=Date:From:To:Subject:References:In-Reply-To:From:Subject; b=oUH3kMGZfrSemS9+cZGJM0gbH8lzbjTs0YaS7LUW2AFY2Vb4rRJhQme+y/TeMXP9z3qoLGmiqqOBjhSqEHd1G50Mrspu9pKVSld0GFvlJx+wwKr7CZ2BIJHAk/wx40eiD0+79KXY9OuuaiJLycVoCf0+JSx2ienT8/mMwBJEJk6eHP0JVS7tR0OmkbGhHgLrbPlttiHlTyVoIyp4NQq/2BdRMnvFAsa090jo0i/mxhrB2qaDyCXRbBLUV3qNcwlla6OzCBPOnL8g/3WNdAqQr3H9trGMW6V4uBn5lJC13LdNb/H/Af8lDtOHAbD+Xt0XVS0Aicx408tTDFgAzLC3IQ== Received: from [98.139.215.143] by nm35.bullet.mail.bf1.yahoo.com with NNFMP; 17 Jul 2015 03:21:53 -0000 Received: from [68.142.230.74] by tm14.bullet.mail.bf1.yahoo.com with NNFMP; 17 Jul 2015 03:21:53 -0000 Received: from [127.0.0.1] by smtp231.mail.bf1.yahoo.com with NNFMP; 17 Jul 2015 03:21:53 -0000 X-Yahoo-Newman-Id: 191528.54337.bm@HIDDEN X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: _ooBjnMVM1moi6vjxZMKZX5Xb.fhMDZbgiJjJpH2ct.dcep yhV0C74cyp1vKB2m.AxXLwnZCQdMLnFJDy4tEy9OWf1jV4yiYY6y3H0JNG9y ozL8tns3SD18r7jg5fLvAtpVszeGtGc5PeaQWOu7FMX3plThuW3B20HupK1G xy8IARq6xw6bCqUuogkRlczLIpZKkKP6GV27yaC3j6PG7DmdcYD9TFbA1sFv uIXdLSqk6Nb_db01zZkxn3LJJGwXPWT_42ctNBz05J8xF1qrWs.JVXKJ0G0Q ONThgmndWLETsUOtzDbb.ZKR6F9wy14nZfjXEF3bTKayQQRU3ugHnM3mkIjy N1rhOLEhVkrqF5Eu3I8nYVuEvi84zZSnRhj28tzdqUhu3o.dMPo1iOMdSTvF PMf5cZ6hlVR12.4ZUlw8fM7Fb5oAK50JK966fKy4kC6hxMuLX5FrhLeY8PG2 VQliZ3xHwrNfpgrsKb03Z498aZIaDunideU2Kd17CGu8x2hLsctSC6MaXG.I OYFEmlrNx7WK4DbhDNcpLwHFigAyB X-Yahoo-SMTP: wy_7AdSswBBaijFlmVnVzTL.0g-- Message-ID: <55A874C2.1090901@HIDDEN> Date: Fri, 17 Jul 2015 13:21:38 +1000 From: Peter Bray <pdb_ml@HIDDEN> User-Agent: Mozilla/5.0 (X11; SunOS i86pc; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: =?windows-1252?Q?P=E1draig_Brady?= <P@HIDDEN>, 21061 <at> debbugs.gnu.org Subject: Re: bug#21061: coreutils-8.24 - Partially reproducible failures of tests/misc/timeout-parameters.sh References: <55A6266C.7030009@HIDDEN> <55A63663.7020604@HIDDEN> <55A74AAA.1090401@HIDDEN> <55A763B5.2020901@HIDDEN> In-Reply-To: <55A763B5.2020901@HIDDEN> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 21061 X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -0.7 (/) On 16/07/15 05:56 PM, Pádraig Brady wrote: > for i in $(seq 20); do time gtimeout 2.34e+5d sleep inf; done gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.015 total gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.009 total gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total gtimeout 2.34e+5d gsleep inf 0.00s user 0.00s system 0% cpu 0.010 total Sorry, I didn't make that clear, when the command works (like it does mostly on 64-bit on 64-bit systems, as I poorly conveyed in the last post) it never returns and it returns "immediately" on the failure, which (as the above shows) was 20 out of 20 test cases. > This coredump occurs even on 64-bit systems where the gtimeout command > waits for the sleep command (to finish - which it won't). Sorry for the confusion, Peter
bug-coreutils@HIDDEN
:bug#21061
; Package coreutils
.
Full text available.Received: (at 21061) by debbugs.gnu.org; 16 Jul 2015 07:56:48 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Thu Jul 16 03:56:48 2015 Received: from localhost ([127.0.0.1]:50593 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1ZFe2B-0008K7-Bx for submit <at> debbugs.gnu.org; Thu, 16 Jul 2015 03:56:47 -0400 Received: from mail2.vodafone.ie ([213.233.128.44]:15861) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from <P@HIDDEN>) id 1ZFe29-0008Jt-5M for 21061 <at> debbugs.gnu.org; Thu, 16 Jul 2015 03:56:46 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgMGAGZip1VtT1Fn/2dsb2JhbABbgkFSHzVpgla6Z4V7AoFBTAEBAQEBAYELhCQBAQQyAVYLDQEKCRYECwkDAgECAUUGAQwIAQGILgG/CZA/AQsBH4tMhDtGDIQrAQSURoRuiG2HHYgIhDaDYSaCPoE/PTGCSwEBAQ Received: from unknown (HELO localhost.localdomain) ([109.79.81.103]) by mail2.vodafone.ie with ESMTP; 16 Jul 2015 08:56:38 +0100 Message-ID: <55A763B5.2020901@HIDDEN> Date: Thu, 16 Jul 2015 08:56:37 +0100 From: =?windows-1252?Q?P=E1draig_Brady?= <P@HIDDEN> User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: Peter Bray <pdb_ml@HIDDEN>, 21061 <at> debbugs.gnu.org Subject: Re: bug#21061: coreutils-8.24 - Partially reproducible failures of tests/misc/timeout-parameters.sh References: <55A6266C.7030009@HIDDEN> <55A63663.7020604@HIDDEN> <55A74AAA.1090401@HIDDEN> In-Reply-To: <55A74AAA.1090401@HIDDEN> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 21061 X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: 0.0 (/) On 16/07/15 07:09, Peter Bray wrote: > On 15/07/15 08:30 PM, Pádraig Brady wrote: >> On 15/07/15 10:22, Peter Bray wrote: >>> Greetings, >>> >>> N.B. This bug report is for reference only, and documents only a >>> partially reproducible check failure. No Action Requested. >>> >>> On Solaris 10 (Update 8 and Update 11) and Solaris 11.2 X86 VMs, and >>> one Solaris 10 Update 10 (Non-VM) system, I see random "gmake check" >>> failures for "tests/misc/timeout-parameters.sh". >>> >>> Running the test by itself (with the command line below) on the same >>> VMs / real system will sometimes succeed and sometimes fail. >>> >>> gmake check TESTS=tests/misc/timeout-parameters.sh VERBOSE=yes SUBDIRS=. >>> >>> Looking through the attached "failure.log" file, I extracted the >>> following command line test, which may exhibit the failure without all >>> the make(1) and test infrastructure code: >>> >>> failures=0 >>> for i in `./src/seq 1 100` >>> do >>> ./src/timeout 2.34e+5d sleep 0 \ >>> || { echo fail; failures=`expr ${failures} + 1` } >>> done >>> echo "Total Failures: ${failures}" >>> >>> On a real hardware system (Xeon E3-1245v2) with a 64-bit kernel, >>> failures are very rare (only 1 test harness failure seen, no failures >>> of the sample code above even with 1..1000 runs). >>> >>> On virtual machines (also using Xeon E3-1245v2 running VMware ESXi >>> 5.5d (latest patches) - two identical ESXi systems running similarly >>> configured VMs), test harness failures and failures in the above >>> command line check are rare for the 64-bit Solaris kernels. >>> >>> Failures on Solaris 10 32-bit kernels (on both of these ESXi servers), >>> are easily reproduced and vary between 5% (common) and 45% (rare). >> >> Interesting. I'm not reproducing that in 5000 loops in the above test script >> on 32 bit baremetal solaris 10 update 10. >> >> I presume the large timeout value is causing early timer firing >> on your systems for some reason? What does this return? >> >> time src/timeout 2.34e+5d sleep inf >> >> Note on 32 bit, the 234000 days will be truncated to a itimerspec of: >> { {0,0}, {2147483647,999999999} } >> >> A wild guess is that perhaps ntp is adjusting the system time >> which causes the above timer to be adjusted in the kernel >> and roll over to 0, thus triggering early? >> >> thanks, >> Pádraig. >> > > Pádraig, > > The additional information you requested, but unfortunately I have yet > to install gdb(1), so I using system tools for this response. The > installation of coreutils-8.24 has been completed on all compile > server VMs, so the commands now have a 'g' prefix. > > % gtimeout 2.34e+5d gsleep inf > > No output and exit status of 124 [$?=124] (32-bit kernel S10U11 / GCC 4.9.3) I was looking to get an indication of how long it waits (I have a fair idea about what is sent to timer_settime(). To that end, the command above has a leading 'time' to return how long it actually took. I.E. something like this would be informative: for i in $(seq 20); do time gtimeout 2.34e+5d sleep inf; done thanks, Pádraig.
bug-coreutils@HIDDEN
:bug#21061
; Package coreutils
.
Full text available.Received: (at 21061) by debbugs.gnu.org; 16 Jul 2015 06:10:07 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Thu Jul 16 02:10:07 2015 Received: from localhost ([127.0.0.1]:50559 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1ZFcMq-0005d4-Ij for submit <at> debbugs.gnu.org; Thu, 16 Jul 2015 02:10:07 -0400 Received: from nm1-vm1.bullet.mail.bf1.yahoo.com ([98.139.213.163]:53297) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from <pdb_ml@HIDDEN>) id 1ZFcMl-0005cj-JA for 21061 <at> debbugs.gnu.org; Thu, 16 Jul 2015 02:09:58 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com.au; s=s2048; t=1437026990; bh=fZWio+3zf7A9gAHnlsC6XxjxTFReqf4JKujG6PTSwCA=; h=Date:From:To:Subject:References:In-Reply-To:From:Subject; b=QNwHLbu+ay65aKIlmjhpdZRlIsrjsEopKGj0IrruO7V1TchWUDiY/ra4a70TMAYfnCfAzib1VR5Kx7//oxo7Wp+Bz/YwMmNV5UCVCvtT9aALtbaqoQqesE3aZONqxNeuPMBP2iVA/vsft12L8TnF2vgeSIR3m1MBMlEM8PXAcOExVm/JZTAEhVJ6BesyS1HkKOrm66xeexwiJSbly53Swy8bXvAm90DYuMqCivcPSk6rjWB6IuLN40FCOHnA2Ps0hGQSOa9C+YqsNUZ1w3nMv9f2cZU+SOuvz4WjgAfnxjrYdOschilg3LBpGy7gHqj1oUjqmg7bZNas7/OntXvRHA== Received: from [98.139.215.141] by nm1.bullet.mail.bf1.yahoo.com with NNFMP; 16 Jul 2015 06:09:50 -0000 Received: from [98.139.211.195] by tm12.bullet.mail.bf1.yahoo.com with NNFMP; 16 Jul 2015 06:09:50 -0000 Received: from [127.0.0.1] by smtp204.mail.bf1.yahoo.com with NNFMP; 16 Jul 2015 06:09:50 -0000 X-Yahoo-Newman-Id: 60419.26026.bm@HIDDEN X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: mT8SgH8VM1lBAqBsNhZpM8uaQLnf0lyONRwoVI2vNdUQFND nI.ueejH9AtLw4ch67v6JeElZhT2C_Gp4sd46U.H76jHiwTeqOBh1P1jvDC0 So_jUjpa17KNs_u1qKdZxsNINjXnjF2KbC1uMv1t8neGP8HXyeLZwjKh6TvS baI4oyPL6rIFP6ohGGVqBz.0ILOVD3DpHri_F0_SCU13NiIU7UIps1mhcDbg FXQzJnTks.binAz.6yUnbK1024VZygwn9.xRa5R3spdXr2dms_aKFgmbxOsa Ov1_xrLWnEQmF.XY2j9PoZO3uDguVC463a9FhVK22F5u0FAWLQHV01WxAjcK QQ0WD3mKCPM68.dZHWBholrK9nnyUtxLMhkO_MiGTXfgmDZ4z_SXLMgYilL7 1znNZiii30ByUo9TYRNCRFAF20fEcn6Tvk2fEcwtHVkGFMqyvf3d8xxxSPjK CEa.WMj6W6s5TgOgBGIG7QqKBI.qt6mHUKR4oF5XSkpGKsYm6qTsBOOyuz_G wlRFwtcYMKQSlA0AVdyiycox5rEwp X-Yahoo-SMTP: wy_7AdSswBBaijFlmVnVzTL.0g-- Message-ID: <55A74AAA.1090401@HIDDEN> Date: Thu, 16 Jul 2015 16:09:46 +1000 From: Peter Bray <pdb_ml@HIDDEN> User-Agent: Mozilla/5.0 (X11; SunOS i86pc; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: =?windows-1252?Q?P=E1draig_Brady?= <P@HIDDEN>, 21061 <at> debbugs.gnu.org Subject: Re: bug#21061: coreutils-8.24 - Partially reproducible failures of tests/misc/timeout-parameters.sh References: <55A6266C.7030009@HIDDEN> <55A63663.7020604@HIDDEN> In-Reply-To: <55A63663.7020604@HIDDEN> Content-Type: multipart/mixed; boundary="------------050402010108060503040606" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 21061 X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: 0.0 (/) This is a multi-part message in MIME format. --------------050402010108060503040606 Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 8bit On 15/07/15 08:30 PM, Pádraig Brady wrote: > On 15/07/15 10:22, Peter Bray wrote: >> Greetings, >> >> N.B. This bug report is for reference only, and documents only a >> partially reproducible check failure. No Action Requested. >> >> On Solaris 10 (Update 8 and Update 11) and Solaris 11.2 X86 VMs, and >> one Solaris 10 Update 10 (Non-VM) system, I see random "gmake check" >> failures for "tests/misc/timeout-parameters.sh". >> >> Running the test by itself (with the command line below) on the same >> VMs / real system will sometimes succeed and sometimes fail. >> >> gmake check TESTS=tests/misc/timeout-parameters.sh VERBOSE=yes SUBDIRS=. >> >> Looking through the attached "failure.log" file, I extracted the >> following command line test, which may exhibit the failure without all >> the make(1) and test infrastructure code: >> >> failures=0 >> for i in `./src/seq 1 100` >> do >> ./src/timeout 2.34e+5d sleep 0 \ >> || { echo fail; failures=`expr ${failures} + 1` } >> done >> echo "Total Failures: ${failures}" >> >> On a real hardware system (Xeon E3-1245v2) with a 64-bit kernel, >> failures are very rare (only 1 test harness failure seen, no failures >> of the sample code above even with 1..1000 runs). >> >> On virtual machines (also using Xeon E3-1245v2 running VMware ESXi >> 5.5d (latest patches) - two identical ESXi systems running similarly >> configured VMs), test harness failures and failures in the above >> command line check are rare for the 64-bit Solaris kernels. >> >> Failures on Solaris 10 32-bit kernels (on both of these ESXi servers), >> are easily reproduced and vary between 5% (common) and 45% (rare). > > Interesting. I'm not reproducing that in 5000 loops in the above test script > on 32 bit baremetal solaris 10 update 10. > > I presume the large timeout value is causing early timer firing > on your systems for some reason? What does this return? > > time src/timeout 2.34e+5d sleep inf > > Note on 32 bit, the 234000 days will be truncated to a itimerspec of: > { {0,0}, {2147483647,999999999} } > > A wild guess is that perhaps ntp is adjusting the system time > which causes the above timer to be adjusted in the kernel > and roll over to 0, thus triggering early? > > thanks, > Pádraig. > Pádraig, The additional information you requested, but unfortunately I have yet to install gdb(1), so I using system tools for this response. The installation of coreutils-8.24 has been completed on all compile server VMs, so the commands now have a 'g' prefix. % gtimeout 2.34e+5d gsleep inf No output and exit status of 124 [$?=124] (32-bit kernel S10U11 / GCC 4.9.3) % truss gtimeout 2.34e+5d gsleep inf 2>&1 | tee truss.out File Attached "truss.out" (also exits with 124) Note: Adding the -v option below on a separate run, did not yield a great deal of information on the data provided to the timer*() calls. % truss -tall -v timer_create,timer_settime gtimeout 2.34e+5d gsleep inf 2>&1 timer_create(3, 0x00000000, 0x080471AC) = 0 timer_settime(0, 0, 0x080471B0, 0x00000000) = 0 Received signal #14, SIGALRM, in waitid() [caught] siginfo: SIGALRM pid=12118 uid=100 code=-3 waitid(P_PID, 12119, 0x08047130, WEXITED|WTRAPPED) Err#91 ERESTART Also captured truss -l output via: % truss -l -tall -v timer_create,timer_settime gtimeout 2.34e+5d gsleep inf \ 2>&1 | tee truss-l.out Normal apptrace show nothing of great value (does not show actual data just addresses): % apptrace gtimeout 2.34e+5d gsleep inf but it is attached as "apptrace.out". Note that the following apptrace command coredumps on each invocation: % apptrace -v timer_settime gtimeout 2.34e+5d gsleep inf -> gtimeout -> librt.so.1:int timer_settime(timer_t = 0x0, int = 0x0, const struct itimerspec * = 0x8047130, struct itimerspec * = 0x0) arg0 = (timer_t) 0x0 arg1 = (int) 0x0 arg2 = (const struct itimerspec *) 0x8047130 (struct itimerspec) { it_interval: (struct timespec) { tv_sec: (time_t) 0 tv_nsec: (long) 0 it_value: (struct timespec) { tv_sec: (time_t) 0x7fffffff tv_nsec: (long) 0x3b9ac9ff } arg3 = (struct itimerspec *) 0x0 (struct itimerspec) { it_interval: (struct timespec) { tv_sec: (time_t) apptrace: gtimeout: Segmentation Fault(Core dump) This coredump occurs even on 64-bit systems where the gtimeout command waits for the sleep command (to finish - which it won't). The timer_settime(3RT) manual page states that the last argument is permitted to be NULL, so that does not seem to be a problem. And regarding the NTP question, all compile server VMs have NTP disabled. % svcs -a | grep -i ntp disabled Jul_13 svc:/network/ntp:default disabled Jul_13 svc:/network/ntp4:default That is, NTP is disabled (since last boot) but actually disabled since installation. Though NTP is runnning on both ESXi 5.5 hosts. Regards, Peter PS: Investigating with my limited mdb(1) skills shows that its apptrace(1) coredumping not gtimeout(1). % mdb =gtimeout core > $C 08046a98 LMc9bfeea8`apptrace.so.1`print_int+0xbd(7, 0, 8046cc0) 08046bc4 LMc9bfeea8`apptrace.so.1`elt_print+0x137(c91e47b6, 2f, 0, 2, 8046cc0) 08046bf4 LMc9bfeea8`libctf.so.1`ctf_type_rvisit+0x56(c91f3930, 2f, c9b63588, 8046cc0, c91e47b6, 0) 08046c2c LMc9bfeea8`libctf.so.1`ctf_type_rvisit+0x15e(c91f3930, 30, c9b63588, 8046cc0, c91e489b, 0) 08046c64 LMc9bfeea8`libctf.so.1`ctf_type_rvisit+0x15e(c91f3930, 44, c9b63588, 8046cc0, c9ad9048, 0) 08046c8c LMc9bfeea8`libctf.so.1`ctf_type_visit+0x2c(c91f3930, 44, c9b63588, 8046cc0) 08046ce0 LMc9bfeea8`apptrace.so.1`print_value+0x127(c91f3930, 45, 0) 08046fac LMc9bfeea8`apptrace.so.1`la_i86_pltenter+0x3d1(8047030, 38, c9af06f0, c9af0e48, 8047084, c9940304) 08047000 ld.so.1`_audit_pltenter+0x11e(c9af06c0, c9bfea18, c9af0ac0, 8047030, 38, 8047084) 08047050 ld.so.1`audit_pltenter+0x98(c9bfea18, c9af0ac0, c9940308, 38, 8047084, c9940304) 080470d8 ld.so.1`elf_plt_trace+0x4d(0, 0, 8047130, 0) 08047158 settimeout+0x11d(60000000, 4212d440, 8047218, 8047218) 080471e8 main+0x2c6(8052e50, 4, 8047218) 0804720c _start+0x80(4, 80473d0, 80473d9, 80473e2, 80473e9, 0) --------------050402010108060503040606 Content-Type: text/plain; charset=ISO-8859-1; name="apptrace.out" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="apptrace.out" -> gtimeout -> libc.so.1:int atexit(int (*)() = 0xc9bcf738) <- gtimeout -> libc.so.1:atexit() -> gtimeout -> libc.so.1:int atexit(int (*)() = 0x805fb00) <- gtimeout -> libc.so.1:atexit() -> gtimeout -> libc.so.1:void __fpstart(void) <- gtimeout -> libc.so.1:__fpstart() = 0xc97b8754 -> gtimeout -> libgcc_s.so.1:__register_frame_info_bases(0x8071a7c, 0x8071b88, 0x0) ** NR -> gtimeout -> libc.so.1:strrchr(0x80473f0, 0x2f, 0x166) ** NR -> gtimeout -> libc.so.1:char * setlocale(int = 0x6, const char * = 0x8060718 "") <- gtimeout -> libc.so.1:setlocale() = 0xc975c045 -> gtimeout -> libintl.so.8:libintl_bindtextdomain(0x8060771, 0x8061238, 0x804721c) ** NR -> gtimeout -> libintl.so.8:libintl_textdomain(0x8060771, 0x8072ff0, 0x804721c) ** NR -> gtimeout -> libc.so.1:int atexit(int (*)() = 0x8053980) <- gtimeout -> libc.so.1:atexit() -> gtimeout -> libc.so.1:char * getenv(const char * = 0x80609b2 "POSIXLY_CORRECT") <- gtimeout -> libc.so.1:getenv() -> gtimeout -> libc.so.1:int * ___errno(void) <- gtimeout -> libc.so.1:___errno() = 0xc97b874c -> gtimeout -> libc.so.1:char * setlocale(int = 0x1, const char * = 0x0 <NULL>) <- gtimeout -> libc.so.1:setlocale() = 0xc975c045 -> gtimeout -> libc.so.1:char * strdup(const char * = 0xc975c045 "C") <- gtimeout -> libc.so.1:strdup() = 0x8073648 -> gtimeout -> libc.so.1:char * setlocale(int = 0x1, const char * = 0x8060832 "C") <- gtimeout -> libc.so.1:setlocale() = 0xc975c045 -> gtimeout -> libc.so.1:int * ___errno(void) <- gtimeout -> libc.so.1:___errno() = 0xc97b874c -> gtimeout -> libc.so.1:double strtod(const char * = 0x80473f9 "2.34e+5d", char ** = 0x80470cc) <- gtimeout -> libc.so.1:strtod() -> gtimeout -> libc.so.1:int * ___errno(void) <- gtimeout -> libc.so.1:___errno() = 0xc97b874c -> gtimeout -> libc.so.1:char * setlocale(int = 0x1, const char * = 0x8073648 "C") <- gtimeout -> libc.so.1:setlocale() = 0xc975c045 -> gtimeout -> libc.so.1:void free(void * = 0x8073648) <- gtimeout -> libc.so.1:free() -> gtimeout -> libc.so.1:int * ___errno(void) <- gtimeout -> libc.so.1:___errno() = 0xc97b874c -> gtimeout -> libc.so.1:int * ___errno(void) <- gtimeout -> libc.so.1:___errno() = 0xc97b874c -> gtimeout -> libc.so.1:int setpgid(pid_t = 0x0, pid_t = 0x0) <- gtimeout -> libc.so.1:setpgid() -> gtimeout -> libc.so.1:int sigemptyset(sigset_t * = 0x80471c8) <- gtimeout -> libc.so.1:sigemptyset() -> gtimeout -> libc.so.1:int sigaction(int = 0xe, const struct sigaction * = 0x80471c0, struct sigaction * = 0x0) <- gtimeout -> libc.so.1:sigaction() -> gtimeout -> libc.so.1:int sigaction(int = 0x2, const struct sigaction * = 0x80471c0, struct sigaction * = 0x0) <- gtimeout -> libc.so.1:sigaction() -> gtimeout -> libc.so.1:int sigaction(int = 0x3, const struct sigaction * = 0x80471c0, struct sigaction * = 0x0) <- gtimeout -> libc.so.1:sigaction() -> gtimeout -> libc.so.1:int sigaction(int = 0x1, const struct sigaction * = 0x80471c0, struct sigaction * = 0x0) <- gtimeout -> libc.so.1:sigaction() -> gtimeout -> libc.so.1:int sigaction(int = 0xf, const struct sigaction * = 0x80471c0, struct sigaction * = 0x0) <- gtimeout -> libc.so.1:sigaction() -> gtimeout -> libc.so.1:int sigaction(int = 0xf, const struct sigaction * = 0x80471c0, struct sigaction * = 0x0) <- gtimeout -> libc.so.1:sigaction() -> gtimeout -> libc.so.1:int (*)() signal(int = 0x1a, int (*)() = 0x1) <- gtimeout -> libc.so.1:signal() -> gtimeout -> libc.so.1:int (*)() signal(int = 0x1b, int (*)() = 0x1) <- gtimeout -> libc.so.1:signal() -> gtimeout -> libc.so.1:int (*)() signal(int = 0x12, int (*)() = 0x0) <- gtimeout -> libc.so.1:signal() -> gtimeout -> libc.so.1:pid_t fork(void) <- gtimeout -> libc.so.1:fork() = 0x2f7f -> gtimeout -> libc.so.1:int sigemptyset(sigset_t * = 0x8047160) <- gtimeout -> libc.so.1:sigemptyset() -> gtimeout -> libc.so.1:int sigaddset(sigset_t * = 0x8047160, int = 0xe) <- gtimeout -> libc.so.1:sigaddset() -> gtimeout -> libc.so.1:int sigprocmask(int = 0x2, const sigset_t * = 0x8047160, sigset_t * = 0x0) <- gtimeout -> libc.so.1:sigprocmask() <- gtimeout -> libc.so.1:fork() -> gtimeout -> libc.so.1:int (*)() signal(int = 0x1a, int (*)() = 0x0) <- gtimeout -> libc.so.1:signal() = 0x1 -> gtimeout -> libc.so.1:int (*)() signal(int = 0x1b, int (*)() = 0x0) <- gtimeout -> libc.so.1:signal() = 0x1 -> gtimeout -> libc.so.1:int execvp(const char * = 0x8047402 "gsleep", char *const * = 0x8047244) -> gtimeout -> librt.so.1:int timer_create(clockid_t = 0x3, struct sigevent * = 0x0, timer_t * = 0x804715c) <- gtimeout -> librt.so.1:timer_create() -> gtimeout -> librt.so.1:int timer_settime(timer_t = 0x0, int = 0x0, const struct itimerspec * = 0x8047160, struct itimerspec * = 0x0) <- gtimeout -> librt.so.1:timer_settime() -> gtimeout -> libc.so.1:pid_t waitpid(pid_t = 0x2f7f, int * = 0x80471bc, int = 0x0) -> gtimeout -> libc.so.1:kill(0x2f7f, 0xf, 0xc9ae2a00) ** NR -> gtimeout -> libc.so.1:int (*)() signal(int = 0xf, int (*)() = 0x1) <- gtimeout -> libc.so.1:signal() = 0x8053260 -> gtimeout -> libc.so.1:kill(0x0, 0xf, 0xc9ae2a00) ** NR -> gtimeout -> libc.so.1:kill(0x2f7f, 0x19, 0xc9ae2a00) ** NR -> gtimeout -> libc.so.1:int (*)() signal(int = 0x19, int (*)() = 0x1) <- gtimeout -> libc.so.1:signal() -> gtimeout -> libc.so.1:kill(0x0, 0x19, 0x80469d8) ** NR <- gtimeout -> libc.so.1:waitpid() = 0x2f7f -> gtimeout -> libc.so.1:exit(0x7c, 0x7c, 0x0) ** NR -> gtimeout -> libc.so.1:size_t __fpending(FILE * = 0x8072210) <- gtimeout -> libc.so.1:__fpending() -> gtimeout -> libc.so.1:int ferror(FILE * = 0x8072210) <- gtimeout -> libc.so.1:ferror() -> gtimeout -> libc.so.1:int fclose(FILE * = 0x8072210) <- gtimeout -> libc.so.1:fclose() -> gtimeout -> libc.so.1:size_t __fpending(FILE * = 0x8072220) <- gtimeout -> libc.so.1:__fpending() -> gtimeout -> libc.so.1:int ferror(FILE * = 0x8072220) <- gtimeout -> libc.so.1:ferror() -> gtimeout -> libc.so.1:int fclose(FILE * = 0x8072220) --------------050402010108060503040606 Content-Type: text/plain; charset=ISO-8859-1; name="truss.out" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="truss.out" execve("/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/gtimeout", 0x08047298, 0x080472AC) argc = 4 sysinfo(SI_MACHINE, "i86pc", 257) = 6 mmap(0x00000000, 32, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xC9BF0000 mmap(0x00000000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xC9BB0000 mmap(0x00000000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xC9BA0000 memcntl(0xC9BBF000, 13408, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0 memcntl(0x08050000, 10324, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0 resolvepath("/usr/lib/ld.so.1", "/lib/ld.so.1", 1023) = 12 resolvepath("/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/gtimeout", "/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/gtimeout", 1023) = 60 sysconfig(_CONFIG_PAGESIZE) = 4096 stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/gtimeout", 0x08046E80) = 0 open("/var/ld/ld.config", O_RDONLY) Err#2 ENOENT stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/../lib/libintl.so.8", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/../lib/depend/libintl.so.8", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/lib/libintl.so.8", 0x08046730) Err#2 ENOENT mmap(0x00000000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xC9B90000 stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/lib/depend/libintl.so.8", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/lib/libintl.so.8", 0x08046730) = 0 resolvepath("/pkgs/32-bit/lib/libintl.so.8", "/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/libintl.so.8.1.3", 1023) = 68 open("/pkgs/32-bit/lib/libintl.so.8", O_RDONLY) = 3 mmap(0x00010000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_ALIGN, 3, 0) = 0xC9B80000 mmap(0x00010000, 102400, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xC9B60000 mmap(0xC9B60000, 34396, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xC9B60000 mmap(0xC9B78000, 2508, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 32768) = 0xC9B78000 munmap(0xC9B69000, 61440) = 0 munmap(0xC9B80000, 32768) = 0 close(3) = 0 memcntl(0xC9B60000, 6304, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0 stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/../lib/libiconv.so.2", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/../lib/depend/libiconv.so.2", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/lib/libiconv.so.2", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/lib/depend/libiconv.so.2", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/lib/libiconv.so.2", 0x08046730) = 0 resolvepath("/pkgs/32-bit/lib/libiconv.so.2", "/pkgs/32-bit/release/libiconv-1.14-scaffolding/lib/libiconv.so.2.5.1", 1023) = 68 open("/pkgs/32-bit/lib/libiconv.so.2", O_RDONLY) = 3 mmap(0x00010000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_ALIGN, 3, 0) = 0xC9B80000 mmap(0x00010000, 991232, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xC9A60000 mmap(0xC9A60000, 921087, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xC9A60000 mmap(0xC9B50000, 6016, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 917504) = 0xC9B50000 munmap(0xC9B41000, 61440) = 0 munmap(0xC9B80000, 32768) = 0 close(3) = 0 memcntl(0xC9A60000, 5528, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0 stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/../lib/libc.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/../lib/depend/libc.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/lib/libc.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/lib/depend/libc.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/lib/libc.so.1", 0x08046730) Err#2 ENOENT stat64("/lib/libc.so.1", 0x08046730) = 0 resolvepath("/lib/libc.so.1", "/lib/libc.so.1", 1023) = 14 open("/lib/libc.so.1", O_RDONLY) = 3 mmap(0x00010000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_ALIGN, 3, 0) = 0xC9B80000 mmap(0x00010000, 1155072, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xC9940000 mmap(0xC9940000, 1110605, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xC9940000 mmap(0xC9A50000, 30375, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 1114112) = 0xC9A50000 mmap(0xC9A58000, 4328, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_ANON, -1, 0) = 0xC9A58000 munmap(0xC9B80000, 32768) = 0 close(3) = 0 memcntl(0xC9940000, 124768, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0 mmap(0x00000000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xC9B80000 stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/../lib/librt.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/../lib/depend/librt.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/lib/librt.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/lib/depend/librt.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/lib/librt.so.1", 0x08046730) Err#2 ENOENT stat64("/lib/librt.so.1", 0x08046730) = 0 resolvepath("/lib/librt.so.1", "/lib/librt.so.1", 1023) = 15 open("/lib/librt.so.1", O_RDONLY) = 3 mmap(0x00010000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_ALIGN, 3, 0) = 0xC9930000 mmap(0x00010000, 94208, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xC9910000 mmap(0xC9910000, 22882, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xC9910000 mmap(0xC9926000, 750, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 24576) = 0xC9926000 munmap(0xC9916000, 65536) = 0 munmap(0xC9930000, 32768) = 0 close(3) = 0 memcntl(0xC9910000, 8500, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0 stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/../lib/libiconv.so.2", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/../lib/depend/libiconv.so.2", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/libiconv.so.2", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/depend/libiconv.so.2", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/../lib/libc.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/../lib/depend/libc.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/libc.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/depend/libc.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/../lib/libgcc_s.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/../lib/depend/libgcc_s.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/libgcc_s.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/depend/libgcc_s.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/lib/libgcc_s.so.1", 0x08046730) = 0 resolvepath("/pkgs/32-bit/lib/libgcc_s.so.1", "/pkgs/32-bit/release/gcc-4.9.3-scaffolding/lib/libgcc_s.so.1", 1023) = 60 open("/pkgs/32-bit/lib/libgcc_s.so.1", O_RDONLY) = 3 mmap(0x00010000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_ALIGN, 3, 0) = 0xC9930000 mmap(0x00010000, 163840, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xC98E0000 mmap(0xC98E0000, 94176, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xC98E0000 mmap(0xC9906000, 7000, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 90112) = 0xC9906000 munmap(0xC98F7000, 61440) = 0 munmap(0xC9930000, 32768) = 0 close(3) = 0 memcntl(0xC98E0000, 9564, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0 stat64("/pkgs/32-bit/release/libiconv-1.14-scaffolding/lib/../lib/libgcc_s.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/libiconv-1.14-scaffolding/lib/../lib/depend/libgcc_s.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/libiconv-1.14-scaffolding/lib/libgcc_s.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/libiconv-1.14-scaffolding/lib/depend/libgcc_s.so.1", 0x08046730) Err#2 ENOENT mmap(0x00000000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xC9B70000 stat64("/pkgs/32-bit/release/libiconv-1.14-scaffolding/lib/../lib/libc.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/libiconv-1.14-scaffolding/lib/../lib/depend/libc.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/libiconv-1.14-scaffolding/lib/libc.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/libiconv-1.14-scaffolding/lib/depend/libc.so.1", 0x08046730) Err#2 ENOENT stat64("/lib/libaio.so.1", 0x08046730) = 0 resolvepath("/lib/libaio.so.1", "/lib/libaio.so.1", 1023) = 16 open("/lib/libaio.so.1", O_RDONLY) = 3 mmap(0x00010000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_ALIGN, 3, 0) = 0xC9930000 mmap(0x00010000, 106496, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xC98C0000 mmap(0xC98C0000, 28853, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xC98C0000 mmap(0xC98D8000, 1386, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 32768) = 0xC98D8000 mmap(0xC98D9000, 1608, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANON, -1, 0) = 0xC98D9000 munmap(0xC98C8000, 65536) = 0 munmap(0xC9930000, 32768) = 0 close(3) = 0 memcntl(0xC98C0000, 5376, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0 stat64("/lib/libmd.so.1", 0x08046730) = 0 resolvepath("/lib/libmd.so.1", "/lib/libmd.so.1", 1023) = 15 open("/lib/libmd.so.1", O_RDONLY) = 3 mmap(0x00010000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_ALIGN, 3, 0) = 0xC9930000 mmap(0x00010000, 126976, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xC98A0000 mmap(0xC98A0000, 56700, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xC98A0000 mmap(0xC98BE000, 552, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 57344) = 0xC98BE000 munmap(0xC98AE000, 65536) = 0 munmap(0xC9930000, 32768) = 0 close(3) = 0 memcntl(0xC98A0000, 1464, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0 mmap(0x00000000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xC9930000 stat64("/pkgs/32-bit/release/gcc-4.9.3-scaffolding/lib/../lib/libc.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/gcc-4.9.3-scaffolding/lib/../lib/depend/libc.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/gcc-4.9.3-scaffolding/lib/libc.so.1", 0x08046730) Err#2 ENOENT stat64("/pkgs/32-bit/release/gcc-4.9.3-scaffolding/lib/depend/libc.so.1", 0x08046730) Err#2 ENOENT mmap(0x00010000, 24576, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xC98D0000 getcontext(0x08046CF0) getrlimit(RLIMIT_STACK, 0x08046CE8) = 0 getpid() = 12104 [12102] lwp_private(0, 1, 0xC98D2A00) = 0x000001C3 setustack(0xC98D2A60) mmap(0x00000000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xC98B0000 sysconfig(_CONFIG_STACK_PROT) = 7 sysconfig(_CONFIG_SEM_VALUE_MAX) = 2147483647 sysi86(SI86FPSTART, 0xC9A58798, 0x0000133F, 0x00001F80) = 0x00000001 sysconfig(_CONFIG_PAGESIZE) = 4096 mmap(0x00000000, 65536, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xC9880000 mmap(0x00000000, 65536, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xC9860000 sigaction(SIGCANCEL, 0x08046E90, 0x00000000) = 0 mmap(0x00000000, 1040384, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON, -1, 0) = 0xC9761000 mmap(0x00010000, 65536, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xC9750000 getcontext(0x08046CB0) lwp_create(0x08046EE0, LWP_SUSPENDED, 0x08047104) = 2 /2: lwp_create() (returning as new lwp ...) = 0 /1: schedctl() = 0xC9BF7000 /2: setustack(0xC9750260) /2: schedctl() = 0xC9BF7010 /1: lwp_continue(2) = 0 /2: lwp_sigmask(SIG_SETMASK, 0xFFBFFEFF, 0x0000FFF7) = 0xFFBFFEFF [0x0000FFFF] /2: lwp_exit() /1: lwp_wait(2, 0x08047138) = 0 brk(0x080727E0) = 0 brk(0x080747E0) = 0 setpgid(0, 0) = 0 sigaction(SIGALRM, 0x080471A0, 0x00000000) = 0 sigaction(SIGINT, 0x080471A0, 0x00000000) = 0 sigaction(SIGQUIT, 0x080471A0, 0x00000000) = 0 sigaction(SIGHUP, 0x080471A0, 0x00000000) = 0 sigaction(SIGTERM, 0x080471A0, 0x00000000) = 0 sigaction(SIGTERM, 0x080471A0, 0x00000000) = 0 sigaction(SIGTTIN, 0x08047130, 0x080471B0) = 0 sigaction(SIGTTOU, 0x08047130, 0x080471B0) = 0 sigaction(SIGCLD, 0x08047130, 0x080471B0) = 0 fork1() = 12105 lwp_sigmask(SIG_SETMASK, 0x00000000, 0x00000000) = 0xFFBFFEFF [0x0000FFFF] sigfillset(0xC9A57E28) = 0 lwp_sigmask(SIG_SETMASK, 0x00000000, 0x00000000) = 0xFFBFFEFF [0x0000FFFF] timer_create(3, 0x00000000, 0x080471AC) = 0 timer_settime(0, 0, 0x080471B0, 0x00000000) = 0 Received signal #14, SIGALRM, in waitid() [caught] siginfo: SIGALRM pid=12104 uid=100 code=-3 waitid(P_PID, 12105, 0x08047130, WEXITED|WTRAPPED) Err#91 ERESTART lwp_sigmask(SIG_SETMASK, 0x00002000, 0x00000000) = 0xFFBFFEFF [0x0000FFFF] kill(12105, SIGTERM) = 0 sigaction(SIGTERM, 0x08046A40, 0x08046AC0) = 0 kill(0, SIGTERM) = 0 Received signal #15, SIGTERM [ignored] siginfo: SIGTERM pid=12104 uid=100 kill(12105, SIGCONT) = 0 sigaction(SIGCONT, 0x08046A50, 0x08046AD0) = 0 kill(0, SIGCONT) = 0 Received signal #25, SIGCONT [ignored] siginfo: SIGCONT pid=12104 uid=100 setcontext(0x08046930) waitid(P_PID, 12105, 0x08047130, WEXITED|WTRAPPED) = 0 close(1) = 0 close(2) = 0 _exit(124) --------------050402010108060503040606 Content-Type: text/plain; charset=ISO-8859-1; name="truss-l.out" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="truss-l.out" /1: execve("/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/gtimeout", 0x08047298, 0x080472AC) argc = 4 /1: sysinfo(SI_MACHINE, "i86pc", 257) = 6 /1: mmap(0x00000000, 32, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xC9BF0000 /1: mmap(0x00000000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xC9BB0000 /1: mmap(0x00000000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xC9BA0000 /1: memcntl(0xC9BBF000, 13408, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0 /1: memcntl(0x08050000, 10324, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0 /1: resolvepath("/usr/lib/ld.so.1", "/lib/ld.so.1", 1023) = 12 /1: resolvepath("/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/gtimeout", "/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/gtimeout", 1023) = 60 /1: sysconfig(_CONFIG_PAGESIZE) = 4096 /1: stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/gtimeout", 0x08046E80) = 0 /1: open("/var/ld/ld.config", O_RDONLY) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/../lib/libintl.so.8", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/../lib/depend/libintl.so.8", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/lib/libintl.so.8", 0x08046730) Err#2 ENOENT /1: mmap(0x00000000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xC9B90000 /1: stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/lib/depend/libintl.so.8", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/lib/libintl.so.8", 0x08046730) = 0 /1: resolvepath("/pkgs/32-bit/lib/libintl.so.8", "/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/libintl.so.8.1.3", 1023) = 68 /1: open("/pkgs/32-bit/lib/libintl.so.8", O_RDONLY) = 3 /1: mmap(0x00010000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_ALIGN, 3, 0) = 0xC9B80000 /1: mmap(0x00010000, 102400, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xC9B60000 /1: mmap(0xC9B60000, 34396, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xC9B60000 /1: mmap(0xC9B78000, 2508, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 32768) = 0xC9B78000 /1: munmap(0xC9B69000, 61440) = 0 /1: munmap(0xC9B80000, 32768) = 0 /1: close(3) = 0 /1: memcntl(0xC9B60000, 6304, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0 /1: stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/../lib/libiconv.so.2", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/../lib/depend/libiconv.so.2", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/lib/libiconv.so.2", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/lib/depend/libiconv.so.2", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/lib/libiconv.so.2", 0x08046730) = 0 /1: resolvepath("/pkgs/32-bit/lib/libiconv.so.2", "/pkgs/32-bit/release/libiconv-1.14-scaffolding/lib/libiconv.so.2.5.1", 1023) = 68 /1: open("/pkgs/32-bit/lib/libiconv.so.2", O_RDONLY) = 3 /1: mmap(0x00010000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_ALIGN, 3, 0) = 0xC9B80000 /1: mmap(0x00010000, 991232, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xC9A60000 /1: mmap(0xC9A60000, 921087, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xC9A60000 /1: mmap(0xC9B50000, 6016, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 917504) = 0xC9B50000 /1: munmap(0xC9B41000, 61440) = 0 /1: munmap(0xC9B80000, 32768) = 0 /1: close(3) = 0 /1: memcntl(0xC9A60000, 5528, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0 /1: stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/../lib/libc.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/../lib/depend/libc.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/lib/libc.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/lib/depend/libc.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/lib/libc.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/lib/libc.so.1", 0x08046730) = 0 /1: resolvepath("/lib/libc.so.1", "/lib/libc.so.1", 1023) = 14 /1: open("/lib/libc.so.1", O_RDONLY) = 3 /1: mmap(0x00010000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_ALIGN, 3, 0) = 0xC9B80000 /1: mmap(0x00010000, 1155072, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xC9940000 /1: mmap(0xC9940000, 1110605, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xC9940000 /1: mmap(0xC9A50000, 30375, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 1114112) = 0xC9A50000 /1: mmap(0xC9A58000, 4328, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_ANON, -1, 0) = 0xC9A58000 /1: munmap(0xC9B80000, 32768) = 0 /1: close(3) = 0 /1: memcntl(0xC9940000, 124768, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0 /1: mmap(0x00000000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xC9B80000 /1: stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/../lib/librt.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/bin/../lib/depend/librt.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/lib/librt.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/coreutils-8.24-scaffolding/lib/depend/librt.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/lib/librt.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/lib/librt.so.1", 0x08046730) = 0 /1: resolvepath("/lib/librt.so.1", "/lib/librt.so.1", 1023) = 15 /1: open("/lib/librt.so.1", O_RDONLY) = 3 /1: mmap(0x00010000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_ALIGN, 3, 0) = 0xC9930000 /1: mmap(0x00010000, 94208, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xC9910000 /1: mmap(0xC9910000, 22882, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xC9910000 /1: mmap(0xC9926000, 750, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 24576) = 0xC9926000 /1: munmap(0xC9916000, 65536) = 0 /1: munmap(0xC9930000, 32768) = 0 /1: close(3) = 0 /1: memcntl(0xC9910000, 8500, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0 /1: stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/../lib/libiconv.so.2", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/../lib/depend/libiconv.so.2", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/libiconv.so.2", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/depend/libiconv.so.2", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/../lib/libc.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/../lib/depend/libc.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/libc.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/depend/libc.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/../lib/libgcc_s.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/../lib/depend/libgcc_s.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/libgcc_s.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/gettext-0.19.4-scaffolding/lib/depend/libgcc_s.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/lib/libgcc_s.so.1", 0x08046730) = 0 /1: resolvepath("/pkgs/32-bit/lib/libgcc_s.so.1", "/pkgs/32-bit/release/gcc-4.9.3-scaffolding/lib/libgcc_s.so.1", 1023) = 60 /1: open("/pkgs/32-bit/lib/libgcc_s.so.1", O_RDONLY) = 3 /1: mmap(0x00010000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_ALIGN, 3, 0) = 0xC9930000 /1: mmap(0x00010000, 163840, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xC98E0000 /1: mmap(0xC98E0000, 94176, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xC98E0000 /1: mmap(0xC9906000, 7000, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 90112) = 0xC9906000 /1: munmap(0xC98F7000, 61440) = 0 /1: munmap(0xC9930000, 32768) = 0 /1: close(3) = 0 /1: memcntl(0xC98E0000, 9564, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0 /1: stat64("/pkgs/32-bit/release/libiconv-1.14-scaffolding/lib/../lib/libgcc_s.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/libiconv-1.14-scaffolding/lib/../lib/depend/libgcc_s.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/libiconv-1.14-scaffolding/lib/libgcc_s.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/libiconv-1.14-scaffolding/lib/depend/libgcc_s.so.1", 0x08046730) Err#2 ENOENT /1: mmap(0x00000000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xC9B70000 /1: stat64("/pkgs/32-bit/release/libiconv-1.14-scaffolding/lib/../lib/libc.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/libiconv-1.14-scaffolding/lib/../lib/depend/libc.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/libiconv-1.14-scaffolding/lib/libc.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/libiconv-1.14-scaffolding/lib/depend/libc.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/lib/libaio.so.1", 0x08046730) = 0 /1: resolvepath("/lib/libaio.so.1", "/lib/libaio.so.1", 1023) = 16 /1: open("/lib/libaio.so.1", O_RDONLY) = 3 /1: mmap(0x00010000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_ALIGN, 3, 0) = 0xC9930000 /1: mmap(0x00010000, 106496, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xC98C0000 /1: mmap(0xC98C0000, 28853, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xC98C0000 /1: mmap(0xC98D8000, 1386, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 32768) = 0xC98D8000 /1: mmap(0xC98D9000, 1608, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_ANON, -1, 0) = 0xC98D9000 /1: munmap(0xC98C8000, 65536) = 0 /1: munmap(0xC9930000, 32768) = 0 /1: close(3) = 0 /1: memcntl(0xC98C0000, 5376, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0 /1: stat64("/lib/libmd.so.1", 0x08046730) = 0 /1: resolvepath("/lib/libmd.so.1", "/lib/libmd.so.1", 1023) = 15 /1: open("/lib/libmd.so.1", O_RDONLY) = 3 /1: mmap(0x00010000, 32768, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_ALIGN, 3, 0) = 0xC9930000 /1: mmap(0x00010000, 126976, PROT_NONE, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xC98A0000 /1: mmap(0xC98A0000, 56700, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_FIXED|MAP_TEXT, 3, 0) = 0xC98A0000 /1: mmap(0xC98BE000, 552, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED|MAP_INITDATA, 3, 57344) = 0xC98BE000 /1: munmap(0xC98AE000, 65536) = 0 /1: munmap(0xC9930000, 32768) = 0 /1: close(3) = 0 /1: memcntl(0xC98A0000, 1464, MC_ADVISE, MADV_WILLNEED, 0, 0) = 0 /1: mmap(0x00000000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xC9930000 /1: stat64("/pkgs/32-bit/release/gcc-4.9.3-scaffolding/lib/../lib/libc.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/gcc-4.9.3-scaffolding/lib/../lib/depend/libc.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/gcc-4.9.3-scaffolding/lib/libc.so.1", 0x08046730) Err#2 ENOENT /1: stat64("/pkgs/32-bit/release/gcc-4.9.3-scaffolding/lib/depend/libc.so.1", 0x08046730) Err#2 ENOENT /1: mmap(0x00010000, 24576, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xC98D0000 /1: getcontext(0x08046CF0) /1: getrlimit(RLIMIT_STACK, 0x08046CE8) = 0 /1: getpid() = 12128 [12126] /1: lwp_private(0, 1, 0xC98D2A00) = 0x000001C3 /1: setustack(0xC98D2A60) /1: mmap(0x00000000, 4096, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xC98B0000 /1: sysconfig(_CONFIG_STACK_PROT) = 7 /1: sysconfig(_CONFIG_SEM_VALUE_MAX) = 2147483647 /1: sysi86(SI86FPSTART, 0xC9A58798, 0x0000133F, 0x00001F80) = 0x00000001 /1: sysconfig(_CONFIG_PAGESIZE) = 4096 /1: mmap(0x00000000, 65536, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xC9880000 /1: mmap(0x00000000, 65536, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANON, -1, 0) = 0xC9860000 /1: sigaction(SIGCANCEL, 0x08046E90, 0x00000000) = 0 /1: mmap(0x00000000, 1040384, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_NORESERVE|MAP_ANON, -1, 0) = 0xC9761000 /1: mmap(0x00010000, 65536, PROT_READ|PROT_WRITE|PROT_EXEC, MAP_PRIVATE|MAP_ANON|MAP_ALIGN, -1, 0) = 0xC9750000 /1: getcontext(0x08046CB0) /1: lwp_create(0x08046EE0, LWP_SUSPENDED, 0x08047104) = 2 /2: lwp_create() (returning as new lwp ...) = 0 /1: schedctl() = 0xC9BBB000 /1: lwp_continue(2) = 0 /2: setustack(0xC9750260) /2: schedctl() = 0xC9BBB010 /2: lwp_sigmask(SIG_SETMASK, 0xFFBFFEFF, 0x0000FFF7) = 0xFFBFFEFF [0x0000FFFF] /2: lwp_exit() /1: lwp_wait(2, 0x08047138) = 0 /1: brk(0x080727E0) = 0 /1: brk(0x080747E0) = 0 /1: setpgid(0, 0) = 0 /1: sigaction(SIGALRM, 0x080471A0, 0x00000000) = 0 /1: sigaction(SIGINT, 0x080471A0, 0x00000000) = 0 /1: sigaction(SIGQUIT, 0x080471A0, 0x00000000) = 0 /1: sigaction(SIGHUP, 0x080471A0, 0x00000000) = 0 /1: sigaction(SIGTERM, 0x080471A0, 0x00000000) = 0 /1: sigaction(SIGTERM, 0x080471A0, 0x00000000) = 0 /1: sigaction(SIGTTIN, 0x08047130, 0x080471B0) = 0 /1: sigaction(SIGTTOU, 0x08047130, 0x080471B0) = 0 /1: sigaction(SIGCLD, 0x08047130, 0x080471B0) = 0 /1: fork1() = 12129 /1: lwp_sigmask(SIG_SETMASK, 0x00000000, 0x00000000) = 0xFFBFFEFF [0x0000FFFF] /1: sigfillset(0xC9A57E28) = 0 /1: lwp_sigmask(SIG_SETMASK, 0x00000000, 0x00000000) = 0xFFBFFEFF [0x0000FFFF] /1: timer_create(3, 0x00000000, 0x080471AC) = 0 /1: timer_settime(0, 0, 0x080471B0, 0x00000000) = 0 /1: Received signal #14, SIGALRM, in waitid() [caught] /1: siginfo: SIGALRM pid=12128 uid=100 code=-3 /1: waitid(P_PID, 12129, 0x08047130, WEXITED|WTRAPPED) Err#91 ERESTART /1: lwp_sigmask(SIG_SETMASK, 0x00002000, 0x00000000) = 0xFFBFFEFF [0x0000FFFF] /1: kill(12129, SIGTERM) = 0 /1: sigaction(SIGTERM, 0x08046A40, 0x08046AC0) = 0 /1: kill(0, SIGTERM) = 0 /1: Received signal #15, SIGTERM [ignored] /1: siginfo: SIGTERM pid=12128 uid=100 /1: kill(12129, SIGCONT) = 0 /1: sigaction(SIGCONT, 0x08046A50, 0x08046AD0) = 0 /1: kill(0, SIGCONT) = 0 /1: Received signal #25, SIGCONT [ignored] /1: siginfo: SIGCONT pid=12128 uid=100 /1: setcontext(0x08046930) /1: waitid(P_PID, 12129, 0x08047130, WEXITED|WTRAPPED) = 0 /1: close(1) = 0 /1: close(2) = 0 /1: _exit(124) --------------050402010108060503040606--
bug-coreutils@HIDDEN
:bug#21061
; Package coreutils
.
Full text available.Received: (at 21061) by debbugs.gnu.org; 15 Jul 2015 10:31:10 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Wed Jul 15 06:31:10 2015 Received: from localhost ([127.0.0.1]:49618 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1ZFJy1-0003vw-IQ for submit <at> debbugs.gnu.org; Wed, 15 Jul 2015 06:31:09 -0400 Received: from mail2.vodafone.ie ([213.233.128.44]:19891) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from <P@HIDDEN>) id 1ZFJxy-0003vQ-Es for 21061 <at> debbugs.gnu.org; Wed, 15 Jul 2015 06:31:07 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Ao8GADg1plVtTfsV/2dsb2JhbABbgkFSHzVpgla6a4V7AoFATAEBAQEBAYELhCQBAQQyAVYLDQEKCRYECwkDAgECAUUGAQwIAQGILgG+fZBFAQsBH4tMhQ2EKwEElD2EbYhhhxuIBoQ0g2Emgj6BPz0xgksBAQE Received: from unknown (HELO localhost.localdomain) ([109.77.251.21]) by mail2.vodafone.ie with ESMTP; 15 Jul 2015 11:31:00 +0100 Message-ID: <55A63663.7020604@HIDDEN> Date: Wed, 15 Jul 2015 11:30:59 +0100 From: =?windows-1252?Q?P=E1draig_Brady?= <P@HIDDEN> User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.6.0 MIME-Version: 1.0 To: Peter Bray <pdb_ml@HIDDEN>, 21061 <at> debbugs.gnu.org Subject: Re: bug#21061: coreutils-8.24 - Partially reproducible failures of tests/misc/timeout-parameters.sh References: <55A6266C.7030009@HIDDEN> In-Reply-To: <55A6266C.7030009@HIDDEN> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 21061 X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: 0.0 (/) On 15/07/15 10:22, Peter Bray wrote: > Greetings, > > N.B. This bug report is for reference only, and documents only a > partially reproducible check failure. No Action Requested. > > On Solaris 10 (Update 8 and Update 11) and Solaris 11.2 X86 VMs, and > one Solaris 10 Update 10 (Non-VM) system, I see random "gmake check" > failures for "tests/misc/timeout-parameters.sh". > > Running the test by itself (with the command line below) on the same > VMs / real system will sometimes succeed and sometimes fail. > > gmake check TESTS=tests/misc/timeout-parameters.sh VERBOSE=yes SUBDIRS=. > > Looking through the attached "failure.log" file, I extracted the > following command line test, which may exhibit the failure without all > the make(1) and test infrastructure code: > > failures=0 > for i in `./src/seq 1 100` > do > ./src/timeout 2.34e+5d sleep 0 \ > || { echo fail; failures=`expr ${failures} + 1` } > done > echo "Total Failures: ${failures}" > > On a real hardware system (Xeon E3-1245v2) with a 64-bit kernel, > failures are very rare (only 1 test harness failure seen, no failures > of the sample code above even with 1..1000 runs). > > On virtual machines (also using Xeon E3-1245v2 running VMware ESXi > 5.5d (latest patches) - two identical ESXi systems running similarly > configured VMs), test harness failures and failures in the above > command line check are rare for the 64-bit Solaris kernels. > > Failures on Solaris 10 32-bit kernels (on both of these ESXi servers), > are easily reproduced and vary between 5% (common) and 45% (rare). Interesting. I'm not reproducing that in 5000 loops in the above test script on 32 bit baremetal solaris 10 update 10. I presume the large timeout value is causing early timer firing on your systems for some reason? What does this return? time src/timeout 2.34e+5d sleep inf Note on 32 bit, the 234000 days will be truncated to a itimerspec of: { {0,0}, {2147483647,999999999} } A wild guess is that perhaps ntp is adjusting the system time which causes the above timer to be adjusted in the kernel and roll over to 0, thus triggering early? thanks, Pádraig.
bug-coreutils@HIDDEN
:bug#21061
; Package coreutils
.
Full text available.Received: (at submit) by debbugs.gnu.org; 15 Jul 2015 09:23:13 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Wed Jul 15 05:23:13 2015 Received: from localhost ([127.0.0.1]:49596 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1ZFIuG-0002I8-1K for submit <at> debbugs.gnu.org; Wed, 15 Jul 2015 05:23:12 -0400 Received: from eggs.gnu.org ([208.118.235.92]:39004) by debbugs.gnu.org with esmtp (Exim 4.80) (envelope-from <pdb_ml@HIDDEN>) id 1ZFIuC-0002Hu-Tx for submit <at> debbugs.gnu.org; Wed, 15 Jul 2015 05:23:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from <pdb_ml@HIDDEN>) id 1ZFIu5-0003G2-NP for submit <at> debbugs.gnu.org; Wed, 15 Jul 2015 05:23:03 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,FREEMAIL_FROM, T_DKIM_INVALID autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:44168) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from <pdb_ml@HIDDEN>) id 1ZFIu5-0003Fw-Kw for submit <at> debbugs.gnu.org; Wed, 15 Jul 2015 05:23:01 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52500) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from <pdb_ml@HIDDEN>) id 1ZFIu3-0005ne-Cj for bug-coreutils@HIDDEN; Wed, 15 Jul 2015 05:23:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from <pdb_ml@HIDDEN>) id 1ZFIu0-0003EY-36 for bug-coreutils@HIDDEN; Wed, 15 Jul 2015 05:22:59 -0400 Received: from nm45-vm4.bullet.mail.bf1.yahoo.com ([216.109.115.63]:33673) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from <pdb_ml@HIDDEN>) id 1ZFItz-0003EO-T4 for bug-coreutils@HIDDEN; Wed, 15 Jul 2015 05:22:56 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com.au; s=s2048; t=1436952175; bh=7tGSnRpxfn2WJp9hj1cgL1O5YOUQfnEPxd4vum1uQKQ=; h=Date:From:To:Subject:From:Subject; b=qZeBmAHUMdcIWMp55ZPzATliEY6ox1NhSB7GlHL6gVUsmSIlzvu+51V9tyn5c5DSvJWg1DC90izYG+aFuBoqDZMZ5EJdDJOSACFj7spAWi7hWflli/SnahNKedJAg/A770O9Q9Ba4NOnj9JF9mwZveAEBi4TQ3M/TpL3ZxGjU85sfUKS2b8XPy3D2vGgDTI6bFXJ/QLqTA5Bt1wxwjq2gT1T8D8tKB86ZYwSCd6U1awbQs6RaIgaLljrTzr9cfAAm7jwbqQgo0jnIXI2cv/Earei36M3bShbFwgXZjKjzekmd4am3aC86Iyv8oqGOm+z1X5jgrmDcu70qIQYVWcldQ== Received: from [98.139.170.180] by nm45.bullet.mail.bf1.yahoo.com with NNFMP; 15 Jul 2015 09:22:55 -0000 Received: from [98.139.211.200] by tm23.bullet.mail.bf1.yahoo.com with NNFMP; 15 Jul 2015 09:22:55 -0000 Received: from [127.0.0.1] by smtp209.mail.bf1.yahoo.com with NNFMP; 15 Jul 2015 09:22:55 -0000 X-Yahoo-Newman-Id: 442019.45012.bm@HIDDEN X-Yahoo-Newman-Property: ymail-3 X-YMail-OSG: P1KfDpIVM1k1L3zyt.tyWq324jtodGG9YuDMTsrBPPkDN4R tJfWOSC.4Mo.Fyzzg02lWASHttzCp5pNZnVTjzhZ8cWM_aIzJbHatfEclgWC Vxy0Mmfbqi2FD8EhVJBZ0SDNgHMhir2tLq745BFm3vG4XS.xBAJfnh9WDFXL nmPBwlekzJZRf90EHrHnbyaVqZ..ywdXJpSjQj.WSl1qirOSfRNgz38zl4vs _kf1L7Y9d3eXGaoOBmdBylvtrpOpa7y7KONJzfv.XTGQI9W7v.Rz5hEKHtMr 0TP87Az03akS7VxOdwKUmyJXl8Qcmi.Ut1WYi.nkiIl62r6HGHaOAt1qEu2N YDcTrmwU_qV6Oyl5iyud3GNMvpt_ygZI.59DU.tQWo1LetfNN9FCKoHFUt24 7.Q4kvS18cAfHhDh4d5vBWZm0TFtRqIN.y0ZGmFuU3nnQrdSScUWATpPCEtY M8y31n7NwX3.P6uQe_usZvC3qYSJMILphwd4n_tC3qpx7AMKPtkicdDIgEnD zgdNB0FHiM30KcqtfhgKeAA-- X-Yahoo-SMTP: wy_7AdSswBBaijFlmVnVzTL.0g-- Message-ID: <55A6266C.7030009@HIDDEN> Date: Wed, 15 Jul 2015 19:22:52 +1000 From: Peter Bray <pdb_ml@HIDDEN> User-Agent: Mozilla/5.0 (X11; SunOS i86pc; rv:24.0) Gecko/20100101 Thunderbird/24.5.0 MIME-Version: 1.0 To: bug-coreutils@HIDDEN Subject: coreutils-8.24 - Partially reproducible failures of tests/misc/timeout-parameters.sh Content-Type: multipart/mixed; boundary="------------070109090606080504070608" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -5.0 (-----) This is a multi-part message in MIME format. --------------070109090606080504070608 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Greetings, N.B. This bug report is for reference only, and documents only a partially reproducible check failure. No Action Requested. On Solaris 10 (Update 8 and Update 11) and Solaris 11.2 X86 VMs, and one Solaris 10 Update 10 (Non-VM) system, I see random "gmake check" failures for "tests/misc/timeout-parameters.sh". Running the test by itself (with the command line below) on the same VMs / real system will sometimes succeed and sometimes fail. gmake check TESTS=tests/misc/timeout-parameters.sh VERBOSE=yes SUBDIRS=. Looking through the attached "failure.log" file, I extracted the following command line test, which may exhibit the failure without all the make(1) and test infrastructure code: failures=0 for i in `./src/seq 1 100` do ./src/timeout 2.34e+5d sleep 0 \ || { echo fail; failures=`expr ${failures} + 1` } done echo "Total Failures: ${failures}" On a real hardware system (Xeon E3-1245v2) with a 64-bit kernel, failures are very rare (only 1 test harness failure seen, no failures of the sample code above even with 1..1000 runs). On virtual machines (also using Xeon E3-1245v2 running VMware ESXi 5.5d (latest patches) - two identical ESXi systems running similarly configured VMs), test harness failures and failures in the above command line check are rare for the 64-bit Solaris kernels. Failures on Solaris 10 32-bit kernels (on both of these ESXi servers), are easily reproduced and vary between 5% (common) and 45% (rare). Regards, Peter Bray Sydney, Australia PS: Again, no action is requested, this is intended as a file for later reference bug report. --------------070109090606080504070608 Content-Type: text/plain; charset=ISO-8859-1; name="failure.log" Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename="failure.log" GEN public-submodule-commit gmake check-recursive gmake[1]: Entering directory `/tmp/32-bit/coreutils-8.24' Making check in . gmake[2]: Entering directory `/tmp/32-bit/coreutils-8.24' gmake check-TESTS check-local gmake[3]: Entering directory `/tmp/32-bit/coreutils-8.24' gmake[4]: Entering directory `/tmp/32-bit/coreutils-8.24' FAIL: tests/misc/timeout-parameters.sh =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D GNU coreutils 8.24: ./tests/test-suite.log =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # TOTAL: 1 # PASS: 0 # SKIP: 0 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 =2E. contents:: :depth: 2 FAIL: tests/misc/timeout-parameters =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D ++ initial_cwd_=3D/tmp/32-bit/coreutils-8.24 ++ fail=3D0 +++ testdir_prefix_ +++ printf gt ++ pfx_=3Dgt +++ mktempd_ /tmp/32-bit/coreutils-8.24 gt-timeout-parameters.sh.XXXX +++ case $# in +++ destdir_=3D/tmp/32-bit/coreutils-8.24 +++ template_=3Dgt-timeout-parameters.sh.XXXX +++ MAX_TRIES_=3D4 +++ case $destdir_ in +++ case $template_ in ++++ unset TMPDIR +++ d=3D/tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.jnKt +++ case $d in +++ test -d /tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.jnKt ++++ ls -dgo /tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.jnKt ++++ tr S - +++ perms=3D'drwx------ 2 69 Jul 15 08:23 /tmp/32-bit/coreutils-8.24/gt-t= imeout-parameters.sh.jnKt' +++ case $perms in +++ test 0 =3D 0 +++ echo /tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.jnKt +++ return ++ test_dir_=3D/tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.jnKt ++ cd /tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.jnKt ++ gl_init_sh_nl_=3D' ' ++ IFS=3D' =09 ' ++ 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 '!=3D' 0 + path_dir_=3D./src + case $path_dir_ in + abs_path_dir_=3D/tmp/32-bit/coreutils-8.24/./src + case $abs_path_dir_ in + PATH=3D/tmp/32-bit/coreutils-8.24/./src:/tmp/32-bit/coreutils-8.24/src:= /usr/xpg4/bin:/pkgs/32-bit/bin:/pkgs/32-bit/sbin:/pkgs/bin:/usr/bin:/usr/= ccs/bin:/usr/proc/bin:/usr/sbin:/sbin + create_exe_shims_ /tmp/32-bit/coreutils-8.24/./src + case $EXEEXT in + return 0 + shift + test 0 '!=3D' 0 + export PATH + print_ver_ timeout + test yes =3D yes + local i + for i in '$*' + env timeout --version timeout (GNU coreutils) 8.24 Copyright (C) 2015 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.h= tml>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Written by P'adraig Brady. + getlimits_ ++ getlimits + eval CHAR_MAX=3D127 CHAR_OFLOW=3D128 CHAR_MIN=3D-128 CHAR_UFLOW=3D-129 = SCHAR_MAX=3D127 SCHAR_OFLOW=3D128 SCHAR_MIN=3D-128 SCHAR_UFLOW=3D-129 UCH= AR_MAX=3D255 UCHAR_OFLOW=3D256 SHRT_MAX=3D32767 SHRT_OFLOW=3D32768 SHRT_M= IN=3D-32768 SHRT_UFLOW=3D-32769 INT_MAX=3D2147483647 INT_OFLOW=3D21474836= 48 INT_MIN=3D-2147483648 INT_UFLOW=3D-2147483649 UINT_MAX=3D4294967295 UI= NT_OFLOW=3D4294967296 LONG_MAX=3D2147483647 LONG_OFLOW=3D2147483648 LONG_= MIN=3D-2147483648 LONG_UFLOW=3D-2147483649 ULONG_MAX=3D4294967295 ULONG_O= FLOW=3D4294967296 SIZE_MAX=3D4294967295 SIZE_OFLOW=3D4294967296 SSIZE_MAX= =3D2147483647 SSIZE_OFLOW=3D2147483648 SSIZE_MIN=3D-2147483648 SSIZE_UFLO= W=3D-2147483649 TIME_T_MAX=3D2147483647 TIME_T_OFLOW=3D2147483648 TIME_T_= MIN=3D-2147483648 TIME_T_UFLOW=3D-2147483649 UID_T_MAX=3D2147483647 UID_T= _OFLOW=3D2147483648 GID_T_MAX=3D2147483647 GID_T_OFLOW=3D2147483648 PID_T= _MAX=3D2147483647 PID_T_OFLOW=3D2147483648 PID_T_MIN=3D-2147483648 PID_T_= UFLOW=3D-2147483649 OFF_T_MAX=3D9223372036854775807 OFF_T_OFLOW=3D9223372= 036854775808 OFF_T_MIN=3D-9223372036854775808 OFF_T_UFLOW=3D-922337203685= 4775809 INTMAX_MAX=3D9223372036854775807 INTMAX_OFLOW=3D92233720368547758= 08 INTMAX_MIN=3D-9223372036854775808 INTMAX_UFLOW=3D-9223372036854775809 = UINTMAX_MAX=3D18446744073709551615 UINTMAX_OFLOW=3D18446744073709551616 F= LT_MIN=3D1.1754944e-38 FLT_MAX=3D3.4028235e+38 DBL_MIN=3D2.22507385850720= 14e-308 DBL_MAX=3D1.7976931348623157e+308 LDBL_MIN=3D3.362103143112093506= 3e-4932 LDBL_MAX=3D1.189731495357231765e+4932 ++ CHAR_MAX=3D127 ++ CHAR_OFLOW=3D128 ++ CHAR_MIN=3D-128 ++ CHAR_UFLOW=3D-129 ++ SCHAR_MAX=3D127 ++ SCHAR_OFLOW=3D128 ++ SCHAR_MIN=3D-128 ++ SCHAR_UFLOW=3D-129 ++ UCHAR_MAX=3D255 ++ UCHAR_OFLOW=3D256 ++ SHRT_MAX=3D32767 ++ SHRT_OFLOW=3D32768 ++ SHRT_MIN=3D-32768 ++ SHRT_UFLOW=3D-32769 ++ INT_MAX=3D2147483647 ++ INT_OFLOW=3D2147483648 ++ INT_MIN=3D-2147483648 ++ INT_UFLOW=3D-2147483649 ++ UINT_MAX=3D4294967295 ++ UINT_OFLOW=3D4294967296 ++ LONG_MAX=3D2147483647 ++ LONG_OFLOW=3D2147483648 ++ LONG_MIN=3D-2147483648 ++ LONG_UFLOW=3D-2147483649 ++ ULONG_MAX=3D4294967295 ++ ULONG_OFLOW=3D4294967296 ++ SIZE_MAX=3D4294967295 ++ SIZE_OFLOW=3D4294967296 ++ SSIZE_MAX=3D2147483647 ++ SSIZE_OFLOW=3D2147483648 ++ SSIZE_MIN=3D-2147483648 ++ SSIZE_UFLOW=3D-2147483649 ++ TIME_T_MAX=3D2147483647 ++ TIME_T_OFLOW=3D2147483648 ++ TIME_T_MIN=3D-2147483648 ++ TIME_T_UFLOW=3D-2147483649 ++ UID_T_MAX=3D2147483647 ++ UID_T_OFLOW=3D2147483648 ++ GID_T_MAX=3D2147483647 ++ GID_T_OFLOW=3D2147483648 ++ PID_T_MAX=3D2147483647 ++ PID_T_OFLOW=3D2147483648 ++ PID_T_MIN=3D-2147483648 ++ PID_T_UFLOW=3D-2147483649 ++ OFF_T_MAX=3D9223372036854775807 ++ OFF_T_OFLOW=3D9223372036854775808 ++ OFF_T_MIN=3D-9223372036854775808 ++ OFF_T_UFLOW=3D-9223372036854775809 ++ INTMAX_MAX=3D9223372036854775807 ++ INTMAX_OFLOW=3D9223372036854775808 ++ INTMAX_MIN=3D-9223372036854775808 ++ INTMAX_UFLOW=3D-9223372036854775809 ++ UINTMAX_MAX=3D18446744073709551615 ++ UINTMAX_OFLOW=3D18446744073709551616 ++ FLT_MIN=3D1.1754944e-38 ++ FLT_MAX=3D3.4028235e+38 ++ DBL_MIN=3D2.2250738585072014e-308 ++ DBL_MAX=3D1.7976931348623157e+308 ++ LDBL_MIN=3D3.3621031431120935063e-4932 ++ LDBL_MAX=3D1.189731495357231765e+4932 + test 2147483647 + timeout invalid sleep 0 timeout: invalid time interval 'invalid' Try 'timeout --help' for more information. + test 125 =3D 125 + timeout --kill-after=3Dinvalid 1 sleep 0 timeout: invalid time interval 'invalid' Try 'timeout --help' for more information. + test 125 =3D 125 + timeout 42D sleep 0 timeout: invalid time interval '42D' Try 'timeout --help' for more information. + test 125 =3D 125 +++ date +%s ++ expr 2147483647 - 1436948584 + 100 + KERNEL_OVERFLOW_LIMIT=3D710535163 + timeout 710535163 sleep 0 + test 0 '!=3D' 124 + timeout 4294967296 sleep 0 + test 0 =3D 0 ++ expr 4294967295 / 86400 + 1 + timeout 49711d sleep 0 + test 0 =3D 0 + timeout 999999999999999999999999999999999999999999999999999999999999d s= leep 0 + test 0 =3D 0 + timeout 2.34e+5d sleep 0 + test 124 =3D 0 + fail=3D1 + timeout 2.34 sleep 0 + test 0 =3D 0 + timeout .999999999 sleep 0 + timeout --signal=3Dinvalid 1 sleep 0 timeout: invalid: invalid signal Try 'timeout --help' for more information. + test 125 =3D 125 + timeout 10 . timeout: failed to run command '.': Permission denied + test 126 =3D 126 + timeout 10 no_such timeout: failed to run command 'no_such': No such file or directory + test 127 =3D 127 + Exit 1 + set +e + exit 1 + exit 1 + remove_tmp_ + __st=3D1 + cleanup_ + : + cd /tmp/32-bit/coreutils-8.24 + chmod -R u+rwx /tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.jnKt= + rm -rf /tmp/32-bit/coreutils-8.24/gt-timeout-parameters.sh.jnKt + exit 1 FAIL tests/misc/timeout-parameters.sh (exit status: 1) =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D Testsuite summary for GNU coreutils 8.24 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D # TOTAL: 1 # PASS: 0 # SKIP: 0 # XFAIL: 0 # FAIL: 1 # XPASS: 0 # ERROR: 0 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D See ./tests/test-suite.log Please report to bug-coreutils@HIDDEN =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D gmake[4]: Leaving directory `/tmp/32-bit/coreutils-8.24' GEN check-README GEN check-duplicate-no-install GEN sc-avoid-builtin GEN sc-avoid-io GEN sc-avoid-non-zero GEN sc-avoid-path GEN sc-avoid-timezone GEN sc-avoid-zeroes GEN sc-exponent-grouping GEN sc-lower-case-var GEN check-texinfo gmake[3]: Leaving directory `/tmp/32-bit/coreutils-8.24' gmake[2]: Leaving directory `/tmp/32-bit/coreutils-8.24' gmake[1]: Leaving directory `/tmp/32-bit/coreutils-8.24' --------------070109090606080504070608--
Peter Bray <pdb_ml@HIDDEN>
:bug-coreutils@HIDDEN
.
Full text available.bug-coreutils@HIDDEN
:bug#21061
; Package coreutils
.
Full text available.
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997 nCipher Corporation Ltd,
1994-97 Ian Jackson.