Ignore:
Timestamp:
Dec 15, 2003, 5:01:51 PM (22 years ago)
Author:
bird
Message:

Freebsd check.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/testcase/625main.c

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r903 r904  
    9393        "TZ=CET-1CEDT,3,-1,0,7200,10,-1,0,10800,3600",
    9494#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",
    9697#endif
    9798        "timezone=-3600  daylight=1  tzname='CET','CEDT'",
     
    110111        "TZ=AEST-10AEDT,10,-1,0,7200,3,-1,0,7200,3600",
    111112#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",
    113115#endif
    114116        "timezone=-36000  daylight=1  tzname='AEST','AEDT'",
     
    137139        tzset();
    138140        sprintf(sz, "timezone=%-5d  daylight=%d  tzname='%s','%s'",
     141#ifndef FREEBSD
    139142#ifdef __IBMC__
    140143                _timezone,
     
    143146#endif
    144147                daylight,
     148#else
     149                -1, -1,
     150#endif
    145151                tzname[0],
    146152                tzname[1]);
     153#ifndef FREEBSD
    147154        if (!strncmp(sz, aTests[i].pszTZRes, strlen(aTests[i].pszTZRes)))
     155#endif
    148156            printf("%s\n  %s - ok\n", aTests[i].pszTZ, sz);
     157#ifndef FREEBSD
    149158        else
    150159        {
     
    152161            rc++;
    153162        }
     163#endif
    154164
    155165        for (j = 0; j < sizeof(aTimes) / sizeof(aTimes[0]); j++)
     
    180190    printf("TZ=%s\n    timezone=%-5d\t daylight=%d\ttzname='%s','%s'\n",
    181191           pszTZ,
     192#ifndef FREEBSD
    182193    #ifdef __IBMC__
    183194           _timezone,
     
    186197    #endif
    187198           daylight,
     199#else
     200           -1, -1,
     201#endif
    188202           tzname[0],
    189203           tzname[1]);
Note: See TracChangeset for help on using the changeset viewer.