aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rw-r--r--t/parse.t4
2 files changed, 3 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 0e47423..81444b7 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+- testsuite:
+ o revert workaround perl-5.26 vs librpm bug which results on exit cleanup
+
Version 5.14 - 7 September 2017
- use native 64bit integers instead of Math::Int64
diff --git a/t/parse.t b/t/parse.t
index bcbc0b4..6d80265 100644
--- a/t/parse.t
+++ b/t/parse.t
@@ -5,7 +5,6 @@ use strict;
use warnings;
use Test::More tests => 41;
use MDV::Packdrakeng;
-use POSIX '_exit';
use URPM;
use URPM::Build;
@@ -118,6 +117,3 @@ ok(URPM::rpmvercmp("1:1-1mdk", "2:1-1mdk") == -1, "epoch 1 vs 2 = -1");
ok(defined $pkg, "Parsing a srpm works");
is($pkg->arch, 'src', 'srpm arch is "src"');
}
-
-# workaround perl-5.26 vs librpm resulting in 'panic: free from wrong pool, 0!=6c7010 during global destruction.':
-END { POSIX::_exit($?) };