]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1137669: 003safesys.t doesn't test any file due to a missing -T argument (and...
authorFrédéric Buclin <LpSolit@gmail.com>
Mon, 16 Mar 2015 17:15:08 +0000 (18:15 +0100)
committerFrédéric Buclin <LpSolit@gmail.com>
Mon, 16 Mar 2015 17:15:08 +0000 (18:15 +0100)
r=dylan a=glob

t/Support/Systemexec.pm

index 65be229e3c5840a7ceac926f4307f5f59597be99..e73763f8f01183b073ee6933056be76161ffd339 100644 (file)
@@ -11,14 +11,15 @@ use 5.10.1;
 use strict;
 use warnings;
 
-require Exporter;
-@ISA = qw(Exporter);
-@EXPORT = qw(system exec);
-@EXPORT_OK = qw();
+use parent qw(Exporter);
+@Support::Systemexec::EXPORT = qw(system exec);
+
 sub system($$@) {
   1;
 }
+
 sub exec($$@) {
   1;
 }
+
 1;