coverage merged

master
Joey Hess 2011-12-06 15:03:34 -04:00
parent 2e4340766e
commit f6440dd5e6
2 changed files with 7 additions and 0 deletions

1
debian/changelog vendored
View File

@ -3,6 +3,7 @@ ikiwiki (3.20111108) UNRELEASED; urgency=low
* Consume all stdin when rcs_receive short-circuits, * Consume all stdin when rcs_receive short-circuits,
to avoid git SIGPIPE race. to avoid git SIGPIPE race.
* Add path and path_natural sort orders (smcv) * Add path and path_natural sort orders (smcv)
* Test coverage can be checked with `make coverage` (smcv)
-- Joey Hess <joeyh@debian.org> Mon, 05 Dec 2011 15:14:48 -0400 -- Joey Hess <joeyh@debian.org> Mon, 05 Dec 2011 15:14:48 -0400

View File

@ -11,8 +11,14 @@ Limitations of the current branch, which uses [[!cpan Devel::Cover]]:
the two copies of each module; not a problem for [[plugins/contrib/trail]] the two copies of each module; not a problem for [[plugins/contrib/trail]]
which only has one test. which only has one test.
> How annoying. I think in at least some cases there is reason to use
> `./blib` -- perhaps everything that users `.` should be changed to use
> it. --[[Joey]]
* The [[plugins/git]] and [[plugins/mercurial]] plugins want to `chdir`, * The [[plugins/git]] and [[plugins/mercurial]] plugins want to `chdir`,
and so does [[!cpan Devel::Cover]], so they fight. For now, those tests and so does [[!cpan Devel::Cover]], so they fight. For now, those tests
are disabled under `make coverage`. are disabled under `make coverage`.
--[[smcv]] --[[smcv]]
> [[merged|done]] --[[Joey]]