Download raw body.
storing regress test data outside of /tmp
On Thu, Oct 01, 2020 at 07:58:21PM BST, Stefan Sperling wrote: > +++ regress/cmdline/common.sh > [...] > - local testroot=`mktemp -p /tmp -d got-test-$testname-XXXXXXXX` > + local testroot=$(mktemp -d "$GOT_TEST_ROOT/got-test-$testname-XXXXXXXX") Hi Stefan, As much as I prefer $() vs. ``, the above looks odd when all below use the latter style. Or perhaps... all of the below look odd ;^) Regards, Raf > --- regress/cmdline/import.sh > +++ regress/cmdline/import.sh > - local testroot=`mktemp -p /tmp -d got-test-$testname-XXXXXXXX` > + local testroot=`mktemp -d "$GOT_TEST_ROOT/got-test-$testname-XXXXXXXX"` > [...] > - local testroot=`mktemp -p /tmp -d got-test-$testname-XXXXXXXX` > + local testroot=`mktemp -d "$GOT_TEST_ROOT/got-test-$testname-XXXXXXXX"` > [...] > - local testroot=`mktemp -p /tmp -d got-test-$testname-XXXXXXXX` > + local testroot=`mktemp -d "$GOT_TEST_ROOT/got-test-$testname-XXXXXXXX"` > [...] > - local testroot=`mktemp -p /tmp -d got-test-$testname-XXXXXXXX` > + local testroot=`mktemp -d "$GOT_TEST_ROOT/got-test-$testname-XXXXXXXX"`
storing regress test data outside of /tmp