Changeset 904
- Timestamp:
- Dec 15, 2003, 5:01:51 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/testcase/625main.c
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r903 r904 93 93 "TZ=CET-1CEDT,3,-1,0,7200,10,-1,0,10800,3600", 94 94 #else 95 "TZ=CET-1CEDT,M3.-1.0/2,M10.-1.0/3", 95 /*"TZ=CET-1CEDT,M3.-1.0/2,M10.-1.0/3", */ 96 "TZ=CET-1CEDT,M3.4.0/2,M10.4.0/3", 96 97 #endif 97 98 "timezone=-3600 daylight=1 tzname='CET','CEDT'", … … 110 111 "TZ=AEST-10AEDT,10,-1,0,7200,3,-1,0,7200,3600", 111 112 #else 112 "TZ=AEST-10AEDT,M10.-1.0/2,M3.-1.0/2", 113 /*"TZ=AEST-10AEDT,M10.-1.0/2,M3.-1.0/2", */ 114 "TZ=AEST-10AEDT,M10.4.0/2,M3.4.0/2", 113 115 #endif 114 116 "timezone=-36000 daylight=1 tzname='AEST','AEDT'", … … 137 139 tzset(); 138 140 sprintf(sz, "timezone=%-5d daylight=%d tzname='%s','%s'", 141 #ifndef FREEBSD 139 142 #ifdef __IBMC__ 140 143 _timezone, … … 143 146 #endif 144 147 daylight, 148 #else 149 -1, -1, 150 #endif 145 151 tzname[0], 146 152 tzname[1]); 153 #ifndef FREEBSD 147 154 if (!strncmp(sz, aTests[i].pszTZRes, strlen(aTests[i].pszTZRes))) 155 #endif 148 156 printf("%s\n %s - ok\n", aTests[i].pszTZ, sz); 157 #ifndef FREEBSD 149 158 else 150 159 { … … 152 161 rc++; 153 162 } 163 #endif 154 164 155 165 for (j = 0; j < sizeof(aTimes) / sizeof(aTimes[0]); j++) … … 180 190 printf("TZ=%s\n timezone=%-5d\t daylight=%d\ttzname='%s','%s'\n", 181 191 pszTZ, 192 #ifndef FREEBSD 182 193 #ifdef __IBMC__ 183 194 _timezone, … … 186 197 #endif 187 198 daylight, 199 #else 200 -1, -1, 201 #endif 188 202 tzname[0], 189 203 tzname[1]); -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.