https://bugs.winehq.org/show_bug.cgi?id=53464
Eric Pouech eric.pouech@orange.fr changed:
What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED CC| |eric.pouech@orange.fr
--- Comment #1 from Eric Pouech eric.pouech@orange.fr --- there's a likely synchronization issue in the test: A) parent asks child to call ReadConsole with control block B) parent writes string to child's console to be handled by ReadConsole C) parent expects results from ReadConsole() call in child
but there's no guarantee that child will actually have entered ReadConsole (from A)) before string sent in B) is actually processed by console (conhost) and test expects it
We could try adding some delay between A) & B) to see what gives (unfortunately there's no timeout option in ReadConsole)
François: do you have a way to trigger this bug in tests ? (or you just overflow Marvin with tests until it appeared?)
A+