Retro68/AutomatedTests/Timeout.c

12 lines
159 B
C
Raw Normal View History

2017-10-01 00:42:02 +00:00
#include "Test.h"
int main()
{
TEST_LOG_SIZED("One",3);
TEST_LOG_SIZED("Two",3);
for(;;)
;
TEST_LOG_SIZED("Three",5);
return 0;
2017-10-01 00:42:02 +00:00
}