aboutsummaryrefslogtreecommitdiff
path: root/tests/tcg/cris/libc/check_stat2.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tcg/cris/libc/check_stat2.c')
-rw-r--r--tests/tcg/cris/libc/check_stat2.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/tcg/cris/libc/check_stat2.c b/tests/tcg/cris/libc/check_stat2.c
new file mode 100644
index 0000000000..e36172ed25
--- /dev/null
+++ b/tests/tcg/cris/libc/check_stat2.c
@@ -0,0 +1,20 @@
+/*
+#notarget: cris*-*-elf
+*/
+
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <unistd.h>
+#include <stdio.h>
+#include <stdlib.h>
+
+int main (void)
+{
+ struct stat buf;
+
+ if (lstat (".", &buf) != 0
+ || !S_ISDIR (buf.st_mode))
+ abort ();
+ printf ("pass\n");
+ exit (0);
+}