Re: winhttp test failing because of winehq.org problem?

2008-10-28 Thread James McKenzie
Juan Lang wrote: >> Could it be that the winhttp test is failing >> because of some change at winehq.org? >> I keep seeing >> winhttp.c:281: Test failed: Data read did not match, got '> > > Maybe. They got slashdotted (or digged, or whatever). See > http://news.slashdot.org/news/08/10/28/035

Re: Implementation of ID3DXMatrixStack interface, with tests

2008-10-28 Thread James McKenzie
Jérôme Gardou wrote: [patch removed] It would be nice to state which project this patch is associated with, however Alexandre usually fixes this when it is approved. Please put in TRACE where you removed FIXME. It makes debugging much easier. Thank you. James McKenzie

Re: [PATCH 2/3] xinput: Added the function XInputGetState with test cases

2008-10-28 Thread Vitaliy Margolen
Andrew Fenn wrote: > This patch adds the function XInputGetState which is for checking if > any joysticks are plugged in. This always returns no joysticks. > > > > > > +static void test_no_controller(void) { > + > +XIN

re: Fix kernel_main.c to generate console Window

2008-10-28 Thread Dan Kegel
Hi Slawek, Please just attach the bare patch, not a .tgz of the patch. This sounds related to http://bugs.winehq.org/show_bug.cgi?id=5541 but not a duplicate. Please open a bug report and repost your patch without compression or archiving. Thanks, Dan

Re: Implementation of ID3DXMatrixStack interface, with tests

2008-10-28 Thread Henri Verbeet
I don't think we want to implement this as a linked list. You'll also want to replace the FIXMEs you removed with useful TRACEs.

Conformance test to try on a windows box.

2008-10-28 Thread Jérôme Gardou
I'm currently implementing the D3DXMatrixStack interface. Could someone try these tests on a windows machine before I go further ? >From 240c0f61bae17813488b5c0f47cde0b5b10562e7 Mon Sep 17 00:00:00 2001 From: =?utf-8?q?J=C3=A9r=C3=B4me=20Gardou?= <[EMAIL PROTECTED](none)> Date: Mon, 27 Oct 2008 00

Re: My xinput implementation please test, plus I am getting segfault with spore

2008-10-28 Thread Henri Verbeet
2008/10/28 Andrew Fenn <[EMAIL PROTECTED]>: > Also I managed to find out why spore was crashing too. Thank you for > replying (I thought the email never arrived). I didn't put any Just noticed the mail is 3 days old. It probably went through moderation because the patches are relatively large. > I

Fix showing console window at start of some app

2008-10-28 Thread slawek
Bloodshed DevC++ will not running console application if I click run program or compile it. I was wondering why and decided to put some test we have terminal access inside Wine code. I was using create_process(inside kernell32.dll). I was put the test at top of the function. This is a test for it:

Re: My xinput implementation please test, plus I am getting segfault with spore

2008-10-28 Thread Andrew Fenn
Hi Henri, Thanks for the input, could you take a look at my patches I sent on wine patches instead as I have fixed all these issues and updated my diffs. http://www.winehq.org/pipermail/wine-patches/2008-October/063800.html http://www.winehq.org/pipermail/wine-patches/2008-October/063801.html htt

Re: winecfg - great job!

2008-10-28 Thread Eric Anopolsky
On Mon, 2008-10-27 at 17:07 +, wineappdb wrote: > On Mon, 27 Oct 2008 10:44:54 -0600 > Eric Anopolsky <[EMAIL PROTECTED]> wrote: > > > I can say something like, "Diablo II will not run fullscreen on my > > computer. You have to set it to use an emulated desktop before you > > launch it or it w

Re: My xinput implementation please test, plus I am getting segfault with spore

2008-10-28 Thread Henri Verbeet
2008/10/25 Andrew Fenn <[EMAIL PROTECTED]>: > Hi all, > > I am getting a segfault with the release version of Spore (I didn't > test 1.1) right after my code implementation of xinput is handled by > the game. Is there something I am doing wrong here or is it the game? ... > +DWORD XInputGetState(DW

Re: DIrectSound on top of openAL ?

2008-10-28 Thread Chris Robinson
On Sunday 26 October 2008 06:06:07 am Jérôme Gardou wrote: > I was wondering why directsound was not implemented using openal. As > direct3d is implemented on top of opengl. It's not very easy to get DirectSound working on top of OpenAL. I actually made a DSound->OpenAL wrapper (as a native C++ W

Re: winecfg - great job!

2008-10-28 Thread wineappdb
On Mon, 27 Oct 2008 10:44:54 -0600 Eric Anopolsky <[EMAIL PROTECTED]> wrote: > I can say something like, "Diablo II will not run fullscreen on my > computer. You have to set it to use an emulated desktop before you > launch it or it will crash. You can do that using the 'Configure Wine' > program

DIrectSound on top of openAL ?

2008-10-28 Thread Jérôme Gardou
I was wondering why directsound was not implemented using openal. As direct3d is implemented on top of opengl. I see three major advantages : openAL is cross-platform, whereas alsa is linux-specific. openAL is (sometimes) hardware-accelerated. Wine would bring directsound hardware acceleration to

Re: Winelib and static-build

2008-10-28 Thread Boaz Harrosh
Dan Kegel wrote: > On Sat, Oct 25, 2008 at 8:10 AM, Alan Nisota <[EMAIL PROTECTED]> wrote: > >> Very cool. Here is what I did: >> In linux (host): >> use shm_open and ftruncate to create a shared-memory region (this will be at >> /dev/shm/ in linux) >> use mmap to map that into memory >> create

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

2008-10-28 Thread Elias Benali
>From 6dc7a289ccf1567a87dfca66a86ace0f509621ff Mon Sep 17 00:00:00 2001 From: Elias Benali <[EMAIL PROTECTED]> Date: Sat, 25 Oct 2008 21:09:27 -0400 Subject: wordpad: Make the Replace function work and the Find/Replace dialogs behave like expected. The "Find What" field is filled from the current

Re: RFC: wineprefix manager

2008-10-28 Thread wineappdb
On Fri, 24 Oct 2008 17:40:29 -0400 "Steven Edwards" <[EMAIL PROTECTED]> wrote: > Hello, > Over the past few months I've been developing a tool that I had hoped > to demo at wineconf before my laptop started acting up. It is a Wine > Prefix Manager I developed for Bordeaux, At this time its still t

My xinput implementation please test, plus I am getting segfault with spore

2008-10-28 Thread Andrew Fenn
Hi all, I am getting a segfault with the release version of Spore (I didn't test 1.1) right after my code implementation of xinput is handled by the game. Is there something I am doing wrong here or is it the game? I also tested Assasin's Creed which uses xinput1_3 and that happens to load my impl

Re: Wine does not compile using Ubuntu real-time kernel

2008-10-28 Thread Susan Cragin
>On Tue, Oct 28, 2008 at 10:50 AM, Susan Cragin wrote: >> I guess this is a FYI. Because this seems to be a rt-kernel issue, not a >> wine issue. >> Background -- Ubuntu stopped sponsoring the RT kernel for a while. (It used >> to compile wine without a problem.) But so many people used it that t

Re: Wine does not compile using Ubuntu real-time kernel

2008-10-28 Thread Andrew Fenn
Hi Susan, Could you tell me which version of Ubuntu and which package to install. I am using Hardy but I can't find a package of the real time kernel which are of the versions you mentioned. Thanks, Andrew On Tue, Oct 28, 2008 at 3:50 PM, Susan Cragin <[EMAIL PROTECTED]> wrote: > I guess this is

Re: [PATCH] uxtheme: fixed the todo blocks in the SetWindowTheme tests. [try 2]

2008-10-28 Thread Reece Dunn
2008/10/28 James Hawkins <[EMAIL PROTECTED]>: > On Tue, Oct 28, 2008 at 10:17 AM, Rob Shearman <[EMAIL PROTECTED]> wrote: >> 2008/10/28 James Hawkins <[EMAIL PROTECTED]>: >>> This code is screaming for a goto. >> >> I disagree. > > Yes, it was late and my mind stopped after the next thought. There

Re: Wine does not compile using Ubuntu real-time kernel

2008-10-28 Thread Austin English
On Tue, Oct 28, 2008 at 10:50 AM, Susan Cragin <[EMAIL PROTECTED]> wrote: > I guess this is a FYI. Because this seems to be a rt-kernel issue, not a wine > issue. > Background -- Ubuntu stopped sponsoring the RT kernel for a while. (It used > to compile wine without a problem.) But so many people

Re: crypt32: fix a test failure on Free/PC-BSD

2008-10-28 Thread Austin English
On Tue, Oct 28, 2008 at 8:03 AM, Francois Gouget <[EMAIL PROTECTED]> wrote: > On Mon, 27 Oct 2008, Austin English wrote: > >> PC-BSD doesn't have root certificates installed by default. They're >> available in ports/security/ca_root_nss, but even after installing >> them, the test still fails. We n

Re: [PATCH] uxtheme: fixed the todo blocks in the SetWindowTheme tests. [try 2]

2008-10-28 Thread James Hawkins
On Tue, Oct 28, 2008 at 10:17 AM, Rob Shearman <[EMAIL PROTECTED]> wrote: > 2008/10/28 James Hawkins <[EMAIL PROTECTED]>: >> +HRESULT hr = S_OK; >> TRACE("(%p,%s,%s)\n", hwnd, debugstr_w(pszSubAppName), >> debugstr_w(pszSubIdList)); >> -hr = UXTHEME_SetWindowProperty(hwnd, atS

Wine does not compile using Ubuntu real-time kernel

2008-10-28 Thread Susan Cragin
I guess this is a FYI. Because this seems to be a rt-kernel issue, not a wine issue. Background -- Ubuntu stopped sponsoring the RT kernel for a while. (It used to compile wine without a problem.) But so many people used it that they started sponsoring it again, after a lag. DNS10 doesn't inst

Re: patchwatcher: the winehttp:notification tests are failing for some reason

2008-10-28 Thread Dan Kegel
On Tue, Oct 28, 2008 at 8:22 AM, Hans Leidekker <[EMAIL PROTECTED]> wrote: > But I don't think we want to give up on this type of test > coverage though, precisely because it exercises failure > paths better, in tests and core Wine code. I agree. We just need to move the servers onto localhost.

Re: winhttp test failing because of winehq.org problem?

2008-10-28 Thread Dan Kegel
On Tue, Oct 28, 2008 at 7:33 AM, Dan Kegel <[EMAIL PROTECTED]> wrote: > Could it be that the winhttp test is failing > because of some change at winehq.org? > I keep seeing > winhttp.c:281: Test failed: Data read did not match, got '

Re: patchwatcher: the winehttp:notification tests are failing for some reason

2008-10-28 Thread Hans Leidekker
On Tuesday 28 October 2008 14:02:15 Dan Kegel wrote: > > I guess we could increase sleep between two tests that query the same > > host once more, or just pick another host. > > Any test that uses the public internet is buggy > and is bound to fail often enough to annoy people > when run as part o

Re: [PATCH] uxtheme: fixed the todo blocks in the SetWindowTheme tests. [try 2]

2008-10-28 Thread Rob Shearman
2008/10/28 James Hawkins <[EMAIL PROTECTED]>: > +HRESULT hr = S_OK; > TRACE("(%p,%s,%s)\n", hwnd, debugstr_w(pszSubAppName), > debugstr_w(pszSubIdList)); > -hr = UXTHEME_SetWindowProperty(hwnd, atSubAppName, pszSubAppName); > +if(!IsWindow(hwnd)) > +hr = E_HANDLE;

Re: winhttp test failing because of winehq.org problem?

2008-10-28 Thread Juan Lang
> Could it be that the winhttp test is failing > because of some change at winehq.org? > I keep seeing > winhttp.c:281: Test failed: Data read did not match, got 'http://news.slashdot.org/news/08/10/28/0354203.shtml That gave me a good chuckle this morning. Nice job, Jeremy :) --Juan

winhttp test failing because of winehq.org problem?

2008-10-28 Thread Dan Kegel
Could it be that the winhttp test is failing because of some change at winehq.org? I keep seeing winhttp.c:281: Test failed: Data read did not match, got '

Re: crypt32: fix a test failure on Free/PC-BSD

2008-10-28 Thread Francois Gouget
On Mon, 27 Oct 2008, Austin English wrote: > PC-BSD doesn't have root certificates installed by default. They're > available in ports/security/ca_root_nss, but even after installing > them, the test still fails. We need their location added to the list > of locations to search. So this means we d

Re: patchwatcher: the winehttp:notification tests are failing for some reason

2008-10-28 Thread Dan Kegel
On Tue, Oct 28, 2008 at 1:37 AM, Hans Leidekker <[EMAIL PROTECTED]> wrote: >> http://kegel.com/wine/patchwatcher/results/3644.log > ... > I guess we could increase sleep between two tests that query the same host > once more, or just pick another host. Any test that uses the public internet is bug

Re: [oleacc/tests] Remove a test with different results on several platforms

2008-10-28 Thread Paul Vriens
On Mon, Oct 27, 2008 at 4:18 PM, Paul Vriens <[EMAIL PROTECTED]> wrote: > Hi, > > This test shows different results on different platforms (and on W2K even on > the same platform). I don't think there is any value in the content of the > buffer as the call failed anyway (ret == 0). > > Changelog >

Re: mshtml: Implement HTMLDocument get/put designMode (try 2)

2008-10-28 Thread Jacek Caban
Alistair Leslie-Hughes wrote: > Hi, > Initialize designmode > > Changelog: > mshtml: Implement HTMLDocument get/put designMode We need its true implementation. What you do is a step in wrong direction and it's obviously not implementation but stub. Jacek

Re: [PATCH] uxtheme: SetWindowTheme should return E_HANDLE when the HWND it is passed is invalid. [try 3]

2008-10-28 Thread Alexandre Julliard
"Reece Dunn" <[EMAIL PROTECTED]> writes: > @@ -691,11 +691,21 @@ HRESULT WINAPI SetWindowTheme(HWND hwnd, LPCWSTR > pszSubAppName, > HRESULT hr; > TRACE("(%p,%s,%s)\n", hwnd, debugstr_w(pszSubAppName), >debugstr_w(pszSubIdList)); > + > +if(!IsWindow(hwnd)) > +{ > +

Re: patchwatcher: the winehttp:notification tests are failing for some reason

2008-10-28 Thread Hans Leidekker
On Tuesday 28 October 2008 09:10:33 Reece Dunn wrote: > Does anyone have any ideas why these tests are failing (e.g. > http://kegel.com/wine/patchwatcher/results/3644.log)? The patches in > question don't touch that code at all. > > Looking at http://test.winehq.org (e.g. > http://test.winehq.org

Re: mshtml/tests: skip some tests if gecko isn't installed

2008-10-28 Thread Jacek Caban
Austin English wrote: -ok(hres == S_OK, "get_body failed: %08x\n", hres); +if(hres == E_UNEXPECTED) { +skip("Could not get document body. Assuming no Gecko installed.\n"); +} +else { +ok(hres == S_OK, "get_body failed: %08x\n", hres); +} You should fix existin

patchwatcher: the winehttp:notification tests are failing for some reason

2008-10-28 Thread Reece Dunn
Hi, Does anyone have any ideas why these tests are failing (e.g. http://kegel.com/wine/patchwatcher/results/3644.log)? The patches in question don't touch that code at all. Looking at http://test.winehq.org (e.g. http://test.winehq.org/data/07fafa26a318a3da3185fcac71bfa6d3fba82787/xp_fg-winxp-sp3

Re: [PATCH] uxtheme: fixed the todo blocks in the SetWindowTheme tests. [try 2]

2008-10-28 Thread James Hawkins
On Tue, Oct 28, 2008 at 2:29 AM, Reece Dunn <[EMAIL PROTECTED]> wrote: > Hi, > > This fixes the todo blocks in the SetWindowTheme tests. > > Changes: > v2 -- initialise the hr variable so that it is initialised in the > case where hwnd is a valid window handle. > Please fix your changelog entry t