Re: Some general questions about test scripts

2005-01-24 Thread Alexandre Julliard
Paul Vriens <[EMAIL PROTECTED]> writes: > I now more or less have the following (I'm exaggerating): > > ok( a < b | a == b | a > b, "Test failed\n"); > > So the question is how do we deal with the above? If the number of > possible 'correct' output is huge, what's the benefit of testing? None,

Re: Some general questions about test scripts

2005-01-21 Thread Hans Leidekker
On Friday 21 January 2005 16:57, Paul Vriens wrote: > ok( a < b | a == b | a > b, "Test failed\n"); > > So the question is how do we deal with the above? If the number of > possible 'correct' output is huge, what's the benefit of testing? a. It's still a useful test when you imagine Windows 2010

Some general questions about test scripts

2005-01-21 Thread Paul Vriens
Hi, I'm currently working on the shlwapi tests and I already put something out on wine-devel for that. I tried a test on several operating systems with different dll's (out-of-the-box installation, servicepacks, Windows Update) so the end result is I have several different outputs of the test. I