]> git.karo-electronics.de Git - karo-tx-redboot.git/blob - packages/language/c/libc/time/v2_0/tests/localtime.c
unified MX27, MX25, MX37 trees
[karo-tx-redboot.git] / packages / language / c / libc / time / v2_0 / tests / localtime.c
1 //=================================================================
2 //
3 //        localtime.c
4 //
5 //        Testcase for C library localtime() 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:  jlarmour
45 // Date:          1999-03-05
46 // Description:   Contains testcode for C library localtime() 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 = localtime(&t);
106     CYG_TEST_PASS_FAIL(!cmp_structtm(&tm1, tm2), "localtime 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 = localtime(&t);
122     CYG_TEST_PASS_FAIL(!cmp_structtm(&tm1, tm2), "localtime 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 = localtime(&t);
137     CYG_TEST_PASS_FAIL(!cmp_structtm(&tm1, tm2), "localtime 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 = 0;
144     tm1.tm_mday = 1;
145     tm1.tm_mon = 5;
146     tm1.tm_wday = 2;
147     tm1.tm_yday = 150;
148     tm1.tm_year = 66;
149     tm1.tm_isdst = 1;
150
151     t = (time_t)-113186106;
152
153     tm2 = localtime(&t);
154     CYG_TEST_PASS_FAIL(!cmp_structtm(&tm1, tm2), "localtime test #4");
155
156     CYG_TEST_FINISH("Finished tests from testcase " __FILE__ " for C library "
157                     "localtime() function");
158 } // test()
159
160
161 int
162 main(int argc, char *argv[])
163 {
164     CYG_TEST_INIT();
165
166     CYG_TEST_INFO("Starting tests from testcase " __FILE__ " for C library "
167                   "localtime() function");
168
169     START_TEST( test );
170
171     CYG_TEST_NA("Testing is not applicable to this configuration");
172
173 } // main()
174
175 // EOF localtime.c