diff options
-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 b775c98..06c27c2 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 0000000..20b69b4 --- /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); +} |