On 08/02/2012 06:03 PM, Jim Meyering wrote: > > Thanks for the pointer. I knew that rang a bell. > For the record, to avoid the problem one must append to the existing log file: > > for i in $(seq 100); do > + : > makerr-$i > make -j25 check -C tests VERBOSE=yes \ > - RUN_EXPENSIVE_TESTS=no >& makerr-$i \ > + RUN_EXPENSIVE_TESTS=no >>& makerr-$i \ > && t=. || t=X > printf $t > done > Oops, right. Stupid of me to miss that in my suggestion (especially because I was well aware of it). Luckily, such blunders never escapes you ;-)
Thanks, Stefano