summaryrefslogtreecommitdiffstats
path: root/qemu/tests/tcg/cris/check_stat1.c
diff options
context:
space:
mode:
Diffstat (limited to 'qemu/tests/tcg/cris/check_stat1.c')
-rw-r--r--qemu/tests/tcg/cris/check_stat1.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/qemu/tests/tcg/cris/check_stat1.c b/qemu/tests/tcg/cris/check_stat1.c
deleted file mode 100644
index 2e2cae51d..000000000
--- a/qemu/tests/tcg/cris/check_stat1.c
+++ /dev/null
@@ -1,16 +0,0 @@
-#include <sys/types.h>
-#include <sys/stat.h>
-#include <unistd.h>
-#include <stdio.h>
-#include <stdlib.h>
-
-int main (void)
-{
- struct stat buf;
-
- if (stat (".", &buf) != 0
- || !S_ISDIR (buf.st_mode))
- abort ();
- printf ("pass\n");
- exit (0);
-}