testbot flakiness?

Frédéric Delanoy frederic.delanoy at gmail.com
Tue Jun 7 07:32:22 CDT 2011


On Mon, Jun 6, 2011 at 03:17, Dan Kegel <dank at kegel.com> wrote:
> https://testbot.winehq.org/JobDetails.pl?Key=11509 shows failures and
> crashes, but the nearly identical
> https://testbot.winehq.org/JobDetails.pl?Key=11510 does not.  (The latter one
> just adds a call to GetProcessMemoryInfo() in the xyz() logging function.)
>
> And the failure shown by the first patch has a last error
> on creating the batch file of 8, ERROR_NOT_ENOUGH_MEMORY, which is suspicious.
>
> Not quite sure what's going on there.

I made some tests to get a minimal patch where this occurs, and it's
rather weird: problem occurs when the "rem" line precedes the "call
:setError 0" call

WORKS
https://testbot.winehq.org/JobDetails.pl?Key=11540
+echo -----------Testing mkdir -----------
+call :setError 0
+

https://testbot.winehq.org/JobDetails.pl?Key=11539
+echo -----------Testing mkdir -----------
+rem Creating an already existing directory must fail
+

DOES NOT WORK
https://testbot.winehq.org/JobDetails.pl?Key=11538
+echo -----------Testing mkdir -----------
+rem Creating an already existing directory must fail
+call :setError 0
+



More information about the wine-devel mailing list