source: rtems/c/src/tests/psxtests/psxtime/test.c @ 1ed9d57

4.104.114.84.95
Last change on this file since 1ed9d57 was cd3fb80, checked in by Joel Sherrill <joel.sherrill@…>, on 11/23/98 at 18:58:48

Added new tests in support of the file system infrastructure.

  • 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-1998.
6 *  On-Line Applications Research Corporation (OAR).
7 *  Copyright assigned to U.S. Government, 1994.
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.OARcorp.com/rtems/license.html.
12 *
13 *  $Id$
14 */
15
16#include <tmacros.h>
17#include <assert.h>
18#include <sys/stat.h>
19#include <fcntl.h>
20#include <stdio.h>
21#include <unistd.h>
22#include <errno.h>
23#include <string.h>
24#include <rtems.h>
25#include <rtems/libio.h>
26
27/*
28 *  List of dates and times to test.
29 */
30#define NUMBER_OF_DATES   7
31rtems_time_of_day Dates[ NUMBER_OF_DATES ] = {
32  /* YEAR, MONTH, DAY, HOUR, MINUTE, SECOND, TICKS */
33  {  1988,   1,    1,   12,    45,     00,     0 },
34  {  1988,  12,   31,    9,    00,     00,     0 },
35  {  1999,  12,   31,   23,    55,     59,     0 },
36  {  1999,  06,   30,   00,    01,     30,     0 },
37  {  2000,   1,    1,    0,    15,     59,     0 },
38  {  2005,   2,    2,    5,    10,     59,     0 },
39  {  2010,   3,    3,   10,     5,     59,     0 },
40  {  2020,   4,    4,   15,     0,     59,     0 },
41};
42
43/*
44 *  Check out a single date and time
45 */
46
47void check_a_tod(
48  rtems_time_of_day *the_tod
49)
50{
51  rtems_status_code status;
52  rtems_time_of_day new_tod;
53  time_t            a_time_t;
54  struct timeval    tv;
55  struct tm        *a_tm;
56  int               result;
57  int               i = 0;
58
59  print_time( "rtems_clock_set          ", the_tod, "\n" );
60  status = rtems_clock_set( the_tod );
61  assert( !status );
62 
63  do {
64    status = rtems_clock_get( RTEMS_CLOCK_GET_TOD, &new_tod );
65    assert( !status );
66    print_time( "rtems_clock_get          ", &new_tod, "\n" );
67
68    /* now do the posix time gets */
69    result = gettimeofday( &tv, 0 );
70    assert( result == 0 );
71    printf( "gettimeofday: %s", ctime( &tv.tv_sec ) );
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  exit(0);
114}
115
Note: See TracBrowser for help on using the repository browser.