Mercurial > sdl-ios-xcode
comparison test/automated/testsdl.c @ 3740:e451d5d288e9 gsoc2009_unit_tests
Merged into one big app, while keeping modular applications also.
author | Edgar Simo <bobbens@gmail.com> |
---|---|
date | Sun, 02 Aug 2009 16:01:23 +0000 |
parents | |
children | 808fad5fb593 |
comparison
equal
deleted
inserted
replaced
3739:651b261e591d | 3740:e451d5d288e9 |
---|---|
1 /* | |
2 * SDL test suite framework code. | |
3 * | |
4 * Written by Edgar Simo "bobbens" | |
5 * | |
6 * Released under Public Domain. | |
7 */ | |
8 | |
9 | |
10 #include "platform/platform.h" | |
11 #include "rwops/rwops.h" | |
12 #include "surface/surface.h" | |
13 #include "render/render.h" | |
14 | |
15 | |
16 int main( int argc, char *argv[] ) | |
17 { | |
18 (void) argc; | |
19 (void) argv; | |
20 | |
21 test_platform(); | |
22 test_rwops(); | |
23 test_surface(); | |
24 test_render(); | |
25 | |
26 return 0; | |
27 } | |
28 |