summaryrefslogtreecommitdiff
path: root/regress/lib/libpthread/system/system.c
diff options
context:
space:
mode:
authorMarco S Hyman <marc@cvs.openbsd.org>2001-11-09 00:13:33 +0000
committerMarco S Hyman <marc@cvs.openbsd.org>2001-11-09 00:13:33 +0000
commit6173b5a2974ff4b0a0b528da6ceeba4cd6d0d87b (patch)
treec9853cc9d87ef451b5907707927d6841b5018bc1 /regress/lib/libpthread/system/system.c
parenta2c2f6758bc8f4b18f0594d4bc37b610b8f60c27 (diff)
another pthread regression test: system/waitpid/wait4
Diffstat (limited to 'regress/lib/libpthread/system/system.c')
-rw-r--r--regress/lib/libpthread/system/system.c27
1 files changed, 27 insertions, 0 deletions
diff --git a/regress/lib/libpthread/system/system.c b/regress/lib/libpthread/system/system.c
new file mode 100644
index 00000000000..4f631c7d8ae
--- /dev/null
+++ b/regress/lib/libpthread/system/system.c
@@ -0,0 +1,27 @@
+/* $OpenBSD: system.c,v 1.1 2001/11/09 00:13:32 marc Exp $ */
+/*
+ * Copyright (c) 2001 Marco S. Hyman
+ *
+ * Permission to copy all or part of this material with or without
+ * modification for any purpose is granted provided that the above
+ * copyright notice and this paragraph are duplicated in all copies.
+ *
+ * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
+ * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+ */
+
+/*
+ * system checks the threads system interface and that waitpid/wait4
+ * works correctly.
+ */
+
+#include <stdlib.h>
+#include "test.h"
+
+int
+main(int argc, char **argv)
+{
+ ASSERT(system("ls") == 0);
+ SUCCEED;
+}