Re: Is the cxtest.org site down?

2008-03-17 Thread Michal Okresa
It is back again.

Maarten Lankhorst wrote:
> Hi,
> 
> I was trying to look at www.cxtest.org but the site seems not to work.
> Can this be fixed?
> 
> Cheers,
> Maarten.
> 
> 





Re: Direct3D Game test framework

2007-07-10 Thread Michal Okresa
vs version fvwm is used instead of metacity and 
--window parameter is essential to achieve  best results. For ID's of 
windows, buttons, ... you may use wpickclick/pickclick from utils directory.


--
Michal Okresa





Re: make crosstest broken (tmarshal)

2007-01-25 Thread Michal Okresa
On Thursday 25 January 2007 07:51, Paul Vriens wrote:
> as far as I can see it's not the fact that tmarshal.h is not there. It's
> the fact it's not build, as the .idl files are there (on a clean Wine it's
> not in the tests directory as well). On a 'normal' Wine-tree you will see
> it being built:
>
> ../../../tools/widl/widl -I. -I. -I../../../include -I../../../include   
> -h -H tmarshal.h tmarshal.idl

Hi,

I pointed out that cross compilation doesn't work for tmarshal test here: 
http://www.winehq.org/pipermail/wine-patches/2007-January/035157.html . It's 
happen because build system doesn't generate appropriate files.

You may build test by hand with following commands:

make test (this generates tmarshal.h, tmarshal_i.c, tmarshal.tlb, 
tmarshal.res)

i586-mingw32msvc-gcc -c -I. -I. -I../../../include -I../../../include   
-D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing 
-Wdeclaration-after-statement -Wwrite-strings -Wpointer-arith  -g -O2  -o 
tmarshal_i.cross.o tmarshal_i.c

i586-mingw32msvc-gcc olefont.cross.o olepicture.cross.o safearray.cross.o 
tmarshal.cross.o typelib.cross.o usrmarshal.cross.o varformat.cross.o 
vartest.cross.o vartype.cross.o tmarshal.res.cross.o testlist.cross.o 
tmarshal_i.cross.o -o 
oleaut32_crosstest.exe -loleaut32 -lole32 -lshlwapi -lrpcrt4 -luser32 -lgdi32 
-ladvapi32 -lkernel32 -luuid -luser32

-- 
Michal Okresa




Conformance tests

2006-12-19 Thread Michal Okresa
Hello,

wine developers guide says that conformance tests must pass successfully on 
all Windows platforms. 

I tried couple of tests in past weeks to catch wine's style of unit testing, 
but now I am confused. For example I run crosscompiled olefont test 
(oleaut32) on the windows machines (XP,  98). The test ended with 15 
failures. The same test executed on my linux machine ended with 13 failures 
(reasons for failures are almost identical with previous runs on windows).

Is this expected behaviour of conformance tests on windows platforms?

thanks

-- 
Michal Okresa




Re: oleaut32: Add tmarshal conformance test

2006-10-10 Thread Michal Okresa
> And how does this relate to the version that Dan Hipschman sent in:
> http://winehq.org/pipermail/wine-patches/2006-August/029511.html
> (and which didn't work on Alexandre's machine,
> http://winehq.org/pipermail/wine-devel/2006-August/050185.html )?
> - Dan

this patch fixes two problems in original version (from 7. aug.). Tested on 
two machines (debian testing, suse 10) and it does not crash anymore.

--
Michal Okresa