Plain logger logs the used command line options.
This commit is contained in:
parent
022eceb59a
commit
4790fd63e3
2 changed files with 7 additions and 8 deletions
|
@ -40,16 +40,15 @@ PlainRunStarted(int parameterCount, char *runnerParameters[], time_t eventTime,
|
||||||
void *data)
|
void *data)
|
||||||
{
|
{
|
||||||
Output(indentLevel, "Test run started at %s", TimestampToString(eventTime));
|
Output(indentLevel, "Test run started at %s", TimestampToString(eventTime));
|
||||||
Output(indentLevel, "");
|
Output(indentLevel, "Runner parameters: ");
|
||||||
/*
|
|
||||||
Output(indentLevel, "Runner: ");
|
|
||||||
|
|
||||||
int counter = 0;
|
int counter = 0;
|
||||||
for(counter = 0; counter < parameterCount; counter++) {
|
for(counter = 0; counter < parameterCount; counter++) {
|
||||||
char *parameter = runnerParameters[counter];
|
char *parameter = runnerParameters[counter];
|
||||||
Output(indentLevel, "\t%s", parameter);
|
Output(indentLevel, "\t%s", parameter);
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
Output(indentLevel, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
@ -18,7 +18,7 @@ static const TestCaseReference test2 =
|
||||||
(TestCaseReference){ "surface_testBlit", "Tests some blitting routines.", TEST_ENABLED, 0, 0};
|
(TestCaseReference){ "surface_testBlit", "Tests some blitting routines.", TEST_ENABLED, 0, 0};
|
||||||
|
|
||||||
static const TestCaseReference test3 =
|
static const TestCaseReference test3 =
|
||||||
(TestCaseReference){ "surface_testBlitBlendNone", "Tests some more blitting routines.", TEST_ENABLED, 0, 0};
|
(TestCaseReference){ "surface_testBlitBlendNone", "Tests blitting routines with none blending.", TEST_ENABLED, 0, 0};
|
||||||
|
|
||||||
static const TestCaseReference test4 =
|
static const TestCaseReference test4 =
|
||||||
(TestCaseReference){ "surface_testLoadFailure", "Tests sprite loading. A failure case.", TEST_ENABLED, 0, 0};
|
(TestCaseReference){ "surface_testLoadFailure", "Tests sprite loading. A failure case.", TEST_ENABLED, 0, 0};
|
||||||
|
@ -36,13 +36,13 @@ static const TestCaseReference test8 =
|
||||||
(TestCaseReference){ "surface_testBlitBlendLoop", "Test blittin routines with blending", TEST_ENABLED, 0, 0};
|
(TestCaseReference){ "surface_testBlitBlendLoop", "Test blittin routines with blending", TEST_ENABLED, 0, 0};
|
||||||
|
|
||||||
static const TestCaseReference test9 =
|
static const TestCaseReference test9 =
|
||||||
(TestCaseReference){ "surface_testBlitBlendBlend", "Tests some more blitting routines.", TEST_ENABLED, 0, 0};
|
(TestCaseReference){ "surface_testBlitBlendBlend", "Tests blitting routines with blend blending.", TEST_ENABLED, 0, 0};
|
||||||
|
|
||||||
static const TestCaseReference test10 =
|
static const TestCaseReference test10 =
|
||||||
(TestCaseReference){ "surface_testBlitBlendAdd", "Tests some more blitting routines.", TEST_ENABLED, 0, 0};
|
(TestCaseReference){ "surface_testBlitBlendAdd", "Tests blitting routines with add blending.", TEST_ENABLED, 0, 0};
|
||||||
|
|
||||||
static const TestCaseReference test11 =
|
static const TestCaseReference test11 =
|
||||||
(TestCaseReference){ "surface_testBlitBlendMod", "Tests some more blitting routines.", TEST_ENABLED, 0, 0};
|
(TestCaseReference){ "surface_testBlitBlendMod", "Tests blitting routines with modblending.", TEST_ENABLED, 0, 0};
|
||||||
|
|
||||||
/* Test suite */
|
/* Test suite */
|
||||||
extern const TestCaseReference *testSuite[] = {
|
extern const TestCaseReference *testSuite[] = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue