mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-01-26 09:51:36 +01:00
update UNITY_OUTPUT_CHAR to not return a value (because we never check it anyway).
add UNITY_OUTPUT_FLUSH to make sure we get the output we need on aborted tests and whatnot.
This commit is contained in:
@@ -2247,7 +2247,7 @@ char* getBufferPutcharSpy(void)
|
||||
#endif
|
||||
}
|
||||
|
||||
int putcharSpy(int c)
|
||||
void putcharSpy(int c)
|
||||
{
|
||||
#ifdef USING_OUTPUT_SPY
|
||||
if (putcharSpyEnabled)
|
||||
@@ -2257,7 +2257,6 @@ int putcharSpy(int c)
|
||||
} else
|
||||
c = putchar(c);
|
||||
#endif
|
||||
return c;
|
||||
}
|
||||
|
||||
void testFailureCountIncrementsAndIsReturnedAtEnd(void)
|
||||
|
||||
Reference in New Issue
Block a user