27 May
2009
27 May
'09
1:11 p.m.
Paul Vriens wrote:
Nikolay Sivov wrote:
+ ok(hwnd != NULL, "Expected window to be created\n"); + if (!hwnd) + { + win_skip("IPAddress control not implemented\n"); + return; + }
/* check text just after creation */ r = GetWindowText(hwnd, ip, sizeof(ip)/sizeof(CHAR));
I would either get rid of the ok(hwnd ...) altogether or move it after the if(). win_skip() means we are ok with a failure on some Windows boxes so a test failure just before that doesn't make sense.
Agreed. Try 3 should be fine.