summaryrefslogtreecommitdiff
path: root/sim/testsuite/cris/c/stat5.c
blob: 41ab493fd5cace7af05ff4af148b1178ee07df68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Check that lstat:ing an nonexistent file works as expected.
#notarget: cris*-*-elf
*/

#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>

int main (void)
{
  struct stat buf;
  
  if (lstat ("nonexistent", &buf) == 0 || errno != ENOENT)
    abort ();
  printf ("pass\n");
  exit (0);
}