coreutils
[Top][All Lists]
Advanced

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

Re: [PATCH 3/8] split: add tests


From: Pádraig Brady
Subject: Re: [PATCH 3/8] split: add tests
Date: Sat, 30 Apr 2011 17:51:52 +0100
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1.8) Gecko/20100227 Thunderbird/3.0.3

On 30/04/11 14:31, Jim Meyering wrote:
> +for total_n_lines in 5 3000 20000; do
> +  for i in 2 51 598; do
> +    # Don't create too many files/processes.
> +    case $i:$total_n_lines in 2:5);; *) continue;; esac

So the other combos are only for developer debug?
A comment to clariy would be good.
Perhaps they could be enabled if RUN_VERY_EXPENSIVE_TESTS ?

> +
> +    seq $total_n_lines > in || framework_failure_

The `seq` line should be moved to the outer loop

> +    split -l$i --filter='xz > $FILE.xz' in out- || fail=1
> +    xz -dc out-* > out || fail=1
> +    compare in out || fail=1
> +    rm -f in out*

Ditto for `rm -f in`

> +  done
> +done

cheers,
Pádraig.



reply via email to

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