From 8bb5959b7e2637a818d5c3c9cd38b9a1a0287331 Mon Sep 17 00:00:00 2001 From: Arch Librarian Date: Mon, 20 Sep 2004 16:51:17 +0000 Subject: Method test program Author: jgg Date: 1998-11-03 01:39:43 GMT Method test program --- test/makefile | 6 ++++++ test/mthdcat.cc | 20 ++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 test/mthdcat.cc (limited to 'test') 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 + +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; +} -- cgit v1.2.3