about summary refs log tree commit homepage
path: root/Makefile.PL
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2021-03-15 12:57:52 +0100
committerEric Wong <e@80x24.org>2021-03-15 16:53:59 -0400
commitaf9a34eba5696fc881d2d61864fa62220ccf8ba5 (patch)
treea263c854edd686394bfa06eb96a5344a1cbe93a7 /Makefile.PL
parentd5bc3deb285453d777f253dc36cf4b1ae694a6f8 (diff)
downloadpublic-inbox-af9a34eba5696fc881d2d61864fa62220ccf8ba5.tar.gz
This saves over 100ms in t/lei-q-remote-import.t so far when
TMPDIR is on an SSD.  If we can memoize inbox creation to save a
few dozen milliseconds every test, this could add up to
noticeable savings across our entire test suite.
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.PL b/Makefile.PL
index 21d3d6ea..8165e601 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -176,7 +176,8 @@ WriteMakefile(
         },
         MAN3PODS => \%man3,
         clean => {
-                FILES => 't/home*/setup* t/home*/t* t/home*/.public-inbox'
+                FILES => 't/home*/setup* t/home*/t* t/home*/.public-inbox '.
+                        't/data-gen/*'
         },
 );