Sophie

Sophie

distrib > Mageia > 6 > armv7hl > media > core-release-src > by-pkgid > eff40f98e29ed33bc7f2fccdf9b3b29e > files > 1

perl-Linux-Smaps-0.130.0-6.mga6.src.rpm

--- Linux-Smaps-0.13/t/04.t.TESTS_FAIL	2015-03-03 19:29:53.152137217 +0200
+++ Linux-Smaps-0.13/t/04.t	2015-03-03 19:30:15.082924135 +0200
@@ -19,13 +19,13 @@
 plan tests => 4;
 
 my $s=eval { Linux::Smaps->new($init_pid) };
-like $@, qr{read failed}, "Permission denied to read process with pid $init_pid";
+like $@, qr{Cannot open|read failed}, "Permission denied to read process with pid $init_pid";
 ok !$s, "No object constructed";
 
 $s=Linux::Smaps->new(uninitialized=>1);
 $s->pid=$init_pid;
 is $s->update, undef, "  ->update";
-like $s->lasterror, qr{read failed}, "  ->lasterror";
+like $s->lasterror, qr{Cannot open|read failed}, "  ->lasterror";
 
 done_testing;