X-Git-Url: http://www.git.stargrave.org/?a=blobdiff_plain;f=Makefile.PL;h=8d90ad46cf64c0753b5ad9823b1553860231d30b;hb=f60f934cfe1e7a06c853741fbabbbbe3a9a747a4;hp=30b8adda2f0166126a543ba0b9cd42367a155e49;hpb=9ccd182245d5924cf90a4152b032fca5b99d32e6;p=public-inbox.git diff --git a/Makefile.PL b/Makefile.PL index 30b8adda..8d90ad46 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -138,10 +138,6 @@ WriteMakefile( # Plack is needed for public-inbox-httpd and PublicInbox::WWW # 'Plack' => 0, - # Filesys::Notify::Simple is pulled in by Plack, but also - # needed by public-inbox-watch (for now) - # 'Filesys::Notify::Simple' => 0, - # TODO: this should really be made optional... 'URI::Escape' => 0, @@ -180,18 +176,22 @@ syntax:: \$(my_syntax) changed = \$(shell git ls-files -m) dsyn :: \$(addsuffix .syntax, \$(filter \$(changed), \$(syn_files))) -check-manifest :: MANIFEST - if test -e .git && git ls-files >\$?.gen 2>&1; then \\ - diff -u \$? \$?.gen; fi +check_manifest := if test -e .git && git ls-files >MANIFEST.gen 2>&1; then \\ + diff -u MANIFEST MANIFEST.gen; fi + +check-manifest : MANIFEST + \$(check_manifest) # the traditional way running per-*.t processes: -check-each :: pure_all check-manifest +check-each :: pure_all \$(EATMYDATA) \$(PROVE) --state=save -bvw -j\$(N) + -@\$(check_manifest) # lightly-tested way to run tests, relies "--state=save" in check-each # for best performance -check-run :: pure_all check-manifest +check-run :: pure_all \$(EATMYDATA) \$(PROVE) -bvw t/run.perl :: -j\$(N) + -@\$(check_manifest) check :: check-each