Re: dlls/winmm/tests/capture.c - yes, we can open a device in 2MHz...

2004-11-08 Thread Ferenc Wagner
Robert Reif <[EMAIL PROTECTED]> writes: >> Winetest has a "runningunderwine" report option. Running >> it under Wine will be supported. > > winetest results from wine are not accepted by the website. Yes they are. Just make dist. > To be really useful as a developer tool, you would need wine >

Re: Resend: Re-implement MSVCRT *printf functions

2004-11-08 Thread Alexandre Julliard
Aneurin Price <[EMAIL PROTECTED]> writes: > Any further comments on this? Hard to say, that code is really painful to read. Please try to better follow the coding conventions used in the rest of the code. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Resend: Re-implement MSVCRT *printf functions

2004-11-08 Thread Aneurin Price
Any further comments on this?

Re: registry test incorrect for xp

2004-11-08 Thread James Hawkins
I am sorry, these errors are coming from the fact that some tests are failing in shlwapi and leaving extraneous keys in Wine\Test. advapi32\registry is in fact correct, so I will be looking into the errors of shlwapi to see what is happening. On Mon, 8 Nov 2004 02:54:32 -0500, James Hawkins <[EM

Re: Toolbar: Cleanup Patch

2004-11-08 Thread Robert Shearman
Dimitrie O. Paun wrote: On Mon, Nov 08, 2004 at 11:27:44AM -0600, Robert Shearman wrote: Changelog: - bNtfUnicode is a dup' of bUnicode so remove it and fix the few places where it was used. bUnicode is a bad name for this flag, bNtfUnicode would be better, as bUnicode is sometimes use to

Re: 150 test failures. advapi32 test crashes.

2004-11-08 Thread Hans Leidekker
On Monday 8 November 2004 17:11, Dan Kegel wrote: > > What do your $TMP and $TEMP look like? > > In the Unix shell before I start wine, they are > both unset. I was asking because the path test uses GetTempPath which looks at $TMP and $TEMP. My $TMP and $TEMP are unset as well and I don't have a

Re: signaling unix threads

2004-11-08 Thread Alexandre Julliard
Mike Hearn <[EMAIL PROTECTED]> writes: > I quite liked Michaels idea of the RT signals. Is there some reason we > can't use them? Portability, plus we don't really want queued behavior anyway. -- Alexandre Julliard [EMAIL PROTECTED]

Re: dlls/winmm/tests/capture.c - yes, we can open a device in 2MHz...

2004-11-08 Thread Alexandre Julliard
Robert Reif <[EMAIL PROTECTED]> writes: > Isn't the point of winetest just to do a sanity check on the wine > regression > tests to make sure they are correct and valid. You don't need a 100% > pass rate to prove that the tests are valid as long as you understand the > reason for failure. You ab

Re: Fix DLL loader regression

2004-11-08 Thread Alexandre Julliard
Mike Hearn <[EMAIL PROTECTED]> writes: > Any problem with this one Alexandre? It needs to be integrated in the normal code flow, there's no reason to do the RtlDosPathNameToNtPathName twice. -- Alexandre Julliard [EMAIL PROTECTED]

Re: Toolbar: Cleanup Patch

2004-11-08 Thread Dimitrie O. Paun
On Mon, Nov 08, 2004 at 11:27:44AM -0600, Robert Shearman wrote: > Changelog: > - bNtfUnicode is a dup' of bUnicode so remove it and fix the few places > where it was used. bUnicode is a bad name for this flag, bNtfUnicode would be better, as bUnicode is sometimes use to denote how the text is st

Re: 150 test failures. advapi32 test crashes.

2004-11-08 Thread Dan Kegel
Hans Leidekker wrote: On Monday 8 November 2004 14:20, Dan Kegel wrote: The path failures are all due to t: not existing; when I create it by hand, those 397 errors go away. It sounds very much like the startup code that creates c: and z: needs to also create a t: drive! What do your $TMP and $TE

Re: 150 test failures. advapi32 test crashes.

2004-11-08 Thread Hans Leidekker
On Monday 8 November 2004 14:20, Dan Kegel wrote: > The path failures are all due to t: not existing; when I create > it by hand, those 397 errors go away. > It sounds very much like the startup code that creates c: and z: needs > to also create a t: drive! What do your $TMP and $TEMP look like?

Re: dlls/winmm/tests/capture.c - yes, we can open a device in 2MHz...

2004-11-08 Thread Robert Reif
Winetest has a "runningunderwine" report option. Running it under Wine will be supported. winetest results from wine are not accepted by the website. To be really useful as a developer tool, you would need wine specific information like the os/distribution version, sound library type and version

Re: Miscellaneous UI Fixes

2004-11-08 Thread Duane Clark
William Poetra Yoga H wrote: --- "Dimitrie O. Paun" <[EMAIL PROTECTED]> wrote: On Sat, Nov 06, 2004 at 10:14:36PM -0800, William Poetra Yoga H wrote: Reasons for sending the patch: 1. all at once: the patches are a group of related fixes (as said in the website). 2. one file per message: I don't k

Re: Scrollbars

2004-11-08 Thread Robert Shearman
Nicolai Kuntze wrote: Hi, I have played with my continuing bug (#2302) but I have some problems understanding the meaning of the output: fixme:win:GetWindowModuleFileNameA GetWindowModuleFileNameA(hwnd 0x40032, lpszFileName 0x40670548, cchFileNameMax 80) stub! trace:scroll:SetScrollInfo hwnd=0x1

Re: dlls/winmm/tests/capture.c - yes, we can open a device in 2MHz...

2004-11-08 Thread Jakob Eriksson
Robert Reif wrote: Removing the test so it passes on a Windows system with a real bug is not the right thing to do for a wine regression test. The test is there to find bugs and that's what it did. How about this? regards, Jakob Index: dlls/winmm/tests/capture.c ==

Re: 150 test failures. advapi32 test crashes.

2004-11-08 Thread Michael Jung
On Monday 08 November 2004 16:47, you wrote: > --- Michael Jung <[EMAIL PROTECTED]> wrote: > > Yes, it is. I would even opt for removing this fixme (or changing it > > to a > > trace) and let the VerifyImage function always return TRUE. > > Implementing it > > in a sensible way would be a large eff

Re: dlls/winmm/tests/capture.c - yes, we can open a device in 2MHz...

2004-11-08 Thread Jakob Eriksson
Robert Reif wrote: Removing the test so it passes on a Windows system with a real bug is not the right thing to do for a wine regression test. The test is there to find bugs and that's what it did. So, a driver blacklist is in order then? regards, Jakob Eriksson

Re: 150 test failures. advapi32 test crashes.

2004-11-08 Thread Michael Stefaniuc
On Mon, Nov 08, 2004 at 04:41:59AM -0800, Dan Kegel wrote: > Michael Jung wrote: > >I fear that the problems with crypt.c and the crash are related to > >rsaenh.dll, which is pretty new in wine cvs. I can't reconstruct the test > >failures on my system. There are some entries in the initial regis

Re: Re: Winetest questions

2004-11-08 Thread Chris Morgan
> On Sun, Nov 07, 2004 at 02:01:13PM -0800, Dan Kegel wrote: > > 1. Why are all the archived posts to wine-test-results empty? > > See http://www.winehq.org/hypermail/wine-tests-results/2004/11 > > Every message body is empty! What's up with that? > > That's a good question. Chris, what's going o

Re: dlls/winmm/tests/capture.c - yes, we can open a device in 2MHz...

2004-11-08 Thread Jakob Eriksson
Robert Reif wrote: Jakob Eriksson wrote: Robert Reif wrote: Removing the test so it passes on a Windows system with a real bug is not the right thing to do for a wine regression test. The test is there to find bugs and that's what it did. So, a driver blacklist is in order then? regards, Jakob

Re: 150 test failures. advapi32 test crashes.

2004-11-08 Thread Steven Edwards
--- Michael Jung <[EMAIL PROTECTED]> wrote: > Yes, it is. I would even opt for removing this fixme (or changing it > to a > trace) and let the VerifyImage function always return TRUE. > Implementing it > in a sensible way would be a large effort, which would not buy us any This would be really

Re: 150 test failures. advapi32 test crashes.

2004-11-08 Thread Dan Kegel
Dan Kegel wrote: I pulled down sources from CVS this morning, and tried running the regression tests. There are about 150 failures. >$ grep "Test failed" log | sed 's/:.*//' | uniq -c | sort > 1 filtergraph.c > 1 rsaenh.c > 1 shelllink.c > 1 shreg.c > 2 typelib.c >

Re: 150 test failures. advapi32 test crashes.

2004-11-08 Thread Michael Jung
On Monday 08 November 2004 13:41, you wrote: > Michael Jung wrote: > > I fear that the problems with crypt.c and the crash are related to > > rsaenh.dll, which is pretty new in wine cvs. I can't reconstruct the test > > failures on my system. There are some entries in the initial registry, > > whic

Re: Fix for metafile test

2004-11-08 Thread Dan Kegel
Dmitry Timoshkov wrote: metafile.c:91: Test failed: pass 0: dx[42] (1081735508) didn't match 4 make[3]: *** [metafile.ok] Error 43 Is the metafile test supposed to be broken like this under Wine? That's because you have no truetype fonts installed. X11 fonts are broken in that respect. Thanks for

Re: 150 test failures. advapi32 test crashes.

2004-11-08 Thread Dan Kegel
Michael Jung wrote: I fear that the problems with crypt.c and the crash are related to rsaenh.dll, which is pretty new in wine cvs. I can't reconstruct the test failures on my system. There are some entries in the initial registry, which did change due to rsaenh.dll. Could please retry without a

Re: Blocking automatic debugger launch

2004-11-08 Thread Jonathan Wilson
Yeah, I know, it's just that it's not my code and I'm not certain that the authors will be releasing an update. There's a rumor of one but no certainty, as the company (a game publisher) refuses to make any announcements about what it's working on. Does the crash happen on a real windows box? If

Re: Fix for metafile test

2004-11-08 Thread Dmitry Timoshkov
"Dan Kegel" <[EMAIL PROTECTED]> wrote: > Here's what I get when I run 'make test' on Wine: [skipped] > metafile.c:91: Test failed: pass 0: dx[42] (1081735508) didn't match 4 > make[3]: *** [metafile.ok] Error 43 > > Is the metafile test supposed to be broken like this under Wine? That's becaus

Re: dlls/winmm/tests/capture.c - yes, we can open a device in 2MHz...

2004-11-08 Thread Robert Reif
Jakob Eriksson wrote: Robert Reif wrote: Removing the test so it passes on a Windows system with a real bug is not the right thing to do for a wine regression test. The test is there to find bugs and that's what it did. So, a driver blacklist is in order then? regards, Jakob Eriksson Isn't the

Re: Blocking automatic debugger launch

2004-11-08 Thread Kenneth Porter
--On Monday, November 08, 2004 10:38 AM +0100 Andreas Mohr <[EMAIL PROTECTED]> wrote: Yes, there is: fix the crash! :-) Yeah, I know, it's just that it's not my code and I'm not certain that the authors will be releasing an update. There's a rumor of one but no certainty, as the company (a game

Re: winzip 9 doesn't run under wine :-(

2004-11-08 Thread Mike Hearn
Hans Leidekker wrote: What version of Wine are you using? It installs fine for me on CVS from yesterday. I have grown into a habit of doing: $ rm -rf ~/.wine && wine because the rate of change in Wine is so high that you can expect the registry (and the rest of .wine) to be out of sync with Wine'

Re: winzip 9 doesn't run under wine :-(

2004-11-08 Thread Hans Leidekker
On Monday 8 November 2004 11:59, Mike Hearn wrote: > > But winzip 9 still doesn't install, at least with default settings; > > now the wrong value for default destination comes up in the installation > > dialog box, "%SystemDrive%\Program Files\WinZip". Seems like > > some environment variable is

Re: wine/ tools/wine.inf include/config.h.in dlls/ ...

2004-11-08 Thread Michael Jung
On Friday 05 November 2004 21:50, Vincent Béron wrote: > Le jeu 04/11/2004 à 16:15, Alexandre Julliard a écrit : > > Log message: > > Michael Jung <[EMAIL PROTECTED]> > > Implemented a substantial part of rsaenh.dll. > > > > Patch: http://cvs.winehq.org/patch.py?id=14412 > > The committed patch d

Re: winzip 9 doesn't run under wine :-(

2004-11-08 Thread Mike Hearn
Dan Kegel wrote: But winzip 9 still doesn't install, at least with default settings; now the wrong value for default destination comes up in the installation dialog box, "%SystemDrive%\Program Files\WinZip". Seems like some environment variable isn't being expanded somewhere? Check the registry, d

Re: 150 test failures. advapi32 test crashes.

2004-11-08 Thread Michael Jung
On Sunday 07 November 2004 23:19, Dan Kegel wrote: > Hey folks, > I pulled down sources from CVS this morning, and tried > running the regression tests. There are about 150 failures. > Here's a summary: > > $ grep "Test failed" log | sed 's/:.*//' | uniq -c | sort >1 filtergraph.c >

Re: Blocking automatic debugger launch

2004-11-08 Thread Andreas Mohr
Hi, On Sun, Nov 07, 2004 at 09:13:36PM -0800, Kenneth Porter wrote: > I've got an app that seems to be crashing during shutdown. (Tribes > Vengeance dedicated server) I'm running it detached inside a screen > session, and I don't want the debugger to automatically launch when the > app crashes.

Re: Do we need one of those on our docs?

2004-11-08 Thread Andreas Mohr
Hi, On Mon, Nov 08, 2004 at 10:10:46AM +0200, Shachar Shemesh wrote: > From the samba developer's guide, http://us1.samba.org/samba/devel/ > > >*Important:* In order to avoid any potential licensing issues we > >also ask that anyone who has signed the Microsoft CIFS Royalty > >Free Ag

Do we need one of those on our docs?

2004-11-08 Thread Shachar Shemesh
From the samba developer's guide, http://us1.samba.org/samba/devel/ *Important:* In order to avoid any potential licensing issues we also ask that anyone who has signed the Microsoft CIFS Royalty Free Agreement

Re: winzip 9 doesn't run under wine :-(

2004-11-08 Thread Dan Kegel
Dan Kegel wrote: And even if you put in C: instead of %SystemDrive%, installation goes a little further, but fails with "WinZip internal error in file install.c line 930". ... Hrm. Even WinZip 8.1 is failing now in the same way, even after I blow away ~/.wine. Here's part of the output of WINEDEB