aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorErik Andersen <andersen@codepoet.org>2000-04-19 18:52:56 +0000
committerErik Andersen <andersen@codepoet.org>2000-04-19 18:52:56 +0000
commite3ed156eeb241234f0ad7d12363172e655209654 (patch)
tree60af21090f97b033785093ed00a123006808cf88 /tests
parent1101d23604dae236063938c23470c85c17f76988 (diff)
downloadbusybox-e3ed156eeb241234f0ad7d12363172e655209654.tar.gz
Make the sys logger for so that concurrent logging will work
properly (see tests/syslog_test.c for example). -Erik
Diffstat (limited to 'tests')
-rw-r--r--tests/.cvsignore1
-rw-r--r--tests/Makefile2
-rw-r--r--tests/syslog_test.c19
3 files changed, 22 insertions, 0 deletions
diff --git a/tests/.cvsignore b/tests/.cvsignore
index 5f8452313..3645cf92f 100644
--- a/tests/.cvsignore
+++ b/tests/.cvsignore
@@ -13,3 +13,4 @@ mv
mv_*.bb
mv_*.gnu
mv_tests
+syslog_test
diff --git a/tests/Makefile b/tests/Makefile
index c4fb0e911..508bc64f2 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -29,3 +29,5 @@ BBL := $(shell pushd .. >/dev/null && \
${BBL}: ../busybox
rm -f $@
ln ../busybox $@
+
+syslog_test: syslog_test.c
diff --git a/tests/syslog_test.c b/tests/syslog_test.c
new file mode 100644
index 000000000..fb4c691b1
--- /dev/null
+++ b/tests/syslog_test.c
@@ -0,0 +1,19 @@
+#include <syslog.h>
+
+int do_log(char* msg, int delay)
+{
+ openlog("testlog", LOG_PID, LOG_DAEMON);
+ while(1) {
+ syslog(LOG_ERR, "%s: testing one, two, three\n", msg);
+ sleep(delay);
+ }
+ closelog();
+ return(0);
+};
+
+int main(void)
+{
+ if (fork()==0)
+ do_log("A", 2);
+ do_log("B", 3);
+}