search for: tc_service

Displaying 6 results from an estimated 6 matches for "tc_service".

Did you mean: mcmservice
2005 Feb 28
3
test/unit error report for win32-service
Dan, I am assuming that the version in CVS is the most current one. Report follows. -- shanko ------------------------------------------------------ C:\win32utils\win32-service\test>ruby tc_service.rb This test will stop and start your Clipboard service, as well as pause and resume your Schedule service. This is harmless unless you are actually using these services at the moment you run this test. Is it OK to proceed? (y/N) y This will take a few seconds. Be patient... Loaded s...
2004 Jan 26
1
Re: win32-service ideas
>From: Shashank Date <sdate@everestkc.net> >To: Daniel Berger <djberg96@hotmail.com>, phasis@nownuri.net >CC: win32utils-devel@rubyforge.org >Subject: Re: win32-service ideas >Date: Sun, 25 Jan 2004 10:49:03 -0600 > >Dan, Park, > > > Still nothing. The svc.log file never gets created. It''s definitely > > choking on the StartService() call.
2006 Jun 19
2
win32-service cvs - potential issue with Service.services
...or an 0.5.1 release. I''ve made a couple minor changes and altered the test suite a bit. It passes on my box here, except that about half the time I get this error: 1) Error: test_services(TC_Win32Service): Win32::ServiceError: OpenService() call failed: The handle is invalid. test/tc_service.rb:227:in `services'' test/tc_service.rb:227:in `test_services'' 45 tests, 145 assertions, 0 failures, 1 errors If I run this test by itself via -n test_services, it always passes. Is this just an issue with interaction with Test::Unit itself? Or am I leaving a filehandle...
2004 Jan 26
0
Re: win32-service ideas
...cl -nologo -LD -Feservice.so service.obj msvcrt-ruby18.lib oldnames.lib user32.lib advapi32.lib wsock32.lib -link -incremental:no -pdb:none -dll -libpath:"c:/ruby/lib" -def:service.def Creating library service.lib and object service.exp C:\extract\_ruby\WIN32-~1.2>ruby test\tc_service.rb This test will stop and start your Clipboard service, as well as pause and resume your Schedule service. This is harmless unless you are actually using these services at the moment you run this test. Is it OK to proceed? (y/N) y This will take a few seconds. Be patient... Loaded s...
2004 Feb 01
2
test_services test case
While working on win32-service-0.3.0 I got hung up trying to resolve that "RPC server is unavailable" error message that was popping up on some systems. I couldn''t duplicate this on my XP Pro box, but it does show up on my Win2k box. Quick review - this is the test case from tc_service.rb def test_services assert_nothing_raised{ Service.services{ } } assert_raises(NotImplementedError){ Service.services } # no non-block a = [] Service.services{ |s| a.push(s) } assert_kind_of(Struct::Win32Service,a.first) end I added some more information to the erro...
2005 Feb 14
8
DONT_RESOLVE_DLL_REFERENCES info
For future reference, it looks like we should avoid DONT_RESOLVE_DLL_REFERENCES in any extensions. http://weblogs.asp.net/oldnewthing/archive/2005/02/14/372266.aspx Regards, Dan