mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 18:08:24 +08:00
* sim/cris/c/access1.c: New test.
This commit is contained in:
@ -1,5 +1,6 @@
|
|||||||
2009-01-03 Hans-Peter Nilsson <hp@axis.com>
|
2009-01-03 Hans-Peter Nilsson <hp@axis.com>
|
||||||
|
|
||||||
|
* sim/cris/c/access1.c: New test.
|
||||||
* sim/cris/asm/pid1.ms: New test.
|
* sim/cris/asm/pid1.ms: New test.
|
||||||
|
|
||||||
2008-12-30 Hans-Peter Nilsson <hp@axis.com>
|
2008-12-30 Hans-Peter Nilsson <hp@axis.com>
|
||||||
|
16
sim/testsuite/sim/cris/c/access1.c
Normal file
16
sim/testsuite/sim/cris/c/access1.c
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
/* Check access(2) trivially. Newlib doesn't have it.
|
||||||
|
#notarget: cris*-*-elf
|
||||||
|
*/
|
||||||
|
#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);
|
||||||
|
}
|
Reference in New Issue
Block a user