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
Dan, Park, I am working on building the one-click installer for win32-utils and am using the free Microsoft Visual C++ Toolkit 2003 to compile it. All components compile fine except these two: win32-pipe, win32-taskscheduler Any ideas of what could be wrong with my process? Thanks, -- shanko win32-pipe: ------------------------- creating Makefile cl -nologo -MD -Zi -O2b2xg- -G5 -I. -Ic:/ruby/lib/ruby/1.8/i386-mswin32 -Ic:/ruby/lib/ruby/1.8/i386-mswin32 -I. -I. -I./.. -I./../missing -c -Tcpipe.c pipe.c cl -nologo -LD -Fepipe.so pipe.obj msvcrt-ruby18.lib oldnames.lib user32.lib advapi32.lib wsock32.lib -link -incremental:no -debug -opt:ref -opt:icf -dll -libpath:"c:/ruby/lib" -def:pipe-i386-mswin32.def Creating library pipe.lib and object pipe.exp pipe.obj : error LNK2019: unresolved external symbol __ftol2 referenced in function _pipe_wait pipe.so : fatal error LNK1120: 1 unresolved externals win32-taskscheduler: ------------------------- creating Makefile cl -nologo -MD -Zi -O2b2xg- -G5 -I. -Ic:/ruby/lib/ruby/1.8/i386-mswin32 -Ic:/ruby/lib/ruby/1.8/i386-mswin32 -I. -I. -I./.. -I./../missing -c -Tptaskscheduler.c taskscheduler.c c:\win32utils\win32-taskscheduler\taskscheduler.h(51) : error C2668: ''log'' : ambiguous call to overloaded function C:\Program Files\Microsoft Visual C++ Toolkit 2003\include\math.h(612): could be ''long double log(long double)'' C:\Program Files\Microsoft Visual C++ Toolkit 2003\include\math.h(564): or ''float log(float)'' C:\Program Files\Microsoft Visual C++ Toolkit 2003\include\math.h(193): or ''double log(double)'' while trying to match the argument list ''(DWORD)'' c:\win32utils\win32-taskscheduler\taskscheduler.h(51) : error C2668: ''log'' : ambiguous call to overloaded function C:\Program Files\Microsoft Visual C++ Toolkit 2003\include\math.h(612): could be ''long double log(long double)'' C:\Program Files\Microsoft Visual C++ Toolkit 2003\include\math.h(564): or ''float log(float)'' C:\Program Files\Microsoft Visual C++ Toolkit 2003\include\math.h(193): or ''double log(double)'' while trying to match the argument list ''(int)''
Hi, ----- Original Message ----- From: "Shashank Date" <sdate@everestkc.net> To: "Development and ideas for win32utils projects" <win32utils-devel@rubyforge.org> Sent: Sunday, February 27, 2005 4:14 PM Subject: [Win32utils-devel] Compilation errors> Dan, Park, > > I am working on building the one-click installer for win32-utils and am > using the free Microsoft Visual C++ Toolkit 2003 to compile it. All > components compile fine except these two: win32-pipe, win32-taskscheduler > > Any ideas of what could be wrong with my process? > > Thanks, > -- shanko > > win32-pipe: > ------------------------- > > creating Makefile > cl -nologo -MD -Zi -O2b2xg- -G5 -I. > -Ic:/ruby/lib/ruby/1.8/i386-mswin32 -Ic:/ruby/lib/ruby/1.8/i386-mswin32 > -I. -I. -I./.. -I./../missing -c -Tcpipe.c > pipe.c > cl -nologo -LD -Fepipe.so pipe.obj msvcrt-ruby18.lib oldnames.lib > user32.lib advapi32.lib wsock32.lib -link -incremental:no -debug > -opt:ref -opt:icf -dll -libpath:"c:/ruby/lib" -def:pipe-i386-mswin32.def > Creating library pipe.lib and object pipe.exp > pipe.obj : error LNK2019: unresolved external symbol __ftol2 referenced > in function _pipe_wait > pipe.so : fatal error LNK1120: 1 unresolved externals > > win32-taskscheduler: > ------------------------- > > creating Makefile > cl -nologo -MD -Zi -O2b2xg- -G5 -I. > -Ic:/ruby/lib/ruby/1.8/i386-mswin32 -Ic:/ruby/lib/ruby/1.8/i386-mswin32 > -I. -I. -I./.. -I./../missing -c -Tptaskscheduler.c > taskscheduler.c > c:\win32utils\win32-taskscheduler\taskscheduler.h(51) : error C2668: > ''log'' : ambiguous call to overloaded function > C:\Program Files\Microsoft Visual C++ Toolkit > 2003\include\math.h(612): could be ''long double log(long double)'' > C:\Program Files\Microsoft Visual C++ Toolkit > 2003\include\math.h(564): or ''float log(float)'' > C:\Program Files\Microsoft Visual C++ Toolkit > 2003\include\math.h(193): or ''double log(double)'' > while trying to match the argument list ''(DWORD)'' > c:\win32utils\win32-taskscheduler\taskscheduler.h(51) : error C2668: > ''log'' : ambiguous call to overloaded function > C:\Program Files\Microsoft Visual C++ Toolkit > 2003\include\math.h(612): could be ''long double log(long double)'' > C:\Program Files\Microsoft Visual C++ Toolkit > 2003\include\math.h(564): or ''float log(float)'' > C:\Program Files\Microsoft Visual C++ Toolkit > 2003\include\math.h(193): or ''double log(double)'' > while trying to match the argument list ''(int)'' > >I have no idea on the first win32-pipe error. In my platform, it compiles fine. You can fix the second win32-taskscheduler error by replacing taskscheduler.h line 51 return ((log(day)/log(2))+1); with return ((log((double)day)/log((double)2))+1); Regards, Park Heesob.
Hi Park,>I have no idea on the first win32-pipe error. >In my platform, it compiles fine. > >I had this same error while compiling ruby 1.8.2 and I posted on ruby-talk #124452 But nobu told me that I was using the wrong method to fix it. I still do not know how to do it correctly or what I am doing wrong. It apears that I am using the wrong runtime libraries. Can you please look at that ruby-talk thread and see if you get any clue?>You can fix the second win32-taskscheduler error by >replacing taskscheduler.h line 51 > return ((log(day)/log(2))+1); >with > return ((log((double)day)/log((double)2))+1); > >That worked. Thanks!>Regards, >Park Heesob. > >-- shanko
Hi Park, One more thing. I have the following (see below) Microsoft products installed on my machine. Notice that there many places (in bold) where you find the compiler. Do you think I am compiling/linking with the wrong INCLUDE and LIB files? This is how I have set them: Microsoft Windows XP [Version 5.1.2600] (C) Copyright 1985-2001 Microsoft Corp. C:\win32utils>set PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem; C:\Program Files\Microsoft Visual C++ Toolkit 2003\bin; C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322; C:\ProgramFiles\Microsoft.NET\SDK\v1.1\Bin; C:\Program Files\Microsoft SDK\Bin\Win64; C:\Program Files\Microsoft SDK\Bin;C:\bison\bin;c:\ruby\bin; C:\win32utils>Set INCLUDE=C:\Program Files\Microsoft Visual C++ Toolkit 2003\include; C:\Program Files\Microsoft Platform SDK for Windows XP SP2\include; C:\Program Files\Microsoft Visual Studio .NET\FrameworkSDK\include; C:\OpenSSL\include;C:\Program Files\Microsoft Visual Studio\VC98\Include; C:\win32utils>Set LIB=C:\Program Files\Microsoft Visual C++ Toolkit 2003\lib; C:\Program Files\Microsoft Platform SDK for Windows XP SP2\lib; C:\Program Files\Microsoft Visual Studio .NET\FrameworkSDK\Lib\; C:\OpenSSL\lib\VC;C:\Program Files\Microsoft VisualStudio\VC98\LIB C:\win32utils>cd .. C:\>cd "Program Files" C:\Program Files>dir Micro* Volume in drive C has no label. Volume Serial Number is 6B0E-6992 Directory of C:\Program Files 01/20/2005 11:59 PM <DIR> Microsoft ACT 10/04/2003 03:14 PM <DIR> Microsoft ActiveSync 11/05/2003 08:28 AM <DIR> Microsoft Expedia 01/01/2003 04:49 AM <DIR> microsoft frontpage 01/20/2005 11:59 PM <DIR> Microsoft Office *10/29/2004 07:16 PM <DIR> Microsoft Platform SDK for Windows XP SP2 02/29/2004 01:27 PM <DIR> Microsoft SDK* 03/05/2004 08:04 PM <DIR> Microsoft SQL Server *10/29/2004 07:23 PM <DIR> Microsoft Visual C++ Toolkit 2003 10/04/2003 03:43 PM <DIR> Microsoft Visual Studio 01/21/2005 12:29 AM <DIR> Microsoft Visual Studio .NET 12/02/2003 11:31 PM <DIR> Microsoft Visual Studio .NET 2003 01/20/2005 11:59 PM <DIR> Microsoft.NET* 0 File(s) 0 bytes 13 Dir(s) 6,174,777,344 bytes free C:\Program Files> Park Heesob wrote:>>Any ideas of what could be wrong with my process? >> >>Thanks, >>-- shanko >> >>win32-pipe: >>------------------------- >> >>creating Makefile >> cl -nologo -MD -Zi -O2b2xg- -G5 -I. >>-Ic:/ruby/lib/ruby/1.8/i386-mswin32 -Ic:/ruby/lib/ruby/1.8/i386-mswin32 >>-I. -I. -I./.. -I./../missing -c -Tcpipe.c >>pipe.c >> cl -nologo -LD -Fepipe.so pipe.obj msvcrt-ruby18.lib oldnames.lib >>user32.lib advapi32.lib wsock32.lib -link -incremental:no -debug >>-opt:ref -opt:icf -dll -libpath:"c:/ruby/lib" -def:pipe-i386-mswin32.def >> Creating library pipe.lib and object pipe.exp >>pipe.obj : error LNK2019: unresolved external symbol __ftol2 referenced >>in function _pipe_wait >>pipe.so : fatal error LNK1120: 1 unresolved externals >> >>-------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/win32utils-devel/attachments/20050227/fef87125/attachment.htm
Hi Shashank, I don''t know if this will fix your __ftol2 error, but I notice that in your INCLUDE and LIB paths, the Platform SDK is the second entry. I always set these paths so the Platform SDK is the first entry, because the Platform SDK contains Microsoft''s latest stuff, often in the form of modified include files and/or libraries, so the search paths should be set to find these in the SDK first. Also, I''d make sure you have the latest Platform SDK, which it looks like you probably do. Hope this helps, Wayne Sunday, February 27, 2005, 8:26:14 AM, you wrote:> Hi Park,> One more thing. I have the following (see below) Microsoft > products installed on? my machine. > Notice that there many places (in bold) where you find the compiler. Do you think > I am compiling/linking with the wrong INCLUDE and LIB files? This is how I have set them:> Microsoft Windows XP [Version 5.1.2600] > (C) Copyright 1985-2001 Microsoft Corp.C:\win32utils>>set C:\win32utils>>PATH=C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;> C:\Program Files\Microsoft Visual C++ Toolkit 2003\bin; > C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322; > C:\ProgramFiles\Microsoft.NET\SDK\v1.1\Bin; > C:\Program Files\Microsoft SDK\Bin\Win64; > C:\Program Files\Microsoft SDK\Bin;C:\bison\bin;c:\ruby\bin;> C:\win32utils>Set INCLUDE=C:\Program Files\Microsoft Visual C++ Toolkit 2003\include; > C:\Program Files\Microsoft Platform SDK for Windows XP SP2\include; > C:\Program Files\Microsoft Visual Studio .NET\FrameworkSDK\include; > C:\OpenSSL\include;C:\Program Files\Microsoft Visual Studio\VC98\Include;> C:\win32utils>Set LIB=C:\Program Files\Microsoft Visual C++ Toolkit 2003\lib; > C:\Program Files\Microsoft Platform SDK for Windows XP SP2\lib; > C:\Program Files\Microsoft Visual Studio .NET\FrameworkSDK\Lib\; > C:\OpenSSL\lib\VC;C:\Program Files\Microsoft VisualStudio\VC98\LIB> C:\win32utils>cd ..C:\>>cd "Program Files"> C:\Program Files>dir? Micro* > ?Volume in drive C has no label. > ?Volume Serial Number is 6B0E-6992> ?Directory of C:\Program Files> 01/20/2005? 11:59 PM??? <DIR>????????? Microsoft ACT > 10/04/2003? 03:14 PM??? <DIR>????????? Microsoft ActiveSync > 11/05/2003? 08:28 AM??? <DIR>????????? Microsoft Expedia > 01/01/2003? 04:49 AM??? <DIR>????????? microsoft frontpage > 01/20/2005? 11:59 PM??? <DIR>????????? Microsoft Office > 10/29/2004? 07:16 PM??? <DIR>????????? Microsoft Platform SDK for Windows XP SP2 > 02/29/2004? 01:27 PM??? <DIR>????????? Microsoft SDK > 03/05/2004? 08:04 PM??? <DIR>????????? Microsoft SQL Server > 10/29/2004? 07:23 PM??? <DIR>????????? Microsoft Visual C++ Toolkit 2003 > 10/04/2003? 03:43 PM??? <DIR>????????? Microsoft Visual Studio > 01/21/2005? 12:29 AM??? <DIR>????????? Microsoft Visual Studio .NET > 12/02/2003? 11:31 PM??? <DIR>????????? Microsoft Visual Studio .NET 2003 > 01/20/2005? 11:59 PM??? <DIR>????????? Microsoft.NET > ?????????????? 0 File(s)????????????? 0 bytes > ????????????? 13 Dir(s)?? 6,174,777,344 bytes free> C:\Program Files>> Park Heesob wrote:> Any ideas of what could be wrong with my process?> Thanks, > -- shanko> win32-pipe: > -------------------------> creating Makefile > cl -nologo -MD -Zi -O2b2xg- -G5 -I. > -Ic:/ruby/lib/ruby/1.8/i386-mswin32 > -Ic:/ruby/lib/ruby/1.8/i386-mswin32 > -I. -I. -I./.. -I./../missing -c -Tcpipe.c > pipe.c > cl -nologo -LD -Fepipe.so pipe.obj msvcrt-ruby18.lib oldnames.lib > user32.lib advapi32.lib wsock32.lib -link -incremental:no -debug > -opt:ref -opt:icf -dll -libpath:"c:/ruby/lib" -def:pipe-i386-mswin32.def > Creating library pipe.lib and object pipe.exp > pipe.obj : error LNK2019: unresolved external symbol __ftol2 referenced > in function _pipe_wait > pipe.so : fatal error LNK1120: 1 unresolved externals
Hi Wayne, Wayne Vucenic wrote:>Hi Shashank, > >I don''t know if this will fix your __ftol2 error, but I notice that in >your INCLUDE and LIB paths, the Platform SDK is the second entry. I >always set these paths so the Platform SDK is the first entry, because >the Platform SDK contains Microsoft''s latest stuff, often in the form >of modified include files and/or libraries, so the search paths should >be set to find these in the SDK first. > >Exactly right ! I figured it out just minutes after I sent my earlier email. Thanks for the tip anyway. I now have the one-click installer ready for testing. Let me know if anybody is interested in giving it a spin. Please beware that I am still not done with full testing of each module.... and I am seeing some problems already (in win32-file, win32-service, win32-shortcut etc). Dan: I will publish the full report shortly So the one-click installer will definitely change ... -- shanko
Dan/Park, I have attached the output of runing test/tc_*.rb for each module. There are only 4 failures. The most serious one seems to be for win32-open3. Let me know what you think. Based on two minor failures (win32-shortcut and win32-thread) I have a sneeking suspicion that I have got the wrong version. I did a CVS update (using TortoiseCVS) before compiling. I know, Dan, once you had asked me to download the tarball. Why was (is) that? Other than that, things seem to have gone pretty smooth. If somebody helps me test the installer, we should be ready to release within a day or two. Any takers? -- shanko -------------- next part -------------- win32-changejournal: ------------------------- tc_changejournal.rb Loaded suite tc_changejournal Started .. Finished in 1.923 seconds. 2 tests, 4 assertions, 0 failures, 0 errors win32-changenotify: ------------------------- tc_changenotify.rb Loaded suite tc_changenotify Started ......... Finished in 0.0 seconds. 9 tests, 17 assertions, 0 failures, 0 errors win32-clipboard: ------------------------- tc_clipboard.rb Loaded suite tc_clipboard Started .......... Finished in 0.03 seconds. 10 tests, 27 assertions, 0 failures, 0 errors tc_clipboard_gem.rb win32-dir: ------------------------- tc_dir.rb Some tests may fail because they are not defined on your system. This is not unexpected. Loaded suite tc_dir Started ...F..............F...F...F.....F.F.F............ Finished in 0.07 seconds. 1) Failure: test_bitbucket(TC_Win32_Dir) [tc_dir.rb:39]: <nil> expected to not be nil. 2) Failure: test_controls(TC_Win32_Dir) [tc_dir.rb:114]: <nil> expected to not be nil. 3) Failure: test_drives(TC_Win32_Dir) [tc_dir.rb:134]: <nil> expected to not be nil. 4) Failure: test_internet(TC_Win32_Dir) [tc_dir.rb:154]: <nil> expected to not be nil. 5) Failure: test_mydocuments(TC_Win32_Dir) [tc_dir.rb:169]: <nil> expected to not be nil. 6) Failure: test_network(TC_Win32_Dir) [tc_dir.rb:194]: <nil> expected to not be nil. 7) Failure: test_printers(TC_Win32_Dir) [tc_dir.rb:204]: <nil> expected to not be nil. 49 tests, 91 assertions, 7 failures, 0 errors win32-driveinfo: ------------------------- tc_di.rb Loaded suite tc_di Started . Finished in 0.0 seconds. 1 tests, 1 assertions, 0 failures, 0 errors tc_driveinfo.rb Loaded suite tc_driveinfo Started . Finished in 0.0 seconds. 1 tests, 1 assertions, 0 failures, 0 errors win32-etc: ------------------------- tc_etc.rb Loaded suite tc_etc Started .............. Finished in 16.985 seconds. 14 tests, 28 assertions, 0 failures, 0 errors win32-event: ------------------------- tc_event.rb Loaded suite tc_event Started ........ Finished in 0.0 seconds. 8 tests, 22 assertions, 0 failures, 0 errors win32-eventlog: ------------------------- tc_all.rb Relax - this will take a few moments Loaded suite tc_all Started .....................Microsoft (R) Incremental Linker Version 6.00.8447 Copyright (C) Microsoft Corp 1992-1998. All rights reserved. LINK : warning LNK4068: /MACHINE not specified; defaulting to IX86 .. Finished in 26.558 seconds. 23 tests, 1306 assertions, 0 failures, 0 errors tc_eventlog.rb Relax - this will take a few moments Loaded suite tc_eventlog Started .................. Finished in 23.164 seconds. 18 tests, 3614 assertions, 0 failures, 0 errors tc_mc.rb Loaded suite tc_mc Started ...Microsoft (R) Incremental Linker Version 6.00.8447 Copyright (C) Microsoft Corp 1992-1998. All rights reserved. LINK : warning LNK4068: /MACHINE not specified; defaulting to IX86 .. Finished in 0.581 seconds. 5 tests, 9 assertions, 0 failures, 0 errors win32-file: ------------------------- tc_file.rb Loaded suite tc_file Started ...........FF...................... Finished in 0.451 seconds. 1) Failure: test_decrypt(TC_Win32_File) [tc_file.rb:120]: Exception raised: Class: <Win32::FileError> Message: <"The request is not supported."> ---Backtrace--- tc_file.rb:120:in `decrypt'' tc_file.rb:120:in `test_decrypt'' tc_file.rb:120:in `assert_nothing_raised'' tc_file.rb:120:in `test_decrypt'' --------------- 2) Failure: test_encrypt(TC_Win32_File) [tc_file.rb:126]: File.encrypt test may fail depending on security setup. Exception raised: Class: <Win32::FileError> Message: <"The request is not supported."> ---Backtrace--- tc_file.rb:126:in `encrypt'' tc_file.rb:126:in `test_encrypt'' tc_file.rb:126:in `assert_nothing_raised'' tc_file.rb:126:in `test_encrypt'' --------------- 35 tests, 159 assertions, 2 failures, 0 errors tc_file_native.rb Loaded suite tc_file_native Started FFFFF Finished in 0.09 seconds. 1) Failure: test_nopen(TC_Win32_File_Native) [tc_file_native.rb:29]: Exception raised: Class: <Errno::EINVAL> Message: <"Invalid argument"> ---Backtrace--- tc_file_native.rb:30:in `initialize'' tc_file_native.rb:30:in `nopen'' tc_file_native.rb:30:in `test_nopen'' tc_file_native.rb:29:in `assert_nothing_raised'' tc_file_native.rb:29:in `test_nopen'' --------------- 2) Failure: test_nopen_block(TC_Win32_File_Native) [tc_file_native.rb:49]: Exception raised: Class: <Win32::FileError> Message: <"The process cannot access the file because it is being used by another process."> ---Backtrace--- tc_file_native.rb:50:in `nopen'' tc_file_native.rb:50:in `test_nopen_block'' tc_file_native.rb:49:in `assert_nothing_raised'' tc_file_native.rb:49:in `test_nopen_block'' --------------- 3) Failure: test_nopen_with_flags(TC_Win32_File_Native) [tc_file_native.rb:36]: Exception raised: Class: <Win32::FileError> Message: <"The process cannot access the file because it is being used by another process."> ---Backtrace--- tc_file_native.rb:37:in `nopen'' tc_file_native.rb:37:in `test_nopen_with_flags'' tc_file_native.rb:36:in `assert_nothing_raised'' tc_file_native.rb:36:in `test_nopen_with_flags'' --------------- 4) Failure: test_nread(TC_Win32_File_Native) [tc_file_native.rb:56]: Exception raised: Class: <Win32::FileError> Message: <"The process cannot access the file because it is being used by another process."> ---Backtrace--- tc_file_native.rb:57:in `nopen'' tc_file_native.rb:57:in `test_nread'' tc_file_native.rb:56:in `assert_nothing_raised'' tc_file_native.rb:56:in `test_nread'' --------------- 5) Failure: test_nwrite(TC_Win32_File_Native) [tc_file_native.rb:64]: Exception raised: Class: <Win32::FileError> Message: <"The process cannot access the file because it is being used by another process."> ---Backtrace--- tc_file_native.rb:65:in `nopen'' tc_file_native.rb:65:in `test_nwrite'' tc_file_native.rb:64:in `assert_nothing_raised'' tc_file_native.rb:64:in `test_nwrite'' --------------- 5 tests, 5 assertions, 5 failures, 0 errors win32-ipc: ------------------------- tc_ipc.rb Loaded suite tc_ipc Started ....... Finished in 0.0 seconds. 7 tests, 10 assertions, 0 failures, 0 errors win32-mmap: ------------------------- tc_mmap.rb Loaded suite tc_mmap Started ..... Finished in 0.0 seconds. 5 tests, 14 assertions, 0 failures, 0 errors win32-mutex: ------------------------- tc_mutex.rb Loaded suite tc_mutex Started ...... Finished in 0.0 seconds. 6 tests, 7 assertions, 0 failures, 0 errors win32-open3: ------------------------- tc_open3.rb Loaded suite tc_open3 Started tc_open3.rb:72: [BUG] Segmentation fault ruby 1.8.2 (2004-12-25) [i386-mswin32] This application has requested the Runtime to terminate it in an unusual way. Please contact the application''s support team for more information. win32-pipe: ------------------------- tc_pipe.rb Loaded suite tc_pipe Started .......... Finished in 0.02 seconds. 10 tests, 21 assertions, 0 failures, 0 errors win32-process: ------------------------- tc_process.rb Stopping! The sys/proctable module is required to run this test suite You can find it at http://ruby-sysutils.sf.net or the RAA win32-sapi: ------------------------- tc_sapi5.rb Loaded suite tc_sapi5 Started .................... Finished in 1.302 seconds. 20 tests, 20 assertions, 0 failures, 0 errors win32-semaphore: ------------------------- tc_semaphore.rb Loaded suite tc_semaphore Started ........ Finished in 0.01 seconds. 8 tests, 11 assertions, 0 failures, 0 errors win32-service: ------------------------- tc_daemon.rb Loaded suite tc_daemon Started .... Finished in 0.0 seconds. 4 tests, 12 assertions, 0 failures, 0 errors tc_service.rb win32-shortcut: ------------------------- tc_shortcut.rb Loaded suite tc_shortcut Started ..............F. Finished in 0.13 seconds. 1) Failure: test_version(TC_Shortcut) [tc_shortcut.rb:27]: <"0.1.1"> expected but was <"0.1.0">. 16 tests, 44 assertions, 1 failures, 0 errors win32-sound: ------------------------- tc_sound.rb You may hear some funny noises - don''t panic Loaded suite tc_sound Started ....... Finished in 2.313 seconds. 7 tests, 31 assertions, 0 failures, 0 errors win32-taskscheduler: ------------------------- tc_taskscheduler.rb Loaded suite tc_taskscheduler Started ............................. Finished in 0.29 seconds. 29 tests, 129 assertions, 0 failures, 0 errors win32-thread: ------------------------- tc_thread.rb Loaded suite tc_thread Started ...F Finished in 0.02 seconds. 1) Failure: test_version(TC_Win32Thread) [tc_thread.rb:22]: <"0.1.0"> expected but was <"0.0.1">. 4 tests, 7 assertions, 1 failures, 0 errors
Hi All, Shashank Date wrote:> Other than that, things seem to have gone pretty smooth. If somebody > helps me test the installer, we should be ready to release within a > day or two. Any takers?I have attached the pre-release version for you to test. It contains thread and driveinfo, but the final release version will NOT have these two modules as requested by Dan (saw his email just while I was getting ready to send this one ;-) Please give it a swirl and let me know of any errors. Thanks, -- shanko -------------- next part -------------- A non-text attachment was scrubbed... Name: win32utils-V.0.0.3.zip Type: application/zip Size: 201581 bytes Desc: not available Url : http://rubyforge.org/pipermail/win32utils-devel/attachments/20050227/82de6cc7/win32utils-V.0.0.3-0001.zip