summaryrefslogtreecommitdiffstats
path: root/tests/bugs/nfs/bug-1210338.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bugs/nfs/bug-1210338.c')
-rw-r--r--tests/bugs/nfs/bug-1210338.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/bugs/nfs/bug-1210338.c b/tests/bugs/nfs/bug-1210338.c
new file mode 100644
index 00000000000..77f56eb9d0b
--- /dev/null
+++ b/tests/bugs/nfs/bug-1210338.c
@@ -0,0 +1,32 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+#include <string.h>
+#include <errno.h>
+#include <sys/types.h>
+#include <fcntl.h>
+#include <sys/stat.h>
+
+
+int
+main (int argc, char *argv[])
+{
+ int ret = -1;
+ int fd = -1;
+
+ fd = open (argv[1], O_CREAT|O_EXCL);
+
+ if (fd == -1) {
+ fprintf (stderr, "creation of the file %s failed (%s)\n", argv[1],
+ strerror (errno));
+ goto out;
+ }
+
+ ret = 0;
+
+out:
+ if (fd > 0)
+ close (fd);
+
+ return ret;
+}