comparison test/automated/surface/surface.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 b7590cd5969d
children 808fad5fb593
comparison
equal deleted inserted replaced
3739:651b261e591d 3740:e451d5d288e9
543 543
544 544
545 /** 545 /**
546 * @brief Entry point. 546 * @brief Entry point.
547 */ 547 */
548 #ifdef TEST_STANDALONE
548 int main( int argc, const char *argv[] ) 549 int main( int argc, const char *argv[] )
549 { 550 {
550 (void) argc; 551 (void) argc;
551 (void) argv; 552 (void) argv;
553 #else /* TEST_STANDALONE */
554 int test_surface (void)
555 {
556 #endif /* TEST_STANDALONE */
552 int ret; 557 int ret;
553 SDL_Surface *testsur; 558 SDL_Surface *testsur;
554 559
555 SDL_ATinit( "SDL_Surface" ); 560 SDL_ATinit( "SDL_Surface" );
556 561