Re: [committed] Fix up run_all.sh

2014-09-17 Thread Mike Stump
On Sep 17, 2014, at 12:16 PM, Jakub Jelinek wrote: > On Wed, Sep 17, 2014 at 12:13:51PM -0700, Mike Stump wrote: >> On Sep 17, 2014, at 11:25 AM, Jakub Jelinek wrote: >>> - if mkdir $GCC_RUNTEST_PARALLELIZE_DIR/$par_count; then >>> + if mkdir $GCC_RUNTEST_PARALLELIZE_DIR/$

Re: [committed] Fix up run_all.sh

2014-09-17 Thread Jakub Jelinek
On Wed, Sep 17, 2014 at 12:13:51PM -0700, Mike Stump wrote: > On Sep 17, 2014, at 11:25 AM, Jakub Jelinek wrote: > > - if mkdir $GCC_RUNTEST_PARALLELIZE_DIR/$par_count; then > > + if mkdir $GCC_RUNTEST_PARALLELIZE_DIR/$par_count 2>/dev/null; > > then > > So, I can’t help

Re: [committed] Fix up run_all.sh

2014-09-17 Thread Mike Stump
On Sep 17, 2014, at 11:25 AM, Jakub Jelinek wrote: > - if mkdir $GCC_RUNTEST_PARALLELIZE_DIR/$par_count; then > + if mkdir $GCC_RUNTEST_PARALLELIZE_DIR/$par_count 2>/dev/null; > then So, I can’t help but think we should just do a mkdir -p for this and be done with it

[committed] Fix up run_all.sh

2014-09-17 Thread Jakub Jelinek
Hi! I've committed following fix as obvious, to avoid thousands of mkdir: cannot create directory `/usr/src/gcc/obj084/gcc/testsuite/ada/acats-parallel/10': File exists lines in output when checking acats in parallel. 2014-09-17 Jakub Jelinek