From 03b9ca6d4ecf2577958530b8390d675c73a58825 Mon Sep 17 00:00:00 2001 From: Havoc Pennington Date: Sat, 5 Apr 2003 00:37:17 +0000 Subject: 2003-04-04 Havoc Pennington * dbus/dbus-spawn.c, dbus/dbus-spawn.h: Change dbus_spawn to return a "babysitter" object that is used to monitor the status of the spawned process and reap it when required. * test/test-segfault.c, test/test-exit.c, test/test-sleep-forever.c: binaries that do various lame things, used in the test suite. * dbus/dbus-sysdeps.c: kill _dbus_errno_to_string() --- test/test-exit.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 test/test-exit.c (limited to 'test/test-exit.c') diff --git a/test/test-exit.c b/test/test-exit.c new file mode 100644 index 00000000..abb95865 --- /dev/null +++ b/test/test-exit.c @@ -0,0 +1,8 @@ +/* This is a process that just exits with a failure code */ + +int +main (int argc, char **argv) +{ + + return 1; +} -- cgit