diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2015-03-16 18:15:08 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2015-03-16 18:15:08 +0100 |
commit | 694d136a06065dbba82b98fe71b432b342c6f82c (patch) | |
tree | c8a016025cd483379268b70357debcf82bf41abd | |
parent | 56d130c40ca3f371c53c92426d8d27def45a24dc (diff) | |
download | bugzilla-694d136a06065dbba82b98fe71b432b342c6f82c.tar.gz bugzilla-694d136a06065dbba82b98fe71b432b342c6f82c.tar.xz |
Bug 1137669: 003safesys.t doesn't test any file due to a missing -T argument (and broken syntax in Support::Systemexec)
r=dylan a=glob
-rw-r--r-- | t/Support/Systemexec.pm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/t/Support/Systemexec.pm b/t/Support/Systemexec.pm index 65be229e3..e73763f8f 100644 --- a/t/Support/Systemexec.pm +++ b/t/Support/Systemexec.pm @@ -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; |