summaryrefslogtreecommitdiffstats
path: root/t/Support
diff options
context:
space:
mode:
authorzach%zachlipton.com <>2001-09-10 04:48:14 +0200
committerzach%zachlipton.com <>2001-09-10 04:48:14 +0200
commit6596544fef79b37ed08c4bf8433df8779093ec9a (patch)
tree0081bf7b6ef9395b1b6ca01df0004e3b0e02d8fc /t/Support
parentfaf997288b1c1d04d48e87a5f0b395a24e4476b1 (diff)
downloadbugzilla-6596544fef79b37ed08c4bf8433df8779093ec9a.tar.gz
bugzilla-6596544fef79b37ed08c4bf8433df8779093ec9a.tar.xz
Oops. Forgot to check this is.
Diffstat (limited to 't/Support')
-rw-r--r--t/Support/Systemexec.pm12
1 files changed, 12 insertions, 0 deletions
diff --git a/t/Support/Systemexec.pm b/t/Support/Systemexec.pm
new file mode 100644
index 000000000..eee445c14
--- /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;