Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libSDL
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PocketInsanity
libSDL
Commits
4790fd63
Commit
4790fd63
authored
Jul 12, 2011
by
Markus Kauppila
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Plain logger logs the used command line options.
parent
022eceb5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
8 deletions
+7
-8
plain_logger.c
test/test-automation/plain_logger.c
+3
-4
testsurface.c
test/test-automation/testsurface/testsurface.c
+4
-4
No files found.
test/test-automation/plain_logger.c
View file @
4790fd63
...
...
@@ -40,16 +40,15 @@ PlainRunStarted(int parameterCount, char *runnerParameters[], time_t eventTime,
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
...
...
test/test-automation/testsurface/testsurface.c
View file @
4790fd63
...
...
@@ -18,7 +18,7 @@ static const TestCaseReference test2 =
(
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 @@ static const TestCaseReference test8 =
(
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
[]
=
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment