Le 10/06/2010 23:38, Austin English a écrit :
On Thu, Jun 10, 2010 at 3:49 PM, Peter Daviesultratwo@gmail.com wrote:
Some tests crash for me (eg. http://bugs.winehq.org/show_bug.cgi?id=22903 segfaults). This means I can't run the entire test suite with "make test", what should I do?
Assuming the tests that are crashing are not caused by a patch you added to wine, either use 'make -k' to ignore the failure, or do, for example: $ touch dlls/d3d8/tests/visual.ok to have make test skip that particular test.
I think he wants to fix them not to skip them. In that case, you should compile wine with CFLAGS="-g" ./configure Thus, you'll see relevant informations in the backtrace log (files, lines number, function parameters...) And finally running WINEDEBUG=+d3d8 ../../wine d3d8_test.exe.so visual should also display TRACE() messages.