<BLOCKQUOTE style="PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #ff0000 2px solid">
<P>&gt; Its not a fault of the tests that they fail on wine, its a fault of <BR>&gt; wine. For my understanding the test are created to show that either the <BR>&gt; behaviour of wine is correct (when the test succeeds) or that something <BR>&gt; left to do one wine (when a test fails)!?</P>
<P>check out the todo_wine construct in winetest</P>
<P>Alexandre point is not that you cannot add a test that currently fails in Wine. His point is that you cannot add a test that will make the test process fail. The todo_wine is done for that:</P>
<P>1/ it marks a test as failing on wine</P>
<P>2/ it will report it (but not make the test fail)</P>
<P>3/ it will also make the test process fail if the test succeeds (so that we can remove the todo_wine mark)</P>
<P>A+</P></BLOCKQUOTE>