From: Friedrich Beckmann Date: Fri, 17 Jun 2022 13:49:23 +0000 (+0200) Subject: perl-module: Remove loading of memory:usage module X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=05297509d237dc99ba7504ccf260e995586bc3b4;p=pspp perl-module: Remove loading of memory:usage module The memory leakage/usage test was removed with commit https://git.savannah.gnu.org/cgit/pspp.git/commit/?id=20934a68593edbd52577f1ba0ea93c74eb018af5 but the memory module was still loaded. On debian this memory module requires an additional dependency libmemory-usage-perl which is not required. As the memory module is not used inside the test I removed it. --- diff --git a/perl-module/t/Pspp.t b/perl-module/t/Pspp.t index b8b76d3c35..e9d4e613e2 100644 --- a/perl-module/t/Pspp.t +++ b/perl-module/t/Pspp.t @@ -28,7 +28,6 @@ use Test::More tests => 37; use Text::Diff; use File::Temp qw/ tempfile tempdir /; -use Memory::Usage; BEGIN { use_ok('PSPP') }; #########################