OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [ecos-2.0/] [packages/] [language/] [c/] [libc/] [time/] [v2_0/] [tests/] [gmtime.c] - Blame information for rev 174

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 27 unneback
//=================================================================
2
//
3
//        gmtime.c
4
//
5
//        Testcase for C library gmtime() function
6
//
7
//=================================================================
8
//####ECOSGPLCOPYRIGHTBEGIN####
9
// -------------------------------------------
10
// This file is part of eCos, the Embedded Configurable Operating System.
11
// Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
12
//
13
// eCos is free software; you can redistribute it and/or modify it under
14
// the terms of the GNU General Public License as published by the Free
15
// Software Foundation; either version 2 or (at your option) any later version.
16
//
17
// eCos is distributed in the hope that it will be useful, but WITHOUT ANY
18
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
19
// FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20
// for more details.
21
//
22
// You should have received a copy of the GNU General Public License along
23
// with eCos; if not, write to the Free Software Foundation, Inc.,
24
// 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25
//
26
// As a special exception, if other files instantiate templates or use macros
27
// or inline functions from this file, or you compile this file and link it
28
// with other works to produce a work based on this file, this file does not
29
// by itself cause the resulting work to be covered by the GNU General Public
30
// License. However the source code for this file must still be made available
31
// in accordance with section (3) of the GNU General Public License.
32
//
33
// This exception does not invalidate any other reasons why a work based on
34
// this file might be covered by the GNU General Public License.
35
//
36
// Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
37
// at http://sources.redhat.com/ecos/ecos-license/
38
// -------------------------------------------
39
//####ECOSGPLCOPYRIGHTEND####
40
//=================================================================
41
//#####DESCRIPTIONBEGIN####
42
//
43
// Author(s):     jlarmour
44
// Contributors:  
45
// Date:          1999-03-05
46
// Description:   Contains testcode for C library gmtime() function
47
//
48
//
49
//####DESCRIPTIONEND####
50
 
51
// CONFIGURATION
52
 
53
#include <pkgconf/libc_time.h>          // C library configuration
54
 
55
// INCLUDES
56
 
57
#include <time.h>
58
#include <cyg/infra/testcase.h>
59
 
60
// HOW TO START TESTS
61
 
62
# define START_TEST( test ) test(0)
63
 
64
// FUNCTIONS
65
 
66
static int
67
cmp_structtm(struct tm *tm1, struct tm *tm2)
68
{
69
    if ((tm1->tm_sec   != tm2->tm_sec)   ||
70
        (tm1->tm_min   != tm2->tm_min)   ||
71
        (tm1->tm_hour  != tm2->tm_hour)  ||
72
        (tm1->tm_mday  != tm2->tm_mday)  ||
73
        (tm1->tm_mon   != tm2->tm_mon)   ||
74
        (tm1->tm_year  != tm2->tm_year)  ||
75
        (tm1->tm_wday  != tm2->tm_wday)  ||
76
        (tm1->tm_yday  != tm2->tm_yday)  ||
77
        (tm1->tm_isdst != tm2->tm_isdst))
78
        return 1;
79
    else
80
        return 0;
81
}
82
 
