From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <829f3cf0bfc89df6fe2c7b750612c1ab@coraid.com> From: erik quanstrom Date: Wed, 28 May 2008 15:34:54 -0400 To: 9fans@9fans.net In-Reply-To: d7f7814bdd6fc403d7066806b8d3c9c1@yourdomain.dom MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Subject: Re: [9fans] bugs in test command Topicbox-Message-UUID: ae832ca2-ead3-11e9-9d60-3106f5b1d025 > I updated my system today and had trouble with > the usbfat:, 9fat:, and pull scripts because of errors > by the new test command. > > term% ls /dev/kfs.cmd > ls: /dev/kfs.cmd: '/dev/kfs.cmd' file does not exist > term% test -f /dev/kfs.cmd > term% echo $status > > term% > > > Thank you. ; 9fs sources ; cp /n/sources/plan9/sys/src/cmd/test.c . ; 8c test.c ; 8l -o test test.c ; ./test -f /dev/kfs.cmd;echo $status test 5551: false not the change in test. ; bind /n/sources/plan9/386/lib /386/lib ; 8l -o test test.8 ; ./test -f /dev/kfs.cmd;echo $status test 5589: false not a library change ; /n/sources/plan9/386/bin/8c test.c ; /n/sources/plan9/386/bin/8l -o test test.8 ; ./test -f /dev/kfs.cmd;echo $status test 5596: false not the compiler. ; /n/sources/plan9/386/bin/test -f /dev/kfs.cmd ; echo $status but the executable does appear to be broken anyway. if you recompile test, things should start working again. - erik