diff options
Diffstat (limited to 'tests/cris/check_stat2.c')
-rw-r--r-- | tests/cris/check_stat2.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/cris/check_stat2.c b/tests/cris/check_stat2.c new file mode 100644 index 0000000000..e36172ed25 --- /dev/null +++ b/tests/cris/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); +} |