source: rtems/testsuites/psxtests/psxtime/test.c @ 6da99727

4.104.114.84.95
Last change on this file since 6da99727 was d802489, checked in by Joel Sherrill <joel.sherrill@…>, on 08/02/02 at 00:53:21

2002-08-01 Joel Sherrill <joel@…>

  • Per PR47 add support for buffered test output. This involved adding defines to redirect output to a buffer and dump it when full, at "test pause", and at exit. To avoid problems when redefining exit(), all tests were modified to call rtems_test_exit(). Some tests, notable psxtests, had to be modified to include the standard test macro .h file (pmacros.h or tmacros.h) to enable this support.
  • include/pmacros.h, psx01/task.c, psx02/init.c, psx02/task.c, psx03/init.c, psx04/init.c, psx05/init.c, psx06/init.c, psx07/init.c, psx08/task3.c, psx09/init.c, psx10/init.c, psx11/init.c, psx12/init.c, psx13/Makefile.am, psx13/main.c, psx13/test.c, psxcancel/init.c, psxchroot01/Makefile.am, psxchroot01/main.c, psxchroot01/test.c, psxfile01/Makefile.am, psxfile01/main.c, psxfile01/test.c, psxfile01/test_cat.c, psxfile01/test_extend.c, psxfile01/test_write.c, psxmount/Makefile.am, psxmount/main.c, psxmount/test.c, psxmsgq01/init.c, psxreaddir/Makefile.am, psxreaddir/main.c, psxreaddir/test.c, psxsem01/init.c, psxstat/Makefile.am, psxstat/main.c, psxstat/test.c, psxtime/main.c, psxtime/test.c, psxtimer/psxtimer.c: Modified.
  • Property mode set to 100644
File size: 2.6 KB
Line 
1/*
2 *  This test exercises the time of day services via the Classic
3 *  and POSIX APIs to make sure they are consistent.
4 *
5 *  COPYRIGHT (c) 1989-1999.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.OARcorp.com/rtems/license.html.
11 *
12 *  $Id$
13 */
14
15#include <tmacros.h>
16#include <assert.h>
17#include <sys/stat.h>
18#include <fcntl.h>
19#include <stdio.h>
20#include <unistd.h>
21#include <errno.h>
22#include <string.h>
23#include <rtems.h>
24#include <rtems/libio.h>
25
26/*
27 *  List of dates and times to test.
28 */
29#define NUMBER_OF_DATES   8
30rtems_time_of_day Dates[ NUMBER_OF_DATES ] = {
31  /* YEAR, MONTH, DAY, HOUR, MINUTE, SECOND, TICKS */
32  {  1988,   1,    1,   12,    45,     00,     0 },
33  {  1988,  12,   31,    9,    00,     00,     0 },
34  {  1999,  12,   31,   23,    55,     59,     0 },
35  {  1999,  06,   30,   00,    01,     30,     0 },
36  {  2000,   1,    1,    0,    15,     59,     0 },
37  {  2005,   2,    2,    5,    10,     59,     0 },
38  {  2010,   3,    3,   10,     5,     59,     0 },
39  {  2020,   4,    4,   15,     0,     59,     0 },
40};
41
42/*
43 *  Check out a single date and time
44 */
45
46void check_a_tod(
47  rtems_time_of_day *the_tod
48)
49{
50  rtems_status_code status;
51  rtems_time_of_day new_tod;
52  time_t            a_time_t;
53  struct timeval    tv;
54  struct tm        *a_tm;
55  int               result;
56  int               i = 0;
57
58  print_time( "rtems_clock_set          ", the_tod, "\n" );
59  status = rtems_clock_set( the_tod );
60  assert( !status );
61 
62  do {
63    status = rtems_clock_get( RTEMS_CLOCK_GET_TOD, &new_tod );
64    assert( !status );
65    print_time( "rtems_clock_get          ", &new_tod, "\n" );
66
67    /* now do the posix time gets */
68    result = gettimeofday( &tv, 0 );
69    assert( result == 0 );
70    a_time_t = tv.tv_sec;   /* ctime() takes a time_t */
71    printf( "gettimeofday: %s", ctime( &a_time_t) );
72 
73    a_time_t = time( 0 );
74    printf( "time:         %s", ctime( &a_time_t ) );
75
76    a_tm = localtime( &a_time_t );
77    printf( "localtime:    %s", asctime( a_tm ) );
78
79    a_tm = gmtime( &a_time_t );
80    printf( "gmtime:       %s\n",  asctime( a_tm ) );
81
82    status = rtems_task_wake_after( 5 * TICKS_PER_SECOND );
83
84    i++;
85
86  } while( i < 6 );
87}
88
89/*
90 *  main entry point to the test
91 */
92
93#if defined(__rtems__)
94int test_main(void)
95#else
96int main(
97  int    argc,
98  char **argv
99)
100#endif
101{
102  int i;
103
104  puts( "\n\n*** POSIX TIME OF DAY TEST ***" );
105
106  i = 0;
107  while ( i < NUMBER_OF_DATES ) {
108    check_a_tod( &Dates[i] );
109    i++;
110  }
111
112  puts( "\n\n*** END OF TIME OF DAY TEST 01 ***" );
113  rtems_test_exit(0);
114}
115
Note: See TracBrowser for help on using the repository browser.