Commit 694d136a authored by Frédéric Buclin's avatar Frédéric Buclin

Bug 1137669: 003safesys.t doesn't test any file due to a missing -T argument…

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
parent 56d130c4
...@@ -11,14 +11,15 @@ use 5.10.1; ...@@ -11,14 +11,15 @@ use 5.10.1;
use strict; use strict;
use warnings; use warnings;
require Exporter; use parent qw(Exporter);
@ISA = qw(Exporter); @Support::Systemexec::EXPORT = qw(system exec);
@EXPORT = qw(system exec);
@EXPORT_OK = qw();
sub system($$@) { sub system($$@) {
1; 1;
} }
sub exec($$@) { sub exec($$@) {
1; 1;
} }
1; 1;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment