SDL/src/test
Ryan C. Gordon 16cdc59bab Make SDL_SetError and friends unconditionally return -1.
This lets us change things like this...

    if (Failed) {
        SDL_SetError("We failed");
        return -1;
    }

...into this...

    if (Failed) {
        return SDL_SetError("We failed");
    }


 Fixes Bugzilla #1778.
2013-03-31 12:48:50 -04:00
..
SDL_test_assert.c Happy New Year! 2013-02-15 08:47:44 -08:00
SDL_test_common.c Removed Nintendo DS support since nobody has volunteered to maintain it for over a year. 2013-03-17 09:44:58 -07:00
SDL_test_compare.c Happy New Year! 2013-02-15 08:47:44 -08:00
SDL_test_crc32.c Happy New Year! 2013-02-15 08:47:44 -08:00
SDL_test_font.c Happy New Year! 2013-02-15 08:47:44 -08:00
SDL_test_fuzzer.c Make SDL_SetError and friends unconditionally return -1. 2013-03-31 12:48:50 -04:00
SDL_test_harness.c Happy New Year! 2013-02-15 08:47:44 -08:00
SDL_test_imageBlit.c Happy New Year! 2013-02-15 08:47:44 -08:00
SDL_test_imageBlitBlend.c Happy New Year! 2013-02-15 08:47:44 -08:00
SDL_test_imageFace.c Happy New Year! 2013-02-15 08:47:44 -08:00
SDL_test_imagePrimitives.c Happy New Year! 2013-02-15 08:47:44 -08:00
SDL_test_imagePrimitivesBlend.c Happy New Year! 2013-02-15 08:47:44 -08:00
SDL_test_log.c Happy New Year! 2013-02-15 08:47:44 -08:00
SDL_test_md5.c Happy New Year! 2013-02-15 08:47:44 -08:00
SDL_test_random.c Happy New Year! 2013-02-15 08:47:44 -08:00