aboutsummaryrefslogtreecommitdiff
path: root/sim/testsuite/cris/c/access1.c
blob: 10a47ea169590c5c740cb15200d9630e4995d78a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Check access(2) trivially.  Newlib doesn't have it.
#progos: linux
*/
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
int main (int argc, char **argv)
{
  if (access (argv[0], R_OK|W_OK|X_OK) == 0
      && access ("/dev/null", R_OK|W_OK) == 0
      && access ("/dev/null", X_OK) == -1
      && errno == EACCES)
    printf ("pass\n");
  exit (0);
}