OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gdb/] [gdb-6.8/] [gdb-6.8.openrisc-2.1/] [sim/] [testsuite/] [sim/] [cris/] [c/] [gettod.c] - Diff between revs 24 and 33

Only display areas with differences | Details | Blame | View Log

Rev 24 Rev 33
/* Basic time functionality test.  */
/* Basic time functionality test.  */
#include <stdio.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdlib.h>
#include <time.h>
#include <time.h>
#include <sys/time.h>
#include <sys/time.h>
int
int
main (void)
main (void)
{
{
  struct timeval t_m = {0, 0};
  struct timeval t_m = {0, 0};
  time_t t;
  time_t t;
 
 
  if ((t = time (NULL)) == (time_t) -1
  if ((t = time (NULL)) == (time_t) -1
      || gettimeofday (&t_m, NULL) != 0
      || gettimeofday (&t_m, NULL) != 0
      || t_m.tv_sec == 0
      || t_m.tv_sec == 0
 
 
      /* We assume there will be no delay between the time and
      /* We assume there will be no delay between the time and
         gettimeofday calls above, but allow a timer-tick to make the
         gettimeofday calls above, but allow a timer-tick to make the
         seconds increase by one.  */
         seconds increase by one.  */
      || (t != t_m.tv_sec && t+1 != t_m.tv_sec))
      || (t != t_m.tv_sec && t+1 != t_m.tv_sec))
    {
    {
      printf ("fail\n");
      printf ("fail\n");
      exit (1);
      exit (1);
    }
    }
 
 
  printf ("pass\n");
  printf ("pass\n");
  exit (0);
  exit (0);
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.