about summary refs log tree commit diff
path: root/libio/tst-popen1.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2008-07-27 18:26:13 +0000
committerUlrich Drepper <drepper@redhat.com>2008-07-27 18:26:13 +0000
commitd6e0c2a67dbdb3f940d60f68bbcf58a5bdee4a97 (patch)
tree80154bbf66005a9d32db583091847ec051519012 /libio/tst-popen1.c
parent11ed3eaed92bf9e04925ec50a696eda5b6df0c33 (diff)
downloadglibc-d6e0c2a67dbdb3f940d60f68bbcf58a5bdee4a97.tar.gz
glibc-d6e0c2a67dbdb3f940d60f68bbcf58a5bdee4a97.tar.xz
glibc-d6e0c2a67dbdb3f940d60f68bbcf58a5bdee4a97.zip
* sysdeps/unix/sysv/linux/syscalls.list: Add __pipe2 alias.
	* io/pipe2.c: Likewise.
	* sysdeps/unix/sysv/linux/kernel-features.h: Define __ASSUME_PIPE2
	instead of __ASSUME_PACCEPT.
	* include/unistd.h: Declare __have_pipe2.
	* libio/iopopen.c: Implement "e" flag.
	* libio/Makefile (tests): Add tst-popen1.
	* libio/tst-popen1.c: New file.
Diffstat (limited to 'libio/tst-popen1.c')
-rw-r--r--libio/tst-popen1.c49
1 files changed, 49 insertions, 0 deletions
diff --git a/libio/tst-popen1.c b/libio/tst-popen1.c
new file mode 100644
index 0000000000..bae6615b9b
--- /dev/null
+++ b/libio/tst-popen1.c
@@ -0,0 +1,49 @@
+#include <fcntl.h>
+#include <stdio.h>
+
+static int
+do_test (void)
+{
+  int res = 0;
+
+  FILE *fp = popen ("echo hello", "r");
+  if (fp == NULL)
+    {
+      puts ("first popen failed");
+      res = 1;
+    }
+  else
+    {
+      int fd = fileno (fp);
+      if (fcntl (fd, F_GETFD) == FD_CLOEXEC)
+	{
+	  puts ("first popen(\"r\") set FD_CLOEXEC");
+	  res = 1;
+	}
+
+      fclose (fp);
+    }
+
+  fp = popen ("echo hello", "re");
+  if (fp == NULL)
+    {
+      puts ("second popen failed");
+      res = 1;
+    }
+  else
+    {
+      int fd = fileno (fp);
+      if (fcntl (fd, F_GETFD) != FD_CLOEXEC)
+	{
+	  puts ("second popen(\"r\") did not set FD_CLOEXEC");
+	  res = 1;
+	}
+
+      fclose (fp);
+    }
+
+  return res;
+}
+
+#define TEST_FUNCTION do_test ()
+#include "../test-skeleton.c"