Changeset 9022 for trunk/IO-Socket-Multicast
- Timestamp:
- 11/02/09 18:30:08 (2 years ago)
- File:
-
- 1 edited
-
trunk/IO-Socket-Multicast/t/03_multicast.t (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/IO-Socket-Multicast/t/03_multicast.t
r9021 r9022 21 21 22 22 # 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' );25 23 SKIP: { 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' ); 28 28 ok( ! $s->mcast_drop('225.0.1.1'), 'Drop unsubscribed group returns false' ); 29 29 }
Note: See TracChangeset
for help on using the changeset viewer.
