isync

mailbox synchronization program
git clone https://git.code.sf.net/p/isync/isync
Log | Files | Refs | README | LICENSE

commit ef2caa074edfa0f6124aecead56e8253f047819c
parent 5fee222f8408d5dd82b40d53c663b8ceffa13914
Author: Oswald Buddenhagen <ossi@users.sf.net>
Date:   Sun, 29 Dec 2019 11:59:05 +0100

autotest: create the temp dir in $TEMP

on modern systems, this makes it likely to end up on tmpfs, which is a
lot faster and ssd-friendlier.

the symlink is not deleted at the end, to minimize fs churn. that means
it will be dangling after a reboot, which gets fixed in the next run.

Diffstat:
Msrc/run-tests.pl | 9++++++---
1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/src/run-tests.pl b/src/run-tests.pl @@ -20,11 +20,16 @@ use warnings; use strict; use Cwd; use File::Path; +use File::Temp 'tempdir'; my $use_vg = $ENV{USE_VALGRIND}; my $mbsync = getcwd()."/mbsync"; --d "tmp" or mkdir "tmp"; +if (!-d "tmp") { + unlink "tmp"; + my $tdir = tempdir(); + symlink $tdir, "tmp" or die "Cannot symlink temp directory: $!\n"; +} chdir "tmp" or die "Cannot enter temp direcory.\n"; sub show($$$); @@ -236,8 +241,6 @@ test("max messages + expunge", \@x50, \@X51, @O51); ################################################################################ -chdir ".."; -rmdir "tmp"; print "OK.\n"; exit 0;