summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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;