comctl32/ipaddress: Use ok() test instead of assert()

Nikolay Sivov bunglehead at gmail.com
Wed May 27 06:03:38 CDT 2009


Paul Vriens wrote:
> Nikolay Sivov wrote:
>> This test fails to create window sometimes on Win95,
>> let's turn it into general failure.
>>
>> Changelog:
>>     - replace assert() with ok() test
>>
>>> From b63fc6defb497505ecaab4921449327e875ab252 Mon Sep 17 00:00:00 2001
>> From: Nikolay Sivov <bunglehead at gmail.com>
>> Date: Wed, 27 May 2009 14:26:37 +0400
>> Subject: Use ok() test instead of assert()
>>
>> ---
>>  dlls/comctl32/tests/ipaddress.c |    3 +--
>>  1 files changed, 1 insertions(+), 2 deletions(-)
>>
>> diff --git a/dlls/comctl32/tests/ipaddress.c 
>> b/dlls/comctl32/tests/ipaddress.c
>> index d04223c..b8f30e4 100644
>> --- a/dlls/comctl32/tests/ipaddress.c
>> +++ b/dlls/comctl32/tests/ipaddress.c
>> @@ -33,8 +33,6 @@ static HWND create_ipaddress_control (void)
>>      handle = CreateWindowEx(0, WC_IPADDRESS, NULL,
>>                  WS_BORDER|WS_VISIBLE, 0, 0, 0, 0,
>>                  NULL, NULL, NULL, NULL);
>> -    assert(handle);
>> -
>>      return handle;
>>  }
>>  
>> @@ -45,6 +43,7 @@ static void test_get_set_text(void)
>>      INT r;
>>  
>>      hwnd = create_ipaddress_control();
>> +    ok(hwnd != NULL, "Expected window to be created\n");
>>  
>
> Shouldn't you insert a return here when hwnd is NULL. The following 
> tests will fail as well I guess.
>
The reason was to count failures as usual instead of exit a test hardly. 
I still don't know why it can't be created
some times so I think win_skip doesn't mean much till we don't know a cause.




More information about the wine-devel mailing list