SDL  2.0
SDL_test_log.h File Reference
#include "begin_code.h"
#include "close_code.h"
+ Include dependency graph for SDL_test_log.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void SDLTest_Log (SDL_PRINTF_FORMAT_STRING const char *fmt,...) SDL_PRINTF_VARARG_FUNC(1)
 Prints given message with a timestamp in the TEST category and INFO priority. More...
 
void SDLTest_LogError (SDL_PRINTF_FORMAT_STRING const char *fmt,...) SDL_PRINTF_VARARG_FUNC(1)
 Prints given message with a timestamp in the TEST category and the ERROR priority. More...
 

Detailed Description

Include file for SDL test framework.

This code is a part of the SDL2_test library, not the main SDL library.

Definition in file SDL_test_log.h.

Function Documentation

◆ SDLTest_Log()

void SDLTest_Log ( SDL_PRINTF_FORMAT_STRING const char *  fmt,
  ... 
)

Prints given message with a timestamp in the TEST category and INFO priority.

Parameters
fmtMessage to be logged

Definition at line 85 of file SDL_test_log.c.

References SDL_LOG_CATEGORY_TEST, SDL_LOG_PRIORITY_INFO, SDL_LogMessage, SDL_memset, SDL_vsnprintf, SDLTEST_MAX_LOGMESSAGE_LENGTH, and SDLTest_TimestampToString().

Referenced by audio_buildAudioCVTNegative(), audio_convertAudio(), audio_enumerateAndNameAudioDevices(), audio_lockUnlockOpenAudioDevice(), audio_openCloseAndGetAudioStatus(), audio_openCloseAudioDeviceConnected(), audio_pauseUnpauseAudio(), pixels_allocFreeFormat(), pixels_getPixelFormatName(), rwops_testFileWriteReadEndian(), SDLTest_AssertCheck(), SDLTest_AssertPass(), SDLTest_LogAssertSummary(), SDLTest_RunSuites(), SDLTest_RunTest(), stdlib_getsetenv(), syswm_getWindowWMInfo(), video_getClosestDisplayModeCurrentResolution(), and video_getClosestDisplayModeRandomResolution().

86 {
87  va_list list;
88  char logMessage[SDLTEST_MAX_LOGMESSAGE_LENGTH];
89 
90  /* Print log message into a buffer */
92  va_start(list, fmt);
93  SDL_vsnprintf(logMessage, SDLTEST_MAX_LOGMESSAGE_LENGTH - 1, fmt, list);
94  va_end(list);
95 
96  /* Log with timestamp and newline */
98 }
EGLSurface EGLnsecsANDROID time
Definition: eglext.h:518
#define SDLTEST_MAX_LOGMESSAGE_LENGTH
Definition: SDL_test.h:59
#define SDL_vsnprintf
#define SDL_LogMessage
static char * SDLTest_TimestampToString(const time_t timestamp)
Definition: SDL_test_log.c:68
#define SDL_memset

◆ SDLTest_LogError()

void SDLTest_LogError ( SDL_PRINTF_FORMAT_STRING const char *  fmt,
  ... 
)

Prints given message with a timestamp in the TEST category and the ERROR priority.

Parameters
fmtMessage to be logged

Definition at line 103 of file SDL_test_log.c.

References SDL_LOG_CATEGORY_TEST, SDL_LOG_PRIORITY_ERROR, SDL_LogMessage, SDL_memset, SDL_vsnprintf, SDLTEST_MAX_LOGMESSAGE_LENGTH, and SDLTest_TimestampToString().

Referenced by _audioSetUp(), _loadTestFace(), _timerSetUp(), audio_buildAudioCVT(), audio_convertAudio(), SDLTest_AssertCheck(), SDLTest_BailOut(), SDLTest_CompareSurfaces(), SDLTest_GenerateExecKey(), SDLTest_GenerateRunSeed(), SDLTest_LogAssertSummary(), sdltest_randomAsciiString(), sdltest_randomAsciiStringOfSize(), sdltest_randomAsciiStringWithMaximumLength(), SDLTest_RunSuites(), SDLTest_RunTest(), and SDLTest_SetTestTimeout().

104 {
105  va_list list;
106  char logMessage[SDLTEST_MAX_LOGMESSAGE_LENGTH];
107 
108  /* Print log message into a buffer */
110  va_start(list, fmt);
111  SDL_vsnprintf(logMessage, SDLTEST_MAX_LOGMESSAGE_LENGTH - 1, fmt, list);
112  va_end(list);
113 
114  /* Log with timestamp and newline */
116 }
EGLSurface EGLnsecsANDROID time
Definition: eglext.h:518
#define SDLTEST_MAX_LOGMESSAGE_LENGTH
Definition: SDL_test.h:59
#define SDL_vsnprintf
#define SDL_LogMessage
static char * SDLTest_TimestampToString(const time_t timestamp)
Definition: SDL_test_log.c:68
#define SDL_memset