From a18dbc7ed5407518335b254309075d611d4a2aa6 Mon Sep 17 00:00:00 2001 From: Hans-Peter Nilsson Date: Thu, 23 Feb 2006 02:01:09 +0000 Subject: [PATCH] * sim/cris/c/time2.c: New test. --- sim/testsuite/ChangeLog | 4 ++++ sim/testsuite/sim/cris/c/time2.c | 18 ++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 sim/testsuite/sim/cris/c/time2.c diff --git a/sim/testsuite/ChangeLog b/sim/testsuite/ChangeLog index b775c983da..06c27c2eae 100644 --- a/sim/testsuite/ChangeLog +++ b/sim/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2006-02-23 Hans-Peter Nilsson + + * sim/cris/c/time2.c: New test. + 2006-01-10 Hans-Peter Nilsson * 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 0000000000..20b69b4f60 --- /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 +#include +#include + +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); +} -- 2.11.0