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
48bcede0
Commit
48bcede0
authored
Jul 10, 2011
by
Markus Kauppila
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bunch of little fixes.
parent
d0e9372d
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
45 additions
and
74 deletions
+45
-74
SDL_test.c
test/test-automation/SDL_test.c
+15
-17
SDL_test.h
test/test-automation/SDL_test.h
+1
-2
common.c
test/test-automation/common/common.c
+5
-2
plain_logger.c
test/test-automation/plain_logger.c
+1
-1
runner.c
test/test-automation/runner.c
+2
-2
Makefile.am
test/test-automation/testaudio/Makefile.am
+2
-2
testaudio.c
test/test-automation/testaudio/testaudio.c
+3
-19
Makefile.am
test/test-automation/testdummy/Makefile.am
+1
-1
testdummy.c
test/test-automation/testdummy/testdummy.c
+3
-7
Makefile.am
test/test-automation/testplatform/Makefile.am
+1
-1
Makefile.am
test/test-automation/testrect/Makefile.am
+1
-1
Makefile.am
test/test-automation/testsurface/Makefile.am
+1
-1
testsurface.c
test/test-automation/testsurface/testsurface.c
+9
-18
No files found.
test/test-automation/SDL_test.c
View file @
48bcede0
...
...
@@ -18,9 +18,6 @@
3. This notice may not be removed or altered from any source distribution.
*/
#ifndef _SDL_TEST_C
#define _SDL_TEST_C
#include <stdio.h>
/* printf/fprintf */
#include <stdarg.h>
/* va_list */
#include <time.h>
...
...
@@ -60,15 +57,17 @@ _TestCaseQuit()
}
void
AssertEquals
(
Uint32
expected
,
Uint32
actual
,
char
*
message
,
...)
AssertEquals
(
const
int
expected
,
const
int
actual
,
char
*
message
,
...)
{
va_list
args
;
char
buf
[
256
];
if
(
expected
!=
actual
)
{
va_start
(
args
,
message
);
SDL_vsnprintf
(
buf
,
sizeof
(
buf
),
message
,
args
);
va_end
(
args
);
va_start
(
args
,
message
);
memset
(
buf
,
0
,
sizeof
(
buf
));
SDL_vsnprintf
(
buf
,
sizeof
(
buf
),
message
,
args
);
va_end
(
args
);
if
(
expected
!=
expected
)
{
AssertWithValues
(
"AssertEquals"
,
0
,
buf
,
actual
,
expected
,
time
(
0
));
_testReturnValue
=
1
;
...
...
@@ -77,6 +76,7 @@ AssertEquals(Uint32 expected, Uint32 actual, char* message, ...)
AssertWithValues
(
"AssertEquals"
,
1
,
buf
,
actual
,
expected
,
time
(
0
));
_testReturnValue
=
0
;
_testAssertsPassed
++
;
}
}
...
...
@@ -86,22 +86,19 @@ AssertTrue(int condition, char *message, ...)
{
va_list
args
;
char
buf
[
256
];
va_start
(
args
,
message
);
SDL_vsnprintf
(
buf
,
sizeof
(
buf
),
message
,
args
);
va_end
(
args
);
if
(
!
condition
)
{
va_start
(
args
,
message
);
SDL_vsnprintf
(
buf
,
sizeof
(
buf
),
message
,
args
);
va_end
(
args
);
Assert
(
"AssertTrue"
,
0
,
buf
,
time
(
0
));
_testReturnValue
=
1
;
_testAssertsFailed
++
;
}
else
{
va_start
(
args
,
message
);
SDL_vsnprintf
(
buf
,
sizeof
(
buf
),
message
,
args
);
va_end
(
args
);
Assert
(
"AssertTrue"
,
1
,
buf
,
time
(
0
));
_testReturnValue
=
0
;
_testAssertsPassed
++
;
}
}
...
...
@@ -118,6 +115,7 @@ AssertPass(char *message, ...)
Assert
(
"AssertPass"
,
1
,
buf
,
time
(
0
));
_testReturnValue
=
0
;
_testAssertsPassed
++
;
}
...
...
@@ -133,7 +131,7 @@ AssertFail(char *message, ...)
Assert
(
"AssertFail"
,
0
,
buf
,
time
(
0
));
_testReturnValue
=
1
;
_testAssertsFailed
++
;
}
#endif
test/test-automation/SDL_test.h
View file @
48bcede0
...
...
@@ -73,8 +73,7 @@ int _TestCaseQuit();
* \param actual The actual value of tested variable
* \param message Message that will be printed if assert fails
*/
void
AssertEquals
(
Uint32
expected
,
Uint32
actual
,
char
*
message
,
...);
void
AssertEquals
(
const
int
expected
,
const
int
actual
,
char
*
message
,
...);
/*!
* Assert function. Tests if the given condition is true. True in
* this case means non-zero value. If the condition is true, the
...
...
test/test-automation/common/common.c
View file @
48bcede0
...
...
@@ -7,11 +7,14 @@
*/
#include "common.h"
/**
* @brief Compares a surface and a surface image for equality.
* @brief Compares a surface and a surface image for equality
*
* @param sur Surface used in comparison
* @param img Surface image used in comparison
* @param allowable_error Allowable difference in blending accuracy
*/
int
surface_compare
(
SDL_Surface
*
sur
,
const
SurfaceImage_t
*
img
,
int
allowable_error
)
{
...
...
test/test-automation/plain_logger.c
View file @
48bcede0
...
...
@@ -126,7 +126,7 @@ PlainAssertSummary(int numAsserts, int numAssertsFailed, int numAssertsPass, tim
void
PlainLog
(
const
char
*
logMessage
,
time_t
eventTime
)
{
Output
(
indentLevel
,
"%s %d"
,
logMessage
,
eventTime
);
Output
(
indentLevel
,
"%s %d"
,
logMessage
,
TimestampToString
(
eventTime
)
);
}
#endif
test/test-automation/runner.c
View file @
48bcede0
...
...
@@ -516,8 +516,8 @@ HandleChildProcessReturnValue(int stat_lock)
returnValue
=
WEXITSTATUS
(
stat_lock
);
}
else
if
(
WIFSIGNALED
(
stat_lock
))
{
int
signal
=
WTERMSIG
(
stat_lock
);
// \todo add this to logger
//fprintf(stderr, "FAILURE: test was aborted due to signal no %d\n", signal
);
// \todo add this to logger
(add signal number)
Log
(
"FAILURE: test was aborted due to signal
\n
"
,
time
(
0
)
);
returnValue
=
1
;
}
...
...
test/test-automation/testaudio/Makefile.am
View file @
48bcede0
lib_LTLIBRARIES
=
libtestaudio.la
libtestaudio_la_SOURCES
=
testaudio.c ../SDL_test.c ../logger
.c ../logger
_helpers.c ../plain_logger.c ../xml_logger.c ../xml.c
libtestaudio_la_SOURCES
=
testaudio.c ../SDL_test.c ../logger_helpers.c ../plain_logger.c ../xml_logger.c ../xml.c
libtestaudio_la_CLAGS
=
-fPIC
-g
libtestaudio_la_LDFLAGS
=
`
sdl-config
--libs
`
\ No newline at end of file
libtestaudio_la_LDFLAGS
=
`
sdl-config
--libs
`
test/test-automation/testaudio/testaudio.c
View file @
48bcede0
/*
Copyright (C) 2011 Markus Kauppila <markus.kauppila@gmail.com>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
/**
* Original code: automated SDL rect test written by Edgar Simo "bobbens"
*/
#include <stdio.h>
...
...
test/test-automation/testdummy/Makefile.am
View file @
48bcede0
lib_LTLIBRARIES
=
libtestdummy.la
libtestdummy_la_SOURCES
=
testdummy.c ../SDL_test.c ../logger
.c ../logger
_helpers.c ../plain_logger.c ../xml_logger.c ../xml.c
libtestdummy_la_SOURCES
=
testdummy.c ../SDL_test.c ../logger_helpers.c ../plain_logger.c ../xml_logger.c ../xml.c
libtestdummy_la_CLAGS
=
-fPIC
-g
libtestdummy_la_LDFLAGS
=
`
sdl-config
--libs
`
test/test-automation/testdummy/testdummy.c
View file @
48bcede0
...
...
@@ -24,9 +24,6 @@
* various asserts and (possible) other utilities.
*/
#ifndef _TEST_C
#define _TEST_C
#include <stdio.h>
#include <SDL/SDL.h>
...
...
@@ -59,7 +56,7 @@ TestCaseReference **QueryTestSuite() {
void
dummycase1
(
void
*
arg
)
{
AssertEquals
(
3
,
5
,
"fails
"
);
AssertEquals
(
5
,
5
,
"Assert message
"
);
}
void
...
...
@@ -67,13 +64,12 @@ dummycase2(void *arg)
{
char
*
msg
=
"eello"
;
//msg[0] = 'H';
AssertTrue
(
0
,
"fails
"
);
AssertTrue
(
1
,
"Assert message
"
);
}
void
dummycase3
(
void
*
arg
)
{
AssertTrue
(
1
,
"
passes
"
);
AssertTrue
(
1
,
"
Assert message
"
);
}
#endif
test/test-automation/testplatform/Makefile.am
View file @
48bcede0
lib_LTLIBRARIES
=
libtestplatform.la
libtestplatform_la_SOURCES
=
testplatform.c ../SDL_test.c ../logger
.c ../logger
_helpers.c ../plain_logger.c ../xml_logger.c ../xml.c
libtestplatform_la_SOURCES
=
testplatform.c ../SDL_test.c ../logger_helpers.c ../plain_logger.c ../xml_logger.c ../xml.c
libtestplatform_la_CLAGS
=
-fPIC
-g
libtestplatform_la_LDFLAGS
=
`
sdl-config
--libs
`
test/test-automation/testrect/Makefile.am
View file @
48bcede0
lib_LTLIBRARIES
=
libtestrect.la
libtestrect_la_SOURCES
=
testrect.c ../SDL_test.c ../logger
.c ../logger
_helpers.c ../plain_logger.c ../xml_logger.c ../xml.c
libtestrect_la_SOURCES
=
testrect.c ../SDL_test.c ../logger_helpers.c ../plain_logger.c ../xml_logger.c ../xml.c
libtestrect_la_CLAGS
=
-fPIC
-g
libtestrect_la_LDFLAGS
=
`
sdl-config
--libs
`
test/test-automation/testsurface/Makefile.am
View file @
48bcede0
lib_LTLIBRARIES
=
libtestsurface.la
libtestsurface_la_SOURCES
=
testsurface.c ../SDL_test.c ../logger
.c ../logger_helpers.c ../plain_logger.c ../xml_logger.c ../xml.c
\
libtestsurface_la_SOURCES
=
testsurface.c ../SDL_test.c ../logger
_helpers.c ../plain_logger.c ../xml_logger.c ../xml.c
\
../common/common.c ../common/img_blit.c ../common/img_blitblend.c ../common/img_face.c ../common/img_primitives.c ../common/img_primitivesblend.c
libtestsurface_la_CLAGS
=
-fPIC
-g
libtestsurface_la_LDFLAGS
=
`
sdl-config
--libs
`
test/test-automation/testsurface/testsurface.c
View file @
48bcede0
...
...
@@ -2,8 +2,6 @@
* Original code: automated SDL surface test written by Edgar Simo "bobbens"
*/
#ifndef _TEST_C
#define _TEST_C
#include <stdio.h>
#include <SDL/SDL.h>
...
...
@@ -53,6 +51,9 @@ CreateTestSurface() {
return
testsur
;
}
/**
* @brief Tests a blend mode.
*/
int
testBlitBlendMode
(
SDL_Surface
*
testsur
,
SDL_Surface
*
face
,
int
mode
)
{
int
ret
;
...
...
@@ -63,7 +64,7 @@ int testBlitBlendMode(SDL_Surface *testsur, SDL_Surface *face, int mode)
ret
=
SDL_FillRect
(
testsur
,
NULL
,
SDL_MapRGB
(
testsur
->
format
,
0
,
0
,
0
)
);
if
(
ret
==
0
)
return
1
;
return
1
;
/* Steps to take. */
ni
=
testsur
->
w
-
face
->
w
;
...
...
@@ -90,7 +91,7 @@ int testBlitBlendMode(SDL_Surface *testsur, SDL_Surface *face, int mode)
}
}
return
0
;
return
0
;
}
/* Test case functions */
...
...
@@ -265,13 +266,6 @@ void surface_testBlit(void *arg)
SDL_Quit
();
}
/**
* @brief Tests a blend mode.
*/
/**
* @brief Tests some more blitting routines.
*/
...
...
@@ -327,26 +321,25 @@ void surface_testBlitBlend(void *arg)
if
(
testBlitBlendMode
(
testsur
,
face
,
SDL_BLENDMODE_NONE
))
return
;
AssertTrue
(
surface_compare
(
testsur
,
&
img_blendNone
,
0
)
==
0
,
"Blitting blending output not the same (using SDL_BLENDMODE_NONE)."
);
"Blitting blending output not the same (using SDL_BLENDMODE_NONE)."
);
/* Test Blend. */
if
(
testBlitBlendMode
(
testsur
,
face
,
SDL_BLENDMODE_BLEND
))
return
;
AssertTrue
(
surface_compare
(
testsur
,
&
img_blendBlend
,
0
)
==
0
,
"Blitting blending output not the same (using SDL_BLENDMODE_BLEND)."
);
"Blitting blending output not the same (using SDL_BLENDMODE_BLEND)."
);
/* Test Add. */
if
(
testBlitBlendMode
(
testsur
,
face
,
SDL_BLENDMODE_ADD
))
return
;
AssertTrue
(
surface_compare
(
testsur
,
&
img_blendAdd
,
0
)
==
0
,
"Blitting blending output not the same (using SDL_BLENDMODE_ADD)."
);
"Blitting blending output not the same (using SDL_BLENDMODE_ADD)."
);
/* Test Mod. */
if
(
testBlitBlendMode
(
testsur
,
face
,
SDL_BLENDMODE_MOD
))
return
;
AssertTrue
(
surface_compare
(
testsur
,
&
img_blendMod
,
0
)
==
0
,
"Blitting blending output not the same (using SDL_BLENDMODE_MOD)."
);
"Blitting blending output not the same (using SDL_BLENDMODE_MOD)."
);
/* Clear surface. */
ret
=
SDL_FillRect
(
testsur
,
NULL
,
...
...
@@ -394,5 +387,3 @@ void surface_testBlitBlend(void *arg)
SDL_Quit
();
}
#endif
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