Changeset 1428
- Timestamp:
- 04/02/08 21:09:16 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
honeyclient/branches/exp/kindlund-simpler_agent/lib/HoneyClient/Agent.pm
r1427 r1428 173 173 can_ok('HoneyClient::Agent', 'init'); 174 174 can_ok('HoneyClient::Agent', 'destroy'); 175 use HoneyClient::Agent; 175 if ($Config{osname} =~ /^cygwin$/) { 176 require HoneyClient::Agent; 177 } 176 178 } 177 179 … … 222 224 223 225 require_ok('Win32::Job'); 224 use Win32::Job; 226 if ($Config{osname} =~ /^cygwin$/) { 227 require Win32::Job; 228 } 225 229 } 226 230 honeyclient/branches/exp/kindlund-simpler_agent/t/honeyclient_agent.t
r1427 r1428 71 71 can_ok('HoneyClient::Agent', 'init'); 72 72 can_ok('HoneyClient::Agent', 'destroy'); 73 use HoneyClient::Agent; 73 if ($Config{osname} =~ /^cygwin$/) { 74 require HoneyClient::Agent; 75 } 74 76 } 75 77 … … 120 122 121 123 require_ok('Win32::Job'); 122 use Win32::Job; 124 if ($Config{osname} =~ /^cygwin$/) { 125 require Win32::Job; 126 } 123 127 } 124 128