83
static void
84
test( CYG_ADDRWORD data )
85
{
86
    struct tm tm1, *tm2;
87
    time_t t;
88
 
89
    // make this predictable - independent of the user option
90
    cyg_libc_time_setzoneoffsets(0, 3600);
91
    cyg_libc_time_setdst( CYG_LIBC_TIME_DSTOFF );
92
 
93
    tm1.tm_sec = 4;
94
    tm1.tm_min = 23;
95
    tm1.tm_hour = 20;
96
    tm1.tm_mday = 21;
97
    tm1.tm_mon = 1;
98
    tm1.tm_year = 74;
99
    tm1.tm_wday = 4;
100
    tm1.tm_yday = 51;
101
    tm1.tm_isdst = 0;
102
 
103
    t = (time_t)130710184;
104
 
105
    tm2 = gmtime(&t);
106
    CYG_TEST_PASS_FAIL(!cmp_structtm(&tm1, tm2), "gmtime test #1");
107
 
108
 
109
    tm1.tm_sec = 1;
110
    tm1.tm_min = 21;
111
    tm1.tm_hour = 4;
112
    tm1.tm_mday = 5;
113
    tm1.tm_mon = 0;
114
    tm1.tm_wday = 2;
115
    tm1.tm_yday = 4;
116
    tm1.tm_year = 99;
117
    tm1.tm_isdst = 0;
118
 
119
    t = (time_t)915510061;
120
 
121
    tm2 = gmtime(&t);
122
    CYG_TEST_PASS_FAIL(!cmp_structtm(&tm1, tm2), "gmtime test #2");
123
 
124
    tm1.tm_sec = 54;
125
    tm1.tm_min = 24;
126
    tm1.tm_hour = 1;
127
    tm1.tm_mday = 1;
128
    tm1.tm_mon = 0;
129
    tm1.tm_year = 100;
130
    tm1.tm_wday = 6;
131
    tm1.tm_yday = 0;
132
    tm1.tm_isdst = 0;
133
 
134
    t = (time_t)946689894;
135
 
136
    tm2 = gmtime(&t);
137
    CYG_TEST_PASS_FAIL(!cmp_structtm(&tm1, tm2), "gmtime Y2K test #3");
138
 
139
    cyg_libc_time_setdst( CYG_LIBC_TIME_DSTON );
140
 
141
    tm1.tm_sec = 54;
142
    tm1.tm_min = 24;
143
    tm1.tm_hour = 23;
144
    tm1.tm_mday = 31;
145
    tm1.tm_mon = 4;
146
    tm1.tm_wday = 2;
147
    tm1.tm_yday = 150;
148
    tm1.tm_year = 66;
149
    tm1.tm_isdst = 0;
150
 
151
    t = (time_t)-113186106;
152
 
153
    tm2 = gmtime(&t);
154
    CYG_TEST_PASS_FAIL(!cmp_structtm(&tm1, tm2), "gmtime test #4");
155
 
156
    tm1.tm_sec = 59;
157
    tm1.tm_min = 59;
158
    tm1.tm_hour = 23;
159
    tm1.tm_mday = 31;
160
    tm1.tm_mon = 4;
161
    tm1.tm_wday = 3;
162
    tm1.tm_yday = 151;
163
    tm1.tm_year = 100;
164
    tm1.tm_isdst = 0;
165
 
166
    t = (time_t)959817599;
167
 
168
    tm2 = gmtime(&t);
169
    CYG_TEST_PASS_FAIL(!cmp_structtm(&tm1, tm2), "gmtime test #5");
170
 
171
    tm1.tm_sec = 0;
172
    tm1.tm_min = 0;
173
    tm1.tm_hour = 0;
174
    tm1.tm_mday = 1;
175
    tm1.tm_mon = 5;
176
    tm1.tm_wday = 4;
177
    tm1.tm_yday = 152;
178
    tm1.tm_year = 100;
179
    tm1.tm_isdst = 0;
180
 
181
    t = (time_t)959817600;
182
 
183
    tm2 = gmtime(&t);
184
    CYG_TEST_PASS_FAIL(!cmp_structtm(&tm1, tm2), "gmtime test #6");
185
 
186
    CYG_TEST_FINISH("Finished tests from testcase " __FILE__ " for C library "
187
                    "gmtime() function");
188
} // test()
189
 
190
 
191
int
192
main(int argc, char *argv[])
193
{
194
    CYG_TEST_INIT();
195
 
196
    CYG_TEST_INFO("Starting tests from testcase " __FILE__ " for C library "
197
                  "gmtime() function");
198
 
199
    START_TEST( test );
200
 
201
    CYG_TEST_NA("Testing is not applicable to this configuration");
202
 
203
} // main()
204
 
205
// EOF gmtime.c

powered by: WebSVN 2.1.0

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