I'm wondering, how I can run "make test" and exclude those which are know to fail at my system ? -- MfG/Sincerely Toralf F?rster pgp finger print: 7B1A 07F4 EC82 0F90 D4C2 8936 872A E508 7DB6 9DA3
On 3/17/10 2:43 AM, Toralf F?rster wrote:> I'm wondering, > > how I can run "make test" and exclude those which are know to fail at my > system ? >With -k: make -k test Then even if a test fails, make will run the rest of the tests. Chip
You could just not "make test". It's not a required part of building Wine; as the name states it's used to run the test cases that come with Wine. Running tests without wanting to run the ones that will fail seems kind of pointless, because running the test cases to see which ones work is the entire point of having the test cases. At least, that's what I think the test cases were for. From what I learned about things like unit testing, that's exactly what it's supposed to be for.