bug-tar
[Top][All Lists]
Advanced

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

Re: [Bug-tar] [GNU tar 1.24] testsuite: 34 36 failed


From: Paul Eggert
Subject: Re: [Bug-tar] [GNU tar 1.24] testsuite: 34 36 failed
Date: Sat, 30 Oct 2010 15:30:03 -0700
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.12) Gecko/20101027 Thunderbird/3.1.6

On 10/30/2010 06:59 AM, tsteven4 wrote:
> 1.24 fails tests 34, 36 for me.

Thanks for trying the tests.  The test 34 failure is known, and
it's on our list of things to fix, but the test 36 failure is new.
Can you please modify tests/testsuite by inserting a "kdump"
at the crucial place?  That is, replace this:

# Tar should work when there are few, but enough, file descriptors.
((ulimit -n 10 &&
  tar -cf archive3.tar a 3<&- 4<&- 5<&- 6<&- 7<&- 8<&- 9<&- &&
  tar -xf archive3.tar -C dest3 a 3<&- 4<&- 5<&- 6<&- 7<&- 8<&- 9<&-
 ) &&
 diff -r a dest3/a >/dev/null 2>&1
) || { diff -r a dest3/a; exit 1; }

with this:

# Tar should work when there are few, but enough, file descriptors.
((ulimit -n 10 &&
  tar -cf archive3.tar a 3<&- 4<&- 5<&- 6<&- 7<&- 8<&- 9<&- &&
  ktrace -f /tmp/tr tar -xf archive3.tar -C dest3 a 3<&- 4<&- 5<&- 6<&- 7<&- 
8<&- 9<&-
 ) &&
 diff -r a dest3/a >/dev/null 2>&1
) || { diff -r a dest3/a; exit 1; }

and then run this:

cd tests
make check TESTSUITEFLAGS=36
kdump -f /tmp/tr

and send us the output?



reply via email to

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