From: Hans-Peter Nilsson Date: Thu, 23 Feb 2006 02:01:09 +0000 (+0000) Subject: * sim/cris/c/time2.c: New test. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=77dfaed33778dada12726b5f24f4b54aa93a9c80;p=binutils-gdb.git * sim/cris/c/time2.c: New test. --- 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 + + * 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 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 +#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); +}