# HG changeset patch # User Markus Kauppila # Date 1310504037 -10800 # Node ID a97102f402303bbbe623033f1fbd77874495aec7 # Parent 3581346510f3b4cdc692c84946385e96c9707656 Plain logger logs the used command line options. diff -r 3581346510f3 -r a97102f40230 test/test-automation/plain_logger.c --- a/test/test-automation/plain_logger.c Tue Jul 12 16:47:50 2011 +0300 +++ b/test/test-automation/plain_logger.c Tue Jul 12 23:53:57 2011 +0300 @@ -40,16 +40,15 @@ void *data) { Output(indentLevel, "Test run started at %s", TimestampToString(eventTime)); - Output(indentLevel, ""); - /* - Output(indentLevel, "Runner: "); + Output(indentLevel, "Runner parameters: "); int counter = 0; for(counter = 0; counter < parameterCount; counter++) { char *parameter = runnerParameters[counter]; Output(indentLevel, "\t%s", parameter); } - */ + + Output(indentLevel, ""); } void diff -r 3581346510f3 -r a97102f40230 test/test-automation/testsurface/testsurface.c --- a/test/test-automation/testsurface/testsurface.c Tue Jul 12 16:47:50 2011 +0300 +++ b/test/test-automation/testsurface/testsurface.c Tue Jul 12 23:53:57 2011 +0300 @@ -18,7 +18,7 @@ (TestCaseReference){ "surface_testBlit", "Tests some blitting routines.", TEST_ENABLED, 0, 0}; 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 = (TestCaseReference){ "surface_testLoadFailure", "Tests sprite loading. A failure case.", TEST_ENABLED, 0, 0}; @@ -36,13 +36,13 @@ (TestCaseReference){ "surface_testBlitBlendLoop", "Test blittin routines with blending", TEST_ENABLED, 0, 0}; 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 = - (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 = - (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 */ extern const TestCaseReference *testSuite[] = {