[libtest-simple-perl] branch master updated (8ecfae6 -> f856ebf)

gregor herrmann gregoa at debian.org
Thu Jul 21 19:31:37 UTC 2016


This is an automated email from the git hooks/post-receive script.

gregoa pushed a change to branch master
in repository libtest-simple-perl.

      from  8ecfae6   releasing package libtest-simple-perl version 1.302037-1
      adds  fd5d7c7   Remove ancient TODO file
      adds  633caa7   Fix MANIFEST.SKIP
      adds  a91ad0b   Update Changes
      adds  e07e0e3   Version Bump
      adds  451d9d0   v1.302038
      adds  054c14c   Correct some inaccurate 'Ok' docs.
      adds  cd580e1   Add 'Info' event for better diagnostics
      adds  f6637d5   Version Bump
      adds  0ca20a5   Fix spelling issues
      adds  28f2c82   Add SYNOPSIS to info.pm
      adds  413a4c2   Miscellaneous spelling, punctuation and grammar fixes, plus a few typos fixed, too.
      adds  c56ceda   v1.302039
      adds  ba3e998   Version Bump
      adds  3a2f6e5   v1.302040
      adds  e8e617b   IPC: "Fix" win32 file operations
      adds  35a5c65   Merge branch 'windows_ipc'
      adds  a240f20   Version Bump
      adds  cdd7187   Update Changes
      adds  acef679   v1.302041
      adds  5108a4c   Fix files test to use a proper hid
      adds  a777b47   Properly parse filename, then sort on event id
      adds  01eb727   Add regression test for #693
      adds  b13ab60   Merge branch 'fix_ipc_event_parsing'
      adds  2c7d815   Version Bump
      adds  97404c3   Update Changes
      adds  2855072   v1.302042
      adds  d66060f   Fix TODO in t2/tb mixed subtests
      adds  8e7b63e   Version Bump
      adds  a212866   v1.302043
      adds  eab0e42   Fix test that would segv on older perls
      adds  d240712   Version Bump
      adds  1a761f4   v1.302044
      adds  11595e7   Version Bump
      adds  dc82842   v1.302045
      adds  773fac1   Imported Upstream version 1.302045
       new  32c9e83   Merge tag 'upstream/1.302045'
       new  e64e80c   Update debian/changelog
       new  f856ebf   releasing package libtest-simple-perl version 1.302045-1

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Changes                                 |  32 +++++
 MANIFEST                                |   7 +-
 META.json                               |   7 +-
 META.yml                                |   5 +-
 Makefile.PL                             |   2 +-
 debian/changelog                        |   6 +
 lib/Test/Builder.pm                     |   4 +-
 lib/Test/Builder/Formatter.pm           |   2 +-
 lib/Test/Builder/Module.pm              |   2 +-
 lib/Test/Builder/Tester.pm              |   2 +-
 lib/Test/Builder/Tester/Color.pm        |   2 +-
 lib/Test/Builder/TodoDiag.pm            |   2 +-
 lib/Test/More.pm                        |   2 +-
 lib/Test/Simple.pm                      |   2 +-
 lib/Test/Tester.pm                      |   2 +-
 lib/Test/Tester/Capture.pm              |   2 +-
 lib/Test/Tester/CaptureRunner.pm        |   2 +-
 lib/Test/Tester/Delegate.pm             |   2 +-
 lib/Test/use/ok.pm                      |   2 +-
 lib/Test2.pm                            |   2 +-
 lib/Test2/API.pm                        |  41 +++---
 lib/Test2/API/Breakage.pm               |   2 +-
 lib/Test2/API/Context.pm                |  35 +++--
 lib/Test2/API/Instance.pm               |   2 +-
 lib/Test2/API/Stack.pm                  |   2 +-
 lib/Test2/Event.pm                      |   6 +-
 lib/Test2/Event/Bail.pm                 |   2 +-
 lib/Test2/Event/Diag.pm                 |   2 +-
 lib/Test2/Event/Exception.pm            |   2 +-
 lib/Test2/Event/Generic.pm              |   2 +-
 lib/Test2/Event/Info.pm                 | 127 +++++++++++++++++
 lib/Test2/Event/Note.pm                 |   2 +-
 lib/Test2/Event/Ok.pm                   |   7 +-
 lib/Test2/Event/Plan.pm                 |   2 +-
 lib/Test2/Event/Skip.pm                 |   2 +-
 lib/Test2/Event/Subtest.pm              |   2 +-
 lib/Test2/Event/Waiting.pm              |   2 +-
 lib/Test2/Formatter.pm                  |   4 +-
 lib/Test2/Formatter/TAP.pm              |   2 +-
 lib/Test2/Hub.pm                        |  12 +-
 lib/Test2/Hub/Interceptor.pm            |   2 +-
 lib/Test2/Hub/Interceptor/Terminator.pm |   2 +-
 lib/Test2/Hub/Subtest.pm                |   2 +-
 lib/Test2/IPC.pm                        |   2 +-
 lib/Test2/IPC/Driver.pm                 |   2 +-
 lib/Test2/IPC/Driver/Files.pm           | 149 ++++++++++++++++----
 lib/Test2/Util.pm                       |   4 +-
 lib/Test2/Util/ExternalMeta.pm          |   2 +-
 lib/Test2/Util/HashBase.pm              |   2 +-
 lib/Test2/Util/Trace.pm                 |   2 +-
 lib/ok.pm                               |   2 +-
 t/Legacy/subtest/plan.t                 |  49 +++++++
 t/Test2/behavior/Subtest_plan.t         |  19 +++
 t/Test2/modules/API/Context.t           |  19 ++-
 t/Test2/modules/Event/Info.t            |  45 ++++++
 t/Test2/modules/IPC/Driver/Files.t      | 242 +++++++++++++++++++++++++++++++-
 t/Test2/regression/693_ipc_ordering.t   |  30 ++++
 xt/author/pod-spell.t                   |   2 +
 58 files changed, 798 insertions(+), 126 deletions(-)
 create mode 100644 lib/Test2/Event/Info.pm
 create mode 100644 t/Legacy/subtest/plan.t
 create mode 100644 t/Test2/behavior/Subtest_plan.t
 create mode 100644 t/Test2/modules/Event/Info.t
 create mode 100644 t/Test2/regression/693_ipc_ordering.t

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libtest-simple-perl.git



More information about the Pkg-perl-cvs-commits mailing list