diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2006-02-23 02:01:09 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@axis.com> | 2006-02-23 02:01:09 +0000 |
commit | a18dbc7ed5407518335b254309075d611d4a2aa6 (patch) | |
tree | a5862f8060601ea4277089ac84e8776fd259e972 /sim | |
parent | 30406e22540622e249e3d6beaa4452751e83ea90 (diff) | |
download | gdb-a18dbc7ed5407518335b254309075d611d4a2aa6.tar.gz |
* sim/cris/c/time2.c: New test.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/testsuite/ChangeLog | 4 | ||||
-rw-r--r-- | sim/testsuite/sim/cris/c/time2.c | 18 |
2 files changed, 22 insertions, 0 deletions
diff --git a/sim/testsuite/ChangeLog b/sim/testsuite/ChangeLog index b775c983da2..06c27c2eaeb 100644 --- a/sim/testsuite/ChangeLog +++ b/sim/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2006-02-23 Hans-Peter Nilsson <hp@axis.com> + + * sim/cris/c/time2.c: New test. + 2006-01-10 Hans-Peter Nilsson <hp@axis.com> * sim/cris/asm/x1-v10.ms, sim/cris/asm/x3-v10.ms, diff --git a/sim/testsuite/sim/cris/c/time2.c b/sim/testsuite/sim/cris/c/time2.c new file mode 100644 index 00000000000..20b69b4f60b --- /dev/null +++ b/sim/testsuite/sim/cris/c/time2.c @@ -0,0 +1,18 @@ +/* CB_SYS_time doesn't implement the Linux time syscall; the return + value isn't written to the argument. */ + +#include <time.h> +#include <stdio.h> +#include <stdlib.h> + +int +main (void) +{ + time_t x = (time_t) -1; + time_t t = time (&x); + + if (t == (time_t) -1 || t != x) + abort (); + printf ("pass\n"); + exit (0); +} |