Hi,
I'm trying to fix the failing cross tests, but we haven't had a winetest build on Paul Millar's server in a few days. I'm not familiar with Paul's build process, so my only guess is that a recent commit has broken the build. In the meantime, I've tried a few things.
I used John Klehm's crossbuild_tricks script [1] to build winetest. The build succeeded, but the submitted result [2] is empty or can't be parsed.
I ran 'make crosstest' from the build directory which fails with:
make[2]: Entering directory `/home/truiken/mywine/wine-build/dlls/advpack/tests' i586-mingw32msvc-gcc -c -I../../../../../wine/dlls/advpack/tests -I. -I../../../../../wine/include -I../../../include -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wwrite-strings -Wpointer-arith -g -O2 -o advpack.cross.o ../../../../../wine/dlls/advpack/tests/advpack.c ../../../../../wine/dlls/advpack/tests/advpack.c:1: warning: -fPIC ignored for target (all code is position independent) i586-mingw32msvc-gcc -c -I../../../../../wine/dlls/advpack/tests -I. -I../../../../../wine/include -I../../../include -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wwrite-strings -Wpointer-arith -g -O2 -o files.cross.o ../../../../../wine/dlls/advpack/tests/files.c ../../../../../wine/dlls/advpack/tests/files.c:1: warning: -fPIC ignored for target (all code is position independent) i586-mingw32msvc-gcc -c -I../../../../../wine/dlls/advpack/tests -I. -I../../../../../wine/include -I../../../include -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wwrite-strings -Wpointer-arith -g -O2 -o install.cross.o ../../../../../wine/dlls/advpack/tests/install.c ../../../../../wine/dlls/advpack/tests/install.c:1: warning: -fPIC ignored for target (all code is position independent) ../../../tools/make_ctests -o testlist.c advpack.c files.c install.c i586-mingw32msvc-gcc -c -I../../../../../wine/dlls/advpack/tests -I. -I../../../../../wine/include -I../../../include -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wwrite-strings -Wpointer-arith -g -O2 -o testlist.cross.o testlist.c testlist.c:1: warning: -fPIC ignored for target (all code is position independent) i586-mingw32msvc-gcc advpack.cross.o files.cross.o install.cross.o testlist.cross.o -o advpack_crosstest.exe -lcabinet -ladvapi32 -lkernel32 /usr/lib/gcc/i586-mingw32msvc/4.2.1-sjlj/../../../../i586-mingw32msvc/bin/ld: cannot find -lcabinet collect2: ld returned 1 exit status make[2]: *** [advpack_crosstest.exe] Error 1 make[2]: Leaving directory `/home/truiken/mywine/wine-build/dlls/advpack/tests' make[1]: *** [advpack/tests/__crosstest__] Error 2 make[1]: Leaving directory `/home/truiken/mywine/wine-build/dlls'
Which (I assume) is usually fixed by Paul Millar's win32api custom patches. Any thoughts or ideas?
[1] http://klehm.net/wine/crossbuild_tricks.sh [2] http://test.winehq.org/data/1a5aab0ddcc7a0dcde4403add73dbd80be746020/
On Fri, May 2, 2008 at 6:38 PM, James Hawkins truiken@gmail.com wrote:
Hi,
I'm trying to fix the failing cross tests, but we haven't had a winetest build on Paul Millar's server in a few days. I'm not familiar with Paul's build process, so my only guess is that a recent commit has broken the build. In the meantime, I've tried a few things.
I used John Klehm's crossbuild_tricks script [1] to build winetest. The build succeeded, but the submitted result [2] is empty or can't be parsed.
I ran 'make crosstest' from the build directory which fails with:
This is my fault. My tree still has my no op exceptions patch for mingw32 target that aj rejected, so the script reflects that. I will correct the script tonight.
--John
James Hawkins wrote:
Hi,
I'm trying to fix the failing cross tests, but we haven't had a winetest build on Paul Millar's server in a few days. I'm not familiar with Paul's build process, so my only guess is that a recent commit has broken the build. In the meantime, I've tried a few things.
I usually look at http://quisquiliae.physics.gla.ac.uk/cross/logs/ to see why a new winetest isn't there.
This time it's some additions to the mshtml tests that Mingw doesn't handle yet (I assume).
This is what I get on my local box:
i386-mingw32-gcc dom.cross.o htmldoc.cross.o misc.cross.o protocol.cross.o script.cross.o testlist.cross.o -o mshtml_crosstest.exe -luuid -lole32 -loleaut32 -luser32 -lurlmon -ladvapi32 -lkernel32 dom.cross.o:dom.c:(.text+0x19d0): undefined reference to `_DIID_DispHTMLElementCollection' dom.cross.o:dom.c:(.text+0x4643): undefined reference to `_IID_IOmNavigator' dom.cross.o:dom.c:(.text+0x4752): undefined reference to `_DIID_DispHTMLStyle' dom.cross.o:dom.c:(.text+0x4fa7): undefined reference to `_DIID_DispHTMLWindow2' dom.cross.o:dom.c:(.text+0x5e62): undefined reference to `_DIID_DispHTMLDOMTextNode' dom.cross.o:dom.c:(.text+0x5f74): undefined reference to `_DIID_DispDOMChildrenCollection' dom.cross.o:dom.c:(.rdata+0x5b0): undefined reference to `_DIID_DispHTMLInputElement' dom.cross.o:dom.c:(.rdata+0x5d4): undefined reference to `_DIID_DispHTMLOptionElement' dom.cross.o:dom.c:(.rdata+0x634): undefined reference to `_DIID_DispHTMLUnknownElement' dom.cross.o:dom.c:(.rdata+0x640): undefined reference to `_DIID_DispHTMLCommentElement' collect2: ld returned 1 exit status make: *** [mshtml_crosstest.exe] Error 1
On Fri, May 2, 2008 at 6:38 PM, James Hawkins truiken@gmail.com wrote:
Hi,
I'm trying to fix the failing cross tests, but we haven't had a winetest build on Paul Millar's server in a few days. I'm not familiar with Paul's build process, so my only guess is that a recent commit has broken the build. In the meantime, I've tried a few things.
I used John Klehm's crossbuild_tricks script [1] to build winetest. The build succeeded, but the submitted result [2] is empty or can't be parsed.
The script was errantly depending on my old exception noop patch. I've updated it to work with a clean wine-git.
Updated script version 20080503: http://klehm.net/wine/crossbuild_tricks.sh
Test results from 0.9.61 my winxp box: http://test.winehq.org/data/c6da2a0b9daa8bdba045559b057ccf43ea2209c7/
Note for anyone testing on server 2k8: test data will not submit to winehq. winetest just aborts after clicking yes to "submit test results". Ideas anyone?
--John Klehm
On Sun, May 4, 2008 at 12:30 AM, John Klehm xixsimplicityxix@gmail.com wrote:
On Fri, May 2, 2008 at 6:38 PM, James Hawkins truiken@gmail.com wrote:
Hi,
I'm trying to fix the failing cross tests, but we haven't had a winetest build on Paul Millar's server in a few days. I'm not familiar with Paul's build process, so my only guess is that a recent commit has broken the build. In the meantime, I've tried a few things.
I used John Klehm's crossbuild_tricks script [1] to build winetest. The build succeeded, but the submitted result [2] is empty or can't be parsed.
The script was errantly depending on my old exception noop patch. I've updated it to work with a clean wine-git.
Updated script version 20080503:
http://klehm.net/wine/crossbuild_tricks.sh
Test results from 0.9.61 my winxp box: http://test.winehq.org/data/c6da2a0b9daa8bdba045559b057ccf43ea2209c7/
Note for anyone testing on server 2k8: test data will not submit to winehq. winetest just aborts after clicking yes to "submit test results". Ideas anyone?
I'm still not getting any results with the latest script. I think it's a problem with the version being queried:
Version 4 Tests from build 6d4dae17d27008f501ccc4cf3ec87b00c240dada Archive: - Tag: jh-win2k3-vm Build info: Operating system version: bRunningUnderWine=0 bRunningOnVisibleDesktop=1 dwMajorVersion=8589934597 dwMinorVersion=8589938382 dwBuildNumber=8639766056700935376 PlatformId=9848344841461108 szCSDVersion=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\res2 wServicePackMajor=2 wServicePackMinor=0 wSuiteMask=272 wProductType=3 wReserved=30
Notice the irregular versions.
On Sun, May 4, 2008 at 1:15 AM, James Hawkins truiken@gmail.com wrote:
I'm still not getting any results with the latest script. I think it's a problem with the version being queried:
Version 4 Tests from build 6d4dae17d27008f501ccc4cf3ec87b00c240dada Archive: - Tag: jh-win2k3-vm Build info: Operating system version: bRunningUnderWine=0 bRunningOnVisibleDesktop=1 dwMajorVersion=8589934597 dwMinorVersion=8589938382 dwBuildNumber=8639766056700935376 PlatformId=9848344841461108 szCSDVersion=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\res2 wServicePackMajor=2 wServicePackMinor=0 wSuiteMask=272 wProductType=3 wReserved=30
Notice the irregular versions.
When I run the exe you sent me I get similar but not the same results:
Version 4 Tests from build 1a5aab0ddcc7a0dcde4403add73dbd80be746020 Archive: - Tag: hawkins Build info: Operating system version: bRunningUnderWine=0 bRunningOnVisibleDesktop=1 dwMajorVersion=6 dwMinorVersion=8589940593 dwBuildNumber=8601111290907393184 PlatformId=9848138674030886 szCSDVersion=C:\Users\ADMINI~1\AppData\Local\Temp\1\res5 wServicePackMajor=1 wServicePackMinor=0 wSuiteMask=272 wProductType=3 wReserved=3
However from my own build I get sane versions:
Version 4 Tests from build c6da2a0b9daa8bdba045559b057ccf43ea2209c7 Archive: - Tag: versiontest-jklehm Build info: Operating system version: bRunningUnderWine=0 bRunningOnVisibleDesktop=1 dwMajorVersion=6 dwMinorVersion=0 dwBuildNumber=6001 PlatformId=2 szCSDVersion=Service Pack 1 wServicePackMajor=1 wServicePackMinor=0 wSuiteMask=272 wProductType=3 wReserved=3
On Sun, May 4, 2008 at 12:42 PM, John Klehm xixsimplicityxix@gmail.com wrote:
On Sun, May 4, 2008 at 1:15 AM, James Hawkins truiken@gmail.com wrote:
I'm still not getting any results with the latest script. I think it's a problem with the version being queried:
Version 4 Tests from build 6d4dae17d27008f501ccc4cf3ec87b00c240dada Archive: - Tag: jh-win2k3-vm Build info: Operating system version: bRunningUnderWine=0 bRunningOnVisibleDesktop=1 dwMajorVersion=8589934597 dwMinorVersion=8589938382 dwBuildNumber=8639766056700935376 PlatformId=9848344841461108 szCSDVersion=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\res2 wServicePackMajor=2 wServicePackMinor=0 wSuiteMask=272 wProductType=3 wReserved=30
Notice the irregular versions.
When I run the exe you sent me I get similar but not the same results:
Version 4 Tests from build 1a5aab0ddcc7a0dcde4403add73dbd80be746020 Archive: - Tag: hawkins
Build info: Operating system version: bRunningUnderWine=0 bRunningOnVisibleDesktop=1 dwMajorVersion=6 dwMinorVersion=8589940593 dwBuildNumber=8601111290907393184 PlatformId=9848138674030886 szCSDVersion=C:\Users\ADMINI~1\AppData\Local\Temp\1\res5 wServicePackMajor=1
wServicePackMinor=0 wSuiteMask=272 wProductType=3 wReserved=3
However from my own build I get sane versions:
Version 4 Tests from build c6da2a0b9daa8bdba045559b057ccf43ea2209c7 Archive: - Tag: versiontest-jklehm
Build info: Operating system version: bRunningUnderWine=0 bRunningOnVisibleDesktop=1 dwMajorVersion=6 dwMinorVersion=0 dwBuildNumber=6001 PlatformId=2 szCSDVersion=Service Pack 1 wServicePackMajor=1
wServicePackMinor=0 wSuiteMask=272 wProductType=3 wReserved=3
I usually use i586-mingw32msvc, so I tried mingw32 thinking that would be the difference, but I get the same results.
Hi,
On Saturday 03 May 2008 01:38:07 James Hawkins wrote:
I'm trying to fix the failing cross tests, but we haven't had a winetest build on Paul Millar's server in a few days.
Just to mention that gaps will appear if the winetest.exe builds but hasn't changed. As Paul (Vriens) says, the log files should indicate if there's a problem: http://quisquiliae.physics.gla.ac.uk/cross/logs/
[...] a recent commit has broken the build.
Yes. It's the usual story: some new tests were added that test some functions that MinGW w32api doesn't support. As it happens, the breakage coincided with my spending a long weekend without Internet access.
The problem appears to be fixed now and a new winetest.exe should be available.
[...]
Which (I assume) is usually fixed by Paul Millar's win32api custom patches.
Yup. I try to provide a tar-ball of these patches "every so often", see: http://www.astro.gla.ac.uk/users/paulm/Cross/
I must point out that there is a group of us who do this share the patches and the vast, vast majority of the patches are not by me.
Cheers,
Paul.
On Tue, May 6, 2008 at 4:20 PM, Paul Millar paul@astro.gla.ac.uk wrote:
Hi,
On Saturday 03 May 2008 01:38:07 James Hawkins wrote:
I'm trying to fix the failing cross tests, but we haven't had a winetest build on Paul Millar's server in a few days.
Just to mention that gaps will appear if the winetest.exe builds but hasn't changed. As Paul (Vriens) says, the log files should indicate if there's a problem:
http://quisquiliae.physics.gla.ac.uk/cross/logs/
[...] a recent commit has broken the build.
Yes. It's the usual story: some new tests were added that test some functions that MinGW w32api doesn't support. As it happens, the breakage coincided with my spending a long weekend without Internet access.
The problem appears to be fixed now and a new winetest.exe should be available.
[...]
Which (I assume) is usually fixed by Paul Millar's win32api custom patches.
Yup. I try to provide a tar-ball of these patches "every so often", see: http://www.astro.gla.ac.uk/users/paulm/Cross/
I must point out that there is a group of us who do this share the patches and the vast, vast majority of the patches are not by me.
Thanks a lot Paul and everyone else who contributes to this!
On Fr, 2008-05-02 at 18:38 -0500, James Hawkins wrote:
i586-mingw32msvc-gcc advpack.cross.o files.cross.o install.cross.o testlist.cross.o -o advpack_crosstest.exe -lcabinet -ladvapi32 -lkernel32 /usr/lib/gcc/i586-mingw32msvc/4.2.1-sjlj/../../../../i586-mingw32msvc/bin/ld: cannot find -lcabinet collect2: ld returned 1 exit status make[2]: *** [advpack_crosstest.exe] Error 1
mingw from mingw.org is to old for Wine.
Which (I assume) is usually fixed by Paul Millar's win32api custom patches. Any thoughts or ideas?
Hans Leidekker maintains patched mingw packages: