Retro68/AutomatedTests/Log.c

14 lines
235 B
C
Raw Normal View History

2017-10-01 21:36:50 +00:00
#include "Test.h"
2017-10-03 23:56:05 +00:00
char readWriteData[6] = "Three";
2017-10-01 21:36:50 +00:00
int main()
{
2017-10-03 23:56:05 +00:00
// constant initialized data
2017-10-01 21:36:50 +00:00
TEST_LOG_SIZED("One",3);
TEST_LOG_SIZED("Two",3);
2017-10-03 23:56:05 +00:00
// read-write initialized data
TEST_LOG_SIZED(readWriteData,5);
2017-10-01 21:36:50 +00:00
return 0;
}