From: zach%zachlipton.com <> Date: Mon, 10 Sep 2001 02:48:14 +0000 (+0000) Subject: Oops. Forgot to check this is. X-Git-Tag: bugzilla-2.14.1~144 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6596544fef79b37ed08c4bf8433df8779093ec9a;p=thirdparty%2Fbugzilla.git Oops. Forgot to check this is. --- diff --git a/t/Support/Systemexec.pm b/t/Support/Systemexec.pm new file mode 100644 index 0000000000..eee445c14a --- /dev/null +++ b/t/Support/Systemexec.pm @@ -0,0 +1,12 @@ +package Systemexec; +require Exporter; +@ISA = qw(Exporter); +@EXPORT = qw(system exec); +@EXPORT_OK = qw(); +sub system($$@) { + 1; +} +sub exec($$@) { + 1; +} +1;