summaryrefslogtreecommitdiffstats
path: root/qemu/tests/tcg/cris/check_stat2.c
diff options
context:
space:
mode:
Diffstat (limited to 'qemu/tests/tcg/cris/check_stat2.c')
-rw-r--r--qemu/tests/tcg/cris/check_stat2.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/qemu/tests/tcg/cris/check_stat2.c b/qemu/tests/tcg/cris/check_stat2.c
deleted file mode 100644
index e36172ed2..000000000
--- a/qemu/tests/tcg/cris/check_stat2.c
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
-#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);
-}