summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorArch Librarian <arch@canonical.com>2004-09-20 16:51:17 +0000
committerArch Librarian <arch@canonical.com>2004-09-20 16:51:17 +0000
commit8bb5959b7e2637a818d5c3c9cd38b9a1a0287331 (patch)
treea8a4ceaab287b130ab75a267a430e6bb7ce3b886 /test
parent92e889c8856ce16f58cf6aefb7f11f0ff189be29 (diff)
Method test program
Author: jgg Date: 1998-11-03 01:39:43 GMT Method test program
Diffstat (limited to 'test')
-rw-r--r--test/makefile6
-rw-r--r--test/mthdcat.cc20
2 files changed, 26 insertions, 0 deletions
diff --git a/test/makefile b/test/makefile
index 299389873..bf1b1834c 100644
--- a/test/makefile
+++ b/test/makefile
@@ -5,6 +5,12 @@ SUBDIR=test
# Bring in the default rules
include ../buildlib/defaults.mak
+# Program for testing methods
+PROGRAM=mthdcat
+SLIBS =
+SOURCE = mthdcat.cc
+include $(PROGRAM_H)
+
# Scratch program to test incomplete code fragments in
PROGRAM=scratch-test
SLIBS = -lapt-pkg
diff --git a/test/mthdcat.cc b/test/mthdcat.cc
new file mode 100644
index 000000000..25d09a3f5
--- /dev/null
+++ b/test/mthdcat.cc
@@ -0,0 +1,20 @@
+/* Usage, mthdcat < cmds | methods/mthd
+ All this does is cat a file into the method without closing the FD when
+ the file ends */
+
+#include <unistd.h>
+
+int main()
+{
+ char Buffer[4096];
+
+ while (1)
+ {
+ int Res = read(STDIN_FILENO,Buffer,sizeof(Buffer));
+ if (Res <= 0)
+ while (1) sleep(100);
+ if (write(STDOUT_FILENO,Buffer,Res) != Res)
+ break;
+ }
+ return 0;
+}