mirror of
https://github.com/reactos/reactos.git
synced 2025-07-28 01:41:48 +00:00
Remove temporary debug code, crash was fixed by r42506 and r42517
svn path=/trunk/; revision=42523
This commit is contained in:
parent
24c3dd1abc
commit
6ff2cad0ff
1 changed files with 2 additions and 8 deletions
|
@ -32,9 +32,6 @@
|
||||||
#define MINSPERHOUR 60
|
#define MINSPERHOUR 60
|
||||||
#define HOURSPERDAY 24
|
#define HOURSPERDAY 24
|
||||||
|
|
||||||
#define NDEBUG
|
|
||||||
#include <debug.h>
|
|
||||||
|
|
||||||
static int get_test_year(time_t *start)
|
static int get_test_year(time_t *start)
|
||||||
{
|
{
|
||||||
time_t now = time(NULL);
|
time_t now = time(NULL);
|
||||||
|
@ -83,12 +80,11 @@ static void test_mktime(void)
|
||||||
char buffer[64];
|
char buffer[64];
|
||||||
int year;
|
int year;
|
||||||
time_t ref, secs;
|
time_t ref, secs;
|
||||||
DPRINT1("Entered test_mktime, getting test year\n");
|
|
||||||
year = get_test_year( &ref );
|
year = get_test_year( &ref );
|
||||||
ref += SECSPERDAY;
|
ref += SECSPERDAY;
|
||||||
DPRINT1("Checking return value, testyear=%d, ref=%ld\n", year, ref);
|
|
||||||
ok (res != TIME_ZONE_ID_INVALID, "GetTimeZoneInformation failed\n");
|
ok (res != TIME_ZONE_ID_INVALID, "GetTimeZoneInformation failed\n");
|
||||||
DPRINT1("Converting StdName, tzi=%p, res=%ld\n", (char*)&tzinfo, res);
|
|
||||||
WideCharToMultiByte( CP_ACP, 0, tzinfo.StandardName, -1, buffer, sizeof(buffer), NULL, NULL );
|
WideCharToMultiByte( CP_ACP, 0, tzinfo.StandardName, -1, buffer, sizeof(buffer), NULL, NULL );
|
||||||
trace( "bias %d std %d dst %d zone %s\n",
|
trace( "bias %d std %d dst %d zone %s\n",
|
||||||
tzinfo.Bias, tzinfo.StandardBias, tzinfo.DaylightBias, buffer );
|
tzinfo.Bias, tzinfo.StandardBias, tzinfo.DaylightBias, buffer );
|
||||||
|
@ -288,10 +284,8 @@ static void test_wstrtime(void)
|
||||||
|
|
||||||
START_TEST(time)
|
START_TEST(time)
|
||||||
{
|
{
|
||||||
#if 0
|
|
||||||
test_ctime();
|
test_ctime();
|
||||||
test_gmtime();
|
test_gmtime();
|
||||||
#endif
|
|
||||||
test_mktime();
|
test_mktime();
|
||||||
test_localtime();
|
test_localtime();
|
||||||
test_strdate();
|
test_strdate();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue