File: Changes

package info (click to toggle)
libtest2-plugin-nowarnings-perl 0.05-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 260 kB
  • ctags: 7
  • sloc: perl: 229; makefile: 2
file content (44 lines) | stat: -rw-r--r-- 1,556 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
0.05     2016-11-07

- Skip compile.t on Windows. This test uses IPC::Run3 which doesn't seem to
  work well on that platform. Fixed RT #118443. Reported by Alexandr Ciornii.


0.04     2016-10-23

- Load Test2::Event::Warning in the plugin instead of relying on Test2 to do
  it for us. This should avoid the bug reported by Todd Rinaldo and eliminates
  the need for the INIT block, which caused it's own problems.


0.03     2016-10-17

- Add the $SIG{__WARN__} hook in an INIT block. We really don't want to
  trigger this because of a compile-time warning, and because of a bug in
  Test::Builder, this can actually cause the warning to be lost
  entirely. Reported by Todd Rinaldo in
  https://github.com/Test-More/test-more/issues/729.

- The Test2::Event::Warning event now returns true for increments_count. That
  means that the test failure caused by a warning will not be output as a TAP
  test line. Previously this was just seen as a diag line, which could be
  quite confusing. Reported by Todd Rinaldo in
  https://github.com/Test-More/test-more/issues/728


0.02     2016-05-23

- Make the event return false for increments_count, so warnings-related
  failures don't cause test count issues.

- Make the plugin add a prefix to the warning message rather than adding it in
  the event class's summary method.

- Make causes_fail an attribute in the event. It defaults to to true, but can
  be set to false if you'd like to repurpose the event object for something
  else.


0.01     2016-05-22

- First release upon an unsuspecting world.