mirror of https://github.com/PCSX2/pcsx2.git
always fflush ee/iop logs. fixes the test suite timing out on windows.
This commit is contained in:
parent
255a62dd21
commit
32182fe126
|
@ -228,12 +228,12 @@ public:
|
||||||
{
|
{
|
||||||
ConsoleColorScope cs(conColor);
|
ConsoleColorScope cs(conColor);
|
||||||
Console.WriteRaw( msg );
|
Console.WriteRaw( msg );
|
||||||
#ifdef __linux__
|
|
||||||
// Buffered output isn't compatible with the testsuite. The end of test
|
// Buffered output isn't compatible with the testsuite. The end of test
|
||||||
// doesn't always get flushed. Let's just flush all the output if EE/IOP
|
// doesn't always get flushed. Let's just flush all the output if EE/IOP
|
||||||
// print anything.
|
// print anything.
|
||||||
fflush(NULL);
|
fflush(NULL);
|
||||||
#endif
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue