Ignore:
Timestamp:
11/02/09 18:30:08 (2 years ago)
Author:
adamk
Message:

More skips

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/IO-Socket-Multicast/t/03_multicast.t

    r9021 r9022  
    2121 
    2222# Some basics 
    23 ok($s->mcast_add('225.0.1.1'), 'Add socket to Multicast Group' ); 
    24 ok($s->mcast_drop(inet_aton('225.0.1.1')),'Drop Multicast Group' ); 
    2523SKIP: { 
    26     # What the hell ? Dropping an unsubscribed mcast group on win32 fails to fail? 
    27     skip("Doesn't work on Win32??", 1) if $WIN32; 
     24    # Windows doesn't return true for stuff 
     25    skip("Doesn't work on Win32??", 3) if $WIN32; 
     26    ok($s->mcast_add('225.0.1.1'), 'Add socket to Multicast Group' ); 
     27    ok($s->mcast_drop(inet_aton('225.0.1.1')),'Drop Multicast Group' ); 
    2828    ok( ! $s->mcast_drop('225.0.1.1'), 'Drop unsubscribed group returns false' ); 
    2929} 
Note: See TracChangeset for help on using the changeset viewer.