Re: does anyone else's windows 98 machine not survive the user32 msg test?

2008-10-26 Thread Paul Vriens
James Hawkins wrote: > On Sun, Oct 26, 2008 at 10:31 PM, Vincent Povirk > <[EMAIL PROTECTED]> wrote: >> After I run "user32_crosstest msg" on my windows 98 virtual machine in >> qemu, it no longer responds to any mouse input (the cursor moves and >> changes, but clicking has no effect). This seems

Re: Patchwatcher status

2008-10-26 Thread Dan Kegel
On Sun, Oct 26, 2008 at 8:56 PM, Dmitry Timoshkov <[EMAIL PROTECTED]> wrote: >> I'm running into http://bugs.winehq.org/show_bug.cgi?id=15716 >> more and more often. We really need to set up mock >> servers so test cases don't need to rely on the public >> internet. > > If a test fails due to mis

Re: Where's msrle.avi? (was: winmm: Add the tests for mmioOpen andmmioSetBuffer, make them pass under Wine)

2008-10-26 Thread Dmitry Timoshkov
"Dan Kegel" <[EMAIL PROTECTED]> wrote: >> That's an optional file that could be dropped in into the tests >> directory so that the test parses some real AVI file along with >> the (synthesized) data existing in the test. That could be an AVI >> from any source, there is no particular requirements.

Re: Patchwatcher status

2008-10-26 Thread Dmitry Timoshkov
From: "Dan Kegel" <[EMAIL PROTECTED]> wrote: > I'm running into http://bugs.winehq.org/show_bug.cgi?id=15716 > more and more often. We really need to set up mock > servers so test cases don't need to rely on the public > internet. If a test fails due to missing internet access that's a bug in t

Re: Where's msrle.avi? (was: winmm: Add the tests for mmioOpen andmmioSetBuffer, make them pass under Wine)

2008-10-26 Thread Dan Kegel
On Sun, Oct 26, 2008 at 8:48 PM, Dmitry Timoshkov <[EMAIL PROTECTED]> wrote: >> Dmitry enabled a test that is skipped unless file >> msrle.avi is present. > > That's an optional file that could be dropped in into the tests > directory so that the test parses some real AVI file along with > the (syn

Re: [PATCH] wordpad: Make the Replace function work and theFind/Replace dialogs behave like expected.

2008-10-26 Thread Dmitry Timoshkov
"Maarten Lankhorst" <[EMAIL PROTECTED]> wrote: >> +#ifndef MIN >> +# define MIN(a,b) ((a) < (b) ? (a) : (b)) >> +#endif >> + >> /* use LoadString */ >> static const WCHAR wszAppTitle[] = {'W','i','n','e',' >> ','W','o','r','d','p','a','d',0}; >> > Considering you only use this macro once, wou

Re: Where's msrle.avi? (was: winmm: Add the tests for mmioOpen andmmioSetBuffer, make them pass under Wine)

2008-10-26 Thread Dmitry Timoshkov
"Dan Kegel" <[EMAIL PROTECTED]> wrote: > In http://www.winehq.org/pipermail/wine-patches/2008-June/056002.html > Dmitry enabled a test that is skipped unless file > msrle.avi is present. > Where is that file? Why isn't it in git? That's an optional file that could be dropped in into the tests di

Re: does anyone else's windows 98 machine not survive the user32 msg test?

2008-10-26 Thread James Hawkins
On Sun, Oct 26, 2008 at 10:31 PM, Vincent Povirk <[EMAIL PROTECTED]> wrote: > After I run "user32_crosstest msg" on my windows 98 virtual machine in > qemu, it no longer responds to any mouse input (the cursor moves and > changes, but clicking has no effect). This seems to be caused by > calling De

does anyone else's windows 98 machine not survive the user32 msg test?

2008-10-26 Thread Vincent Povirk
After I run "user32_crosstest msg" on my windows 98 virtual machine in qemu, it no longer responds to any mouse input (the cursor moves and changes, but clicking has no effect). This seems to be caused by calling DefWindowProcA directly with WM_SYSCOMMAND messages SC_NEXTWINDOW and SC_PREVWINDOW.

Re: Patchwatcher status

2008-10-26 Thread Dan Kegel
Kai wrote: > Dan Kegel <[EMAIL PROTECTED]> wrote: >> I'm running into http://bugs.winehq.org/show_bug.cgi?id=15716 >> more and more often. We really need to set up mock >> servers so test cases don't need to rely on the public >> internet. > > Samba has a socket wrapper library that fakes network

Re: Patchwatcher status

2008-10-26 Thread James McKenzie
Dan Kegel wrote: > I'm running into http://bugs.winehq.org/show_bug.cgi?id=15716 > more and more often. We really need to set up mock > servers so test cases don't need to rely on the public > internet. > > I'm slowly bringing up a second patchwatcher using > the newly refactored code. I even wr

Re: Patchwatcher status

2008-10-26 Thread Kai Blin
On Sunday 26 October 2008 23:00:51 Dan Kegel wrote: > I'm running into http://bugs.winehq.org/show_bug.cgi?id=15716 > more and more often. We really need to set up mock > servers so test cases don't need to rely on the public > internet. Samba has a socket wrapper library that fakes network acce

Patchwatcher status

2008-10-26 Thread Dan Kegel
I'm running into http://bugs.winehq.org/show_bug.cgi?id=15716 more and more often. We really need to set up mock servers so test cases don't need to rely on the public internet. I'm slowly bringing up a second patchwatcher using the newly refactored code. I even wrote some documentation on how

Re: [PATCH] wordpad: Make the Replace function work and the Find/Replace dialogs behave like expected.

2008-10-26 Thread Maarten Lankhorst
Hi Elias, Please don't send mail to wine-devel and wine-patches at the same time, if you want feedback, send it to wine-devel, if you want it committed, send it to wine-patches Elias Benali schreef: > diff --git a/programs/wordpad/wordpad.c b/programs/wordpad/wordpad.c > index d06b2d9..434b6fd

Re: Minimal subset of Wine that can do 'make test'?

2008-10-26 Thread Maarten Lankhorst
Hi Dan, Dan Kegel schreef: > On the theory that having a really small subset of > wine would help me bring up the new patchwatcher > faster, I tried building just ntdll and its tests. > I had to bring in a few dependencies... but the killer > was wineboot. It brings in the kitchen sink. > So much

Re: Winelib and static-build

2008-10-26 Thread Alan Nisota
Boaz Harrosh wrote: > Dan Kegel wrote: > >> On Sat, Oct 25, 2008 at 8:10 AM, Alan Nisota wrote: >> >>> I can now pass info back and forth between wine and linux via shared memory, >>> >> Sweet! I had forgotten about /dev/shm. >> > > If your going the win32 executable way. then

Where's msrle.avi? (was: winmm: Add the tests for mmioOpen and mmioSetBuffer, make them pass under Wine)

2008-10-26 Thread Dan Kegel
In http://www.winehq.org/pipermail/wine-patches/2008-June/056002.html Dmitry enabled a test that is skipped unless file msrle.avi is present. Where is that file? Why isn't it in git?

Re: gdi32: added CreateFontIndirectEx[A/W]

2008-10-26 Thread Paul Vriens
Nikolay Sivov wrote: > +if(!pCreateFontIndirectExA) > +trace("CreateFontIndirectExA not implemeted on this platform\n"); Could you turn that into a win_skip() ? -- Cheers, Paul.

Re: [msi/tests] Fix a test for systems with %TEMP% only one level deep

2008-10-26 Thread Paul Vriens
James McKenzie wrote: > Paul Vriens wrote: >> Hi, >> >> We were basically passing "C:" to SetCurrentDirectoryA and that doesn't >> work. Probably needs it's own test in kernel32 or so. >> >> Changelog >> Fix a test for systems with %TEMP% only one level deep >> >>