summaryrefslogtreecommitdiff
path: root/sim/testsuite/sim/cris/c/stat8.c
diff options
context:
space:
mode:
Diffstat (limited to 'sim/testsuite/sim/cris/c/stat8.c')
-rw-r--r--sim/testsuite/sim/cris/c/stat8.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/sim/testsuite/sim/cris/c/stat8.c b/sim/testsuite/sim/cris/c/stat8.c
new file mode 100644
index 00000000000..c7eb49f5403
--- /dev/null
+++ b/sim/testsuite/sim/cris/c/stat8.c
@@ -0,0 +1,26 @@
+/* For this test, we need to do the lstat syscall directly, or else
+ glibc gets a SEGV.
+#notarget: cris*-*-elf
+*/
+
+#include <unistd.h>
+#include <sys/syscall.h>
+#include <stdio.h>
+#include <errno.h>
+#include <stdlib.h>
+
+int main (void)
+{
+ int ret;
+
+ /* From Linux, we get EFAULT. The simulator sends us EINVAL. */
+ ret = syscall (SYS_lstat64, ".", NULL);
+ if (ret != -1 || (errno != EINVAL && errno != EFAULT))
+ {
+ perror ("lstat");
+ abort ();
+ }
+
+ printf ("pass\n");
+ exit (0);
+}