File: NoteStderr.pm

package info (click to toggle)
libffi-checklib-perl 0.31-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 504 kB
  • sloc: perl: 520; sh: 20; makefile: 2
file content (38 lines) | stat: -rw-r--r-- 548 bytes parent folder | download | duplicates (3)
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
package Test2::Tools::NoteStderr;

use strict;
use warnings;
use Test2::API qw( context );
use base qw( Exporter );

our @EXPORT_OK = qw( note_stderr );

BEGIN {
  eval q{
    use Capture::Tiny qw( capture_stderr );
  };
  if($@)
  {
    eval q{
      sub capture_stderr (&) { $_[0]->() };
    };
  }
}

sub note_stderr (&)
{
  my($code) = @_;
  my($stderr, $exception) = capture_stderr {
    eval {
      $code->();
    };
    $@;
  };
  my $ctx = context();
  $ctx->note($stderr);
  $ctx->release;
  die $exception if $exception;
  return;
}

1;