2015-06-21 09:33:46 -06:00
|
|
|
/*
|
|
|
|
Simple DirectMedia Layer
|
2016-01-02 11:10:34 -07:00
|
|
|
Copyright (C) 1997-2016 Sam Lantinga <slouken@libsdl.org>
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
Used by the test framework and test cases.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* quiet windows compiler warnings */
|
2016-11-15 02:30:08 -07:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
# define _CRT_SECURE_NO_WARNINGS
|
|
|
|
#endif
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
#include "SDL_config.h"
|
|
|
|
|
|
|
|
#include <stdarg.h> /* va_list */
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
#include "SDL.h"
|
|
|
|
|
|
|
|
#include "SDL_test.h"
|
|
|
|
|
2016-11-23 09:49:26 -07:00
|
|
|
/* work around compiler warning on older GCCs. */
|
|
|
|
#if (defined(__GNUC__) && (__GNUC__ <= 2))
|
|
|
|
static size_t
|
|
|
|
strftime_gcc2_workaround(char *s, size_t max, const char *fmt, const struct tm *tm)
|
|
|
|
{
|
|
|
|
return strftime(s, max, fmt, tm);
|
|
|
|
}
|
|
|
|
#ifdef strftime
|
|
|
|
#undef strftime
|
|
|
|
#endif
|
|
|
|
#define strftime strftime_gcc2_workaround
|
|
|
|
#endif
|
|
|
|
|
2015-06-21 09:33:46 -06:00
|
|
|
/* !
|
|
|
|
* Converts unix timestamp to its ascii representation in localtime
|
|
|
|
*
|
|
|
|
* Note: Uses a static buffer internally, so the return value
|
|
|
|
* isn't valid after the next call of this function. If you
|
|
|
|
* want to retain the return value, make a copy of it.
|
|
|
|
*
|
|
|
|
* \param timestamp A Timestamp, i.e. time(0)
|
|
|
|
*
|
|
|
|
* \return Ascii representation of the timestamp in localtime in the format '08/23/01 14:55:02'
|
|
|
|
*/
|
2016-11-13 23:57:41 -07:00
|
|
|
static char *SDLTest_TimestampToString(const time_t timestamp)
|
2015-06-21 09:33:46 -06:00
|
|
|
{
|
|
|
|
time_t copy;
|
|
|
|
static char buffer[64];
|
|
|
|
struct tm *local;
|
|
|
|
|
|
|
|
SDL_memset(buffer, 0, sizeof(buffer));
|
|
|
|
copy = timestamp;
|
|
|
|
local = localtime(©);
|
2016-10-01 11:38:15 -06:00
|
|
|
strftime(buffer, sizeof(buffer), "%x %X", local);
|
2015-06-21 09:33:46 -06:00
|
|
|
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Prints given message with a timestamp in the TEST category and INFO priority.
|
|
|
|
*/
|
|
|
|
void SDLTest_Log(SDL_PRINTF_FORMAT_STRING const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list list;
|
|
|
|
char logMessage[SDLTEST_MAX_LOGMESSAGE_LENGTH];
|
|
|
|
|
|
|
|
/* Print log message into a buffer */
|
|
|
|
SDL_memset(logMessage, 0, SDLTEST_MAX_LOGMESSAGE_LENGTH);
|
|
|
|
va_start(list, fmt);
|
|
|
|
SDL_vsnprintf(logMessage, SDLTEST_MAX_LOGMESSAGE_LENGTH - 1, fmt, list);
|
|
|
|
va_end(list);
|
|
|
|
|
|
|
|
/* Log with timestamp and newline */
|
|
|
|
SDL_LogMessage(SDL_LOG_CATEGORY_TEST, SDL_LOG_PRIORITY_INFO, " %s: %s", SDLTest_TimestampToString(time(0)), logMessage);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Prints given message with a timestamp in the TEST category and the ERROR priority.
|
|
|
|
*/
|
|
|
|
void SDLTest_LogError(SDL_PRINTF_FORMAT_STRING const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list list;
|
|
|
|
char logMessage[SDLTEST_MAX_LOGMESSAGE_LENGTH];
|
|
|
|
|
|
|
|
/* Print log message into a buffer */
|
|
|
|
SDL_memset(logMessage, 0, SDLTEST_MAX_LOGMESSAGE_LENGTH);
|
|
|
|
va_start(list, fmt);
|
|
|
|
SDL_vsnprintf(logMessage, SDLTEST_MAX_LOGMESSAGE_LENGTH - 1, fmt, list);
|
|
|
|
va_end(list);
|
|
|
|
|
|
|
|
/* Log with timestamp and newline */
|
|
|
|
SDL_LogMessage(SDL_LOG_CATEGORY_TEST, SDL_LOG_PRIORITY_ERROR, "%s: %s", SDLTest_TimestampToString(time(0)), logMessage);
|
|
|
|
}
|