Coreutils 5.0.1: spurious error from uniq

2003-07-16 Thread Andreas Schwab
$ echo '+: +:' | uniq -u uniq: string comparison failed: No such file or directory uniq: Set LC_ALL='C' to work around the problem. uniq: The strings compared were `+:' and `+:'. The whole error checking in memcoll and xmemcoll is completely bogus. The C standard says in 7.5#3:

Bug in uniq 2.0

2003-07-16 Thread Brancato, Mike
I think I have spotted a bug in uniq. I know 2.1 is out but it is not in debian stable yet. If you need the files I used to do this, let me know. They are a couple megs in size, and one is about 200K lines. Here is an example of it performing out of spec: transmit:~# grep 04-00-0002287 folderli

FYI: coreutils-5.0.1: bug in kill

2003-07-16 Thread Jim Meyering
There's a pretty bad bug in kill. Mea culpa. This means that coreutils-5.0.2 (or maybe coreutils-5.0.90) will be coming soon. $ sleep 9 & ./kill $! [2] 27983 ./kill: ./kill: invalid process id [2]+ Terminated sleep 20 [Exit 1] You'll notice that kill tried to kill the str

command: ls (coreutils) 4.5.8

2003-07-16 Thread Torsten Vogel
hallo, when listing files that are over a given size (100mb) the otherwise nicely formatted ouput of "ls -alp" get's broken: ls -alp VW359_PFREI_mod100_SOL1* -rw-r-1 tvo cad 85178 2003-04-16 22:19 VW359_PFREI_mod100_SOL103.cpr -rwxr-xr-x1 tvo cad 2507 2003

RE: Bug in uniq 2.0 / 5.0

2003-07-16 Thread Brancato, Mike
I tested this with the latest uniq with the same results. -Original Message- From: Brancato, Mike Sent: Wednesday, July 16, 2003 11:18 AM To: '[EMAIL PROTECTED]' Subject: Bug in uniq 2.0 I think I have spotted a bug in uniq. I know 2.1 is out but it is not in debian stable yet. If you

RE: textutils version 2.1 bug

2003-07-16 Thread Parimi, Venkateshwara Rao
>The 'configure' script should not get /bin/sh on that platform. It >should set CONFIG_SHELL to /bin/ksh (or to Bash, if you have installed >that yourself). That's true CONFIG_SHELL is ksh and SHELL is sh >Also, which sh and ksh are you using? Here's what I get on my Solaris >2.6 system. If you

sort: unfold case?

2003-07-16 Thread gregory mott
hello gnuists, now that locale sorting is de rigeur, i find sort wanting of an option to unfold case. it is not always desirable to abandon all the varied attributes of one's locale by specifying LC_COLLATE=C sort. in lieu of that or in the meantime, i am busy looking for how to define myself an

Re: [Coreutils-announce] coreutils-5.0.1 released

2003-07-16 Thread Jim Meyering
Alexandre Duret-Lutz <[EMAIL PROTECTED]> wrote: > On Wed, Jul 16, 2003 at 08:46:26AM +0200, Jim Meyering wrote: >> Alexandre Duret-Lutz <[EMAIL PROTECTED]> wrote: >> "Jim" == Jim Meyering <[EMAIL PROTECTED]> writes: >> > [...] >> > Jim> * src/Makefile.am (bin_PROGRAMS): Add "[". >> > Jim> (_

Re: [Coreutils-announce] coreutils-5.0.1 released

2003-07-16 Thread Alexandre Duret-Lutz
Hi Jim! >>> "Jim" == Jim Meyering <[EMAIL PROTECTED]> writes: [...] Jim> * src/Makefile.am (bin_PROGRAMS): Add "[". Jim> (__SOURCES): New var. Jim> * src/test.c (LBRACKET): Define to 0 if not defined. [...] Is NEWS-OS 4.2R something you care about? Make variables starting with `_' are not por

Re: coreutils-5.0.1 released

2003-07-16 Thread Paul Jarc
Jim Meyering <[EMAIL PROTECTED]> wrote: > * tests/rm/fail-2eperm: Now that we have setuidgid, use it in > place of the kludge in this test. Thanks. I think NON_ROOT_USERNAME should be mentioned in README too. (ATM, README still has a now-out-of-date note that setuidgid ought to be use

Re: coreutils-5.0.1 released

2003-07-16 Thread Paul Jarc
Jim Meyering <[EMAIL PROTECTED]> wrote: > * tests/rm/fail-2eperm: Now that we have setuidgid, use it in > place of the kludge in this test. How about also using this to run the non-root-only tests when "make check" runs as root? BTW, why are there three different ways of reporting thi

Re: [Coreutils-announce] coreutils-5.0.1 released

2003-07-16 Thread Alexandre Duret-Lutz
On Wed, Jul 16, 2003 at 08:46:26AM +0200, Jim Meyering wrote: > Alexandre Duret-Lutz <[EMAIL PROTECTED]> wrote: > "Jim" == Jim Meyering <[EMAIL PROTECTED]> writes: > > [...] > > Jim> * src/Makefile.am (bin_PROGRAMS): Add "[". > > Jim> (__SOURCES): New var. > > Jim> * src/test.c (LBRACKET):

Re: coreutils-5.0.1 released

2003-07-16 Thread Jim Meyering
> Jim Meyering <[EMAIL PROTECTED]> wrote: >> * tests/rm/fail-2eperm: Now that we have setuidgid, use it in >> place of the kludge in this test. > > Thanks. I think NON_ROOT_USERNAME should be mentioned in README too. > (ATM, README still has a now-out-of-date note that setuidgid ought to

Re: [Coreutils-announce] coreutils-5.0.1 released

2003-07-16 Thread Paul Eggert
Jim Meyering <[EMAIL PROTECTED]> writes: > > Is NEWS-OS 4.2R something you care about? Make variables > > Do people still use that OS? Sony NEWS-OS 4.2R was released in 1992, so I highly doubt it. However, NEWS-OS 4.2.1a+ (released 1995) is probably still in use by a diehard or two, since it wa

first post-5.0.1 bug: [ can segfault

2003-07-16 Thread Jim Meyering
FYI, I just noticed this: Running `[' with no arguments would evoke a segfault. * src/test.c (main) [LBRACKET]: Move initialization of argv to precede potential use via test_syntax_error. Index: src/test.c ===