Skip to content

Commit

Permalink
Bug 1137669: 003safesys.t doesn't test any file due to a missing -T a…
Browse files Browse the repository at this point in the history
…rgument (and broken syntax in Support::Systemexec)

r=dylan a=glob
  • Loading branch information
LpSolit committed Mar 16, 2015
1 parent 56d130c commit 694d136
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions t/Support/Systemexec.pm
Expand Up @@ -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;

0 comments on commit 694d136

Please sign in to comment.