From dd95d578380030ba587a471747e77cef4f0b34ed Mon Sep 17 00:00:00 2001 From: "bzrmirror%bugzilla.org" Date: Mon, 16 Mar 2015 17:30:51 +0000 Subject: [PATCH] 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 git-svn-id: svn://10.0.0.236/trunk@265882 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/webtools/bugzilla/.bzrrev | 2 +- mozilla/webtools/bugzilla/.gitrev | 2 +- mozilla/webtools/bugzilla/t/Support/Systemexec.pm | 9 +++++---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/mozilla/webtools/bugzilla/.bzrrev b/mozilla/webtools/bugzilla/.bzrrev index 1bdb6bea521..6a3592f53f6 100644 --- a/mozilla/webtools/bugzilla/.bzrrev +++ b/mozilla/webtools/bugzilla/.bzrrev @@ -1 +1 @@ -9338 \ No newline at end of file +9339 \ No newline at end of file diff --git a/mozilla/webtools/bugzilla/.gitrev b/mozilla/webtools/bugzilla/.gitrev index 93e9cbfe307..0c44d2fa71a 100644 --- a/mozilla/webtools/bugzilla/.gitrev +++ b/mozilla/webtools/bugzilla/.gitrev @@ -1 +1 @@ -56d130c40ca3f371c53c92426d8d27def45a24dc \ No newline at end of file +694d136a06065dbba82b98fe71b432b342c6f82c \ No newline at end of file diff --git a/mozilla/webtools/bugzilla/t/Support/Systemexec.pm b/mozilla/webtools/bugzilla/t/Support/Systemexec.pm index 65be229e3c5..e73763f8f01 100644 --- a/mozilla/webtools/bugzilla/t/Support/Systemexec.pm +++ b/mozilla/webtools/bugzilla/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;