Template
1584 lines
51 KiB
C
1584 lines
51 KiB
C
/* Copyright (c) 2013-2016 Evan Nemerson <[email protected]>
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person
|
|
* obtaining a copy of this software and associated documentation
|
|
* files (the "Software"), to deal in the Software without
|
|
* restriction, including without limitation the rights to use, copy,
|
|
* modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
* of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be
|
|
* included in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
|
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
/*** Configuration ***/
|
|
|
|
/* This is just where the output from the test goes. It's really just
|
|
* meant to let you choose stdout or stderr, but if anyone really want
|
|
* to direct it to a file let me know, it would be fairly easy to
|
|
* support. */
|
|
#if !defined(MUNIT_OUTPUT_FILE)
|
|
# define MUNIT_OUTPUT_FILE stdout
|
|
#endif
|
|
|
|
/* This is a bit more useful; it tells µnit how to format the seconds in
|
|
* timed tests. If your tests run for longer you might want to reduce
|
|
* it, and if your computer is really fast and your tests are tiny you
|
|
* can increase it. */
|
|
#if !defined(MUNIT_TEST_TIME_FORMAT)
|
|
# define MUNIT_TEST_TIME_FORMAT "0.8f"
|
|
#endif
|
|
|
|
/* If you have long test names you might want to consider bumping
|
|
* this. The result information takes 43 characters. */
|
|
#if !defined(MUNIT_TEST_NAME_LEN)
|
|
# define MUNIT_TEST_NAME_LEN 37
|
|
#endif
|
|
|
|
/* If you don't like the timing information, you can disable it by
|
|
* defining MUNIT_DISABLE_TIMING. */
|
|
#if !defined(MUNIT_DISABLE_TIMING)
|
|
# define MUNIT_ENABLE_TIMING
|
|
#endif
|
|
|
|
/*** End configuration ***/
|
|
|
|
#if defined(_POSIX_C_SOURCE) && (_POSIX_C_SOURCE < 200809L)
|
|
# undef _POSIX_C_SOURCE
|
|
#endif
|
|
#if !defined(_POSIX_C_SOURCE)
|
|
# define _POSIX_C_SOURCE 200809L
|
|
#endif
|
|
|
|
/* Because, according to Microsoft, POSIX is deprecated. You've got
|
|
* to appreciate the chutzpah. */
|
|
#if defined(_MSC_VER) && !defined(_CRT_NONSTDC_NO_DEPRECATE)
|
|
# define _CRT_NONSTDC_NO_DEPRECATE
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <limits.h>
|
|
#include <time.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <setjmp.h>
|
|
|
|
#if !defined(MUNIT_NO_NL_LANGINFO) && !defined(_WIN32)
|
|
#define MUNIT_NL_LANGINFO
|
|
#include <locale.h>
|
|
#include <langinfo.h>
|
|
#include <strings.h>
|
|
#endif
|
|
|
|
#if !defined(_WIN32)
|
|
# include <unistd.h>
|
|
# include <sys/types.h>
|
|
# include <sys/wait.h>
|
|
#else
|
|
# include <windows.h>
|
|
# include <io.h>
|
|
# include <fcntl.h>
|
|
# if !defined(STDERR_FILENO)
|
|
# define STDERR_FILENO _fileno(stderr)
|
|
# endif
|
|
#endif
|
|
|
|
#include "munit.h"
|
|
|
|
#define MUNIT_STRINGIFY(x) #x
|
|
#define MUNIT_XSTRINGIFY(x) MUNIT_STRINGIFY(x)
|
|
|
|
#if (defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201102L)) || defined(_Thread_local)
|
|
# define MUNIT_THREAD_LOCAL _Thread_local
|
|
#elif defined(__GNUC__) || defined(__INTEL_COMPILER) || defined(__SUNPRO_CC) || defined(__IBMCPP__)
|
|
# define MUNIT_THREAD_LOCAL __thread
|
|
#elif defined(_WIN32)
|
|
# define MUNIT_THREAD_LOCAL __declspec(thread)
|
|
#endif
|
|
|
|
/* MSVC 12.0 will emit a warning at /W4 for code like 'do { ... }
|
|
* while (0)', or 'do { ... } while (true)'. I'm pretty sure nobody
|
|
* at Microsoft compiles with /W4. */
|
|
#if defined(_MSC_VER) && (_MSC_VER <= 1800)
|
|
#pragma warning(disable: 4127)
|
|
#endif
|
|
|
|
/*** Logging ***/
|
|
|
|
static MunitLogLevel munit_log_level_visible = MUNIT_LOG_INFO;
|
|
static MunitLogLevel munit_log_level_fatal = MUNIT_LOG_ERROR;
|
|
|
|
#if defined(MUNIT_THREAD_LOCAL)
|
|
static MUNIT_THREAD_LOCAL bool munit_error_jmp_buf_valid = false;
|
|
static MUNIT_THREAD_LOCAL jmp_buf munit_error_jmp_buf;
|
|
#endif
|
|
|
|
/* At certain warning levels, mingw will trigger warnings about
|
|
* suggesting the format attribute, which we've explicity *not* set
|
|
* because it will then choke on our attempts to use the MS-specific
|
|
* I64 modifier for size_t (which we have to use since MSVC doesn't
|
|
* support the C99 z modifier). */
|
|
|
|
#if defined(__MINGW32__) || defined(__MINGW64__)
|
|
# pragma GCC diagnostic push
|
|
# pragma GCC diagnostic ignored "-Wsuggest-attribute=format"
|
|
#endif
|
|
|
|
MUNIT_PRINTF(5,0)
|
|
static void
|
|
munit_logf_exv(MunitLogLevel level, FILE* fp, const char* filename, int line, const char* format, va_list ap) {
|
|
if (level < munit_log_level_visible)
|
|
return;
|
|
|
|
switch (level) {
|
|
case MUNIT_LOG_DEBUG:
|
|
fputs("Debug", fp);
|
|
break;
|
|
case MUNIT_LOG_INFO:
|
|
fputs("Info", fp);
|
|
break;
|
|
case MUNIT_LOG_WARNING:
|
|
fputs("Warning", fp);
|
|
break;
|
|
case MUNIT_LOG_ERROR:
|
|
fputs("Error", fp);
|
|
break;
|
|
default:
|
|
munit_logf_ex(MUNIT_LOG_ERROR, filename, line, "Invalid log level (%d)", level);
|
|
return;
|
|
}
|
|
|
|
fputs(": ", fp);
|
|
if (filename != NULL)
|
|
fprintf(fp, "%s:%d: ", filename, line);
|
|
vfprintf(fp, format, ap);
|
|
fputc('\n', fp);
|
|
}
|
|
|
|
MUNIT_PRINTF(3,4)
|
|
static void
|
|
munit_logf_internal(MunitLogLevel level, FILE* fp, const char* format, ...) {
|
|
va_list ap;
|
|
|
|
va_start(ap, format);
|
|
munit_logf_exv(level, fp, NULL, 0, format, ap);
|
|
va_end(ap);
|
|
}
|
|
|
|
static void
|
|
munit_log_internal(MunitLogLevel level, FILE* fp, const char* message) {
|
|
munit_logf_internal(level, fp, "%s", message);
|
|
}
|
|
|
|
void
|
|
munit_logf_ex(MunitLogLevel level, const char* filename, int line, const char* format, ...) {
|
|
va_list ap;
|
|
|
|
va_start(ap, format);
|
|
munit_logf_exv(level, stderr, filename, line, format, ap);
|
|
va_end(ap);
|
|
|
|
if (level >= munit_log_level_fatal) {
|
|
#if defined(MUNIT_THREAD_LOCAL)
|
|
if (munit_error_jmp_buf_valid)
|
|
longjmp(munit_error_jmp_buf, 1);
|
|
#endif
|
|
abort();
|
|
}
|
|
}
|
|
|
|
#if defined(__MINGW32__) || defined(__MINGW64__)
|
|
#pragma GCC diagnostic pop
|
|
#endif
|
|
|
|
#if !defined(MUNIT_STRERROR_LEN)
|
|
# define MUNIT_STRERROR_LEN 80
|
|
#endif
|
|
|
|
static void
|
|
munit_log_errno(MunitLogLevel level, FILE* fp, const char* msg) {
|
|
#if defined(MUNIT_NO_STRERROR_R) || (defined(__MINGW32__) && !defined(MINGW_HAS_SECURE_API))
|
|
munit_logf_internal(level, fp, "%s: %s (%d)", msg, strerror(errno), errno);
|
|
#else
|
|
char munit_error_str[MUNIT_STRERROR_LEN];
|
|
munit_error_str[0] = '\0';
|
|
|
|
#if !defined(_WIN32)
|
|
strerror_r(errno, munit_error_str, MUNIT_STRERROR_LEN);
|
|
#else
|
|
strerror_s(munit_error_str, MUNIT_STRERROR_LEN, errno);
|
|
#endif
|
|
|
|
munit_logf_internal(level, fp, "%s: %s (%d)", msg, munit_error_str, errno);
|
|
#endif
|
|
}
|
|
|
|
/*** Memory allocation ***/
|
|
|
|
void*
|
|
munit_malloc_ex(const char* filename, int line, size_t size) {
|
|
if (size == 0)
|
|
return NULL;
|
|
|
|
void* ptr = calloc(1, size);
|
|
if (MUNIT_UNLIKELY(ptr == NULL)) {
|
|
munit_logf_ex(MUNIT_LOG_ERROR, filename, line, "Failed to allocate %" MUNIT_SIZE_MODIFIER "u bytes.", size);
|
|
}
|
|
|
|
return ptr;
|
|
}
|
|
|
|
/*** PRNG stuff ***/
|
|
|
|
/* This is (unless I screwed up, which is entirely possible) the
|
|
* version of PCG with 32-bit state. It was chosen because it has a
|
|
* small enough state that we should reliably be able to use CAS
|
|
* instead of requiring a lock for thread-safety.
|
|
*
|
|
* If I did screw up, I probably will not bother changing it unless
|
|
* there is a significant bias. It's really not important this be
|
|
* particularly strong, as long as it is fairly random it's much more
|
|
* important that it be reproducible, so bug reports have a better
|
|
* chance of being reproducible. */
|
|
|
|
#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L) && !defined(__STDC_NO_ATOMICS__)
|
|
# define HAVE_STDATOMIC
|
|
#elif defined(__clang__)
|
|
# if __has_extension(c_atomic)
|
|
# define HAVE_CLANG_ATOMICS
|
|
# endif
|
|
#endif
|
|
|
|
#if defined(HAVE_STDATOMIC)
|
|
# include <stdatomic.h>
|
|
# define ATOMIC_UINT32_T _Atomic uint32_t
|
|
# define ATOMIC_UINT32_INIT(x) (x)
|
|
#elif defined(HAVE_CLANG_ATOMICS)
|
|
# define ATOMIC_UINT32_T _Atomic uint32_t
|
|
# define ATOMIC_UINT32_INIT(x) (x)
|
|
#elif defined(_WIN32)
|
|
# define ATOMIC_UINT32_T volatile LONG
|
|
# define ATOMIC_UINT32_INIT(x) (x)
|
|
#else
|
|
# define ATOMIC_UINT32_T volatile uint32_t
|
|
# define ATOMIC_UINT32_INIT(x) (x)
|
|
#endif
|
|
|
|
static ATOMIC_UINT32_T munit_rand_state = ATOMIC_UINT32_INIT(42);
|
|
|
|
#if defined(HAVE_STDATOMIC)
|
|
# define munit_atomic_store(dest, value) atomic_store(dest, value)
|
|
# define munit_atomic_load(src) atomic_load(src)
|
|
# define munit_atomic_cas(dest, expected, value) atomic_compare_exchange_weak(dest, expected, value)
|
|
#elif defined(HAVE_CLANG_ATOMICS)
|
|
# define munit_atomic_store(dest, value) __c11_atomic_store(dest, value, __ATOMIC_SEQ_CST)
|
|
# define munit_atomic_load(src) __c11_atomic_load(src, __ATOMIC_SEQ_CST)
|
|
# define munit_atomic_cas(dest, expected, value) __c11_atomic_compare_exchange_weak(dest, expected, value, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST)
|
|
#elif defined(__GNUC__) && (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 7)
|
|
# define munit_atomic_store(dest, value) __atomic_store_n(dest, value, __ATOMIC_SEQ_CST)
|
|
# define munit_atomic_load(src) __atomic_load_n(src, __ATOMIC_SEQ_CST)
|
|
# define munit_atomic_cas(dest, expected, value) __atomic_compare_exchange_n(dest, expected, value, true, __ATOMIC_SEQ_CST, __ATOMIC_SEQ_CST)
|
|
#elif defined(__GNUC__) && (__GNUC__ >= 4)
|
|
# define munit_atomic_store(dest,value) do { *(dest) = (value); } while (0)
|
|
# define munit_atomic_load(src) (*(src))
|
|
# define munit_atomic_cas(dest, expected, value) __sync_bool_compare_and_swap(dest, *expected, value)
|
|
#elif defined(_WIN32) /* Untested */
|
|
# define munit_atomic_store(dest,value) do { *(dest) = (value); } while (0)
|
|
# define munit_atomic_load(src) (*(src))
|
|
# define munit_atomic_cas(dest, expected, value) InterlockedCompareExchange((dest), (value), *(expected))
|
|
#else
|
|
# warning No atomic implementation, PRNG will not be thread-safe
|
|
# define munit_atomic_store(dest, value) do { *(dest) = (value); } while (0)
|
|
# define munit_atomic_load(src) (*(src))
|
|
static inline _Bool
|
|
munit_atomic_cas(ATOMIC_UINT32_T* dest, ATOMIC_UINT32_T* expected, ATOMIC_UINT32_T desired) {
|
|
if (*dest == *expected) {
|
|
*dest = desired;
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
#define MUNIT_PRNG_MULTIPLIER UINT32_C(747796405)
|
|
#define MUNIT_PRNG_INCREMENT UINT32_C(1729)
|
|
|
|
static uint32_t
|
|
munit_rand_next_state(uint32_t state) {
|
|
return state * MUNIT_PRNG_MULTIPLIER + MUNIT_PRNG_INCREMENT;
|
|
}
|
|
|
|
static uint32_t
|
|
munit_rand_from_state(uint32_t state) {
|
|
uint32_t res = ((state >> ((state >> 28) + 4)) ^ state) * UINT32_C(277803737);
|
|
res ^= res >> 22;
|
|
return res;
|
|
}
|
|
|
|
void
|
|
munit_rand_seed(uint32_t seed) {
|
|
uint32_t state = munit_rand_next_state(seed + MUNIT_PRNG_INCREMENT);
|
|
munit_atomic_store(&munit_rand_state, state);
|
|
}
|
|
|
|
static uint32_t
|
|
munit_rand_generate_seed(void) {
|
|
uint32_t state = munit_rand_next_state((uint32_t) time(NULL) + MUNIT_PRNG_INCREMENT);
|
|
return munit_rand_from_state(state);
|
|
}
|
|
|
|
static uint32_t
|
|
munit_rand_state_uint32(uint32_t* state) {
|
|
const uint32_t old = *state;
|
|
*state = munit_rand_next_state(old);
|
|
return munit_rand_from_state(old);
|
|
}
|
|
|
|
uint32_t
|
|
munit_rand_uint32(void) {
|
|
uint32_t old, state;
|
|
|
|
do {
|
|
old = munit_atomic_load(&munit_rand_state);
|
|
state = munit_rand_next_state(old);
|
|
} while (!munit_atomic_cas(&munit_rand_state, &old, state));
|
|
|
|
return munit_rand_from_state(old);
|
|
}
|
|
|
|
static void
|
|
munit_rand_state_memory(uint32_t* state, size_t size, uint8_t data[MUNIT_ARRAY_PARAM(size)]) {
|
|
size_t members_remaining = size / sizeof(uint32_t);
|
|
size_t bytes_remaining = size % sizeof(uint32_t);
|
|
uint8_t* b = data;
|
|
uint32_t rv;
|
|
while (members_remaining-- > 0) {
|
|
rv = munit_rand_state_uint32(state);
|
|
memcpy(b, &rv, sizeof(uint32_t));
|
|
b += sizeof(uint32_t);
|
|
}
|
|
if (bytes_remaining != 0) {
|
|
rv = munit_rand_state_uint32(state);
|
|
memcpy(b, &rv, bytes_remaining);
|
|
}
|
|
}
|
|
|
|
void
|
|
munit_rand_memory(size_t size, uint8_t data[MUNIT_ARRAY_PARAM(size)]) {
|
|
uint32_t old, state;
|
|
|
|
do {
|
|
state = old = munit_atomic_load(&munit_rand_state);
|
|
munit_rand_state_memory(&state, size, data);
|
|
} while (!munit_atomic_cas(&munit_rand_state, &old, state));
|
|
}
|
|
|
|
static int32_t
|
|
munit_rand_state_at_most(uint32_t* state, uint32_t salt, int32_t max) {
|
|
/* https://stackoverflow.com/questions/2509679/how-to-generate-a-random-number-from-within-a-range#6852396 */
|
|
munit_assert_int32(max, >, 0);
|
|
const uint64_t
|
|
num_bins = ((uint64_t) max) + 1,
|
|
num_rand = ((uint64_t) INT32_MAX) + 1,
|
|
bin_size = num_rand / num_bins,
|
|
defect = num_rand % num_bins;
|
|
|
|
int64_t x;
|
|
do {
|
|
x = (int64_t) (munit_rand_state_uint32(state) ^ salt);
|
|
} while (num_rand - defect <= (uint64_t) x);
|
|
|
|
return (int32_t) (x / bin_size);
|
|
}
|
|
|
|
static int32_t
|
|
munit_rand_at_most(uint32_t salt, int32_t max) {
|
|
uint32_t old, state;
|
|
int32_t retval;
|
|
|
|
do {
|
|
state = old = munit_atomic_load(&munit_rand_state);
|
|
retval = munit_rand_state_at_most(&state, salt, max);
|
|
} while (!munit_atomic_cas(&munit_rand_state, &old, state));
|
|
|
|
return retval;
|
|
}
|
|
|
|
int
|
|
munit_rand_int_range(int min, int max) {
|
|
if (min > max)
|
|
return munit_rand_int_range(max, min);
|
|
|
|
uint64_t range = (((int64_t) max) - ((int64_t) min));
|
|
if (range > INT32_MAX)
|
|
range = INT32_MAX;
|
|
|
|
return min + munit_rand_at_most(0, (int32_t) range);
|
|
}
|
|
|
|
double
|
|
munit_rand_double(void) {
|
|
uint32_t old, state;
|
|
double retval = 0.0;
|
|
|
|
do {
|
|
state = old = munit_atomic_load(&munit_rand_state);
|
|
|
|
/* See http://mumble.net/~campbell/tmp/random_real.c for how to do
|
|
* this right. Patches welcome if you feel that this is too
|
|
* biased. */
|
|
do {
|
|
retval = munit_rand_state_uint32(&state) / ((double) UINT32_MAX);
|
|
} while (MUNIT_UNLIKELY(MUNIT_UNLIKELY(retval >= 1.0) || MUNIT_UNLIKELY(retval <= 0.0)));
|
|
} while (!munit_atomic_cas(&munit_rand_state, &old, state));
|
|
|
|
return retval;
|
|
}
|
|
|
|
/*** Timer code ***/
|
|
|
|
#if defined(MUNIT_ENABLE_TIMING)
|
|
|
|
/* This section is definitely a bit messy, patches to clean it up
|
|
* gratefully accepted. */
|
|
|
|
#define MUNIT_CPU_TIME_METHOD_CLOCK_GETTIME 0
|
|
#define MUNIT_CPU_TIME_METHOD_CLOCK 1
|
|
#define MUNIT_CPU_TIME_METHOD_GETPROCESSTIMES 2
|
|
#define MUNIT_CPU_TIME_METHOD_GETRUSAGE 3
|
|
|
|
#define MUNIT_WALL_TIME_METHOD_CLOCK_GETTIME 8
|
|
#define MUNIT_WALL_TIME_METHOD_GETTIMEOFDAY 9
|
|
#define MUNIT_WALL_TIME_METHOD_QUERYPERFORMANCECOUNTER 10
|
|
#define MUNIT_WALL_TIME_METHOD_MACH_ABSOLUTE_TIME 11
|
|
|
|
#if defined(_POSIX_TIMERS) && (_POSIX_TIMERS > 0)
|
|
# define MUNIT_CPU_TIME_METHOD MUNIT_CPU_TIME_METHOD_CLOCK_GETTIME
|
|
# define MUNIT_WALL_TIME_METHOD MUNIT_WALL_TIME_METHOD_CLOCK_GETTIME
|
|
#elif defined(_WIN32)
|
|
# define MUNIT_CPU_TIME_METHOD MUNIT_CPU_TIME_METHOD_GETPROCESSTIMES
|
|
# define MUNIT_WALL_TIME_METHOD MUNIT_WALL_TIME_METHOD_QUERYPERFORMANCECOUNTER
|
|
#elif defined(__MACH__)
|
|
# define MUNIT_CPU_TIME_METHOD MUNIT_CPU_TIME_METHOD_GETRUSAGE
|
|
# define MUNIT_WALL_TIME_METHOD MUNIT_WALL_TIME_METHOD_MACH_ABSOLUTE_TIME
|
|
#else
|
|
# define MUNIT_CPU_TIME_METHOD MUNIT_CPU_TIME_METHOD_GETRUSAGE
|
|
# define MUNIT_WALL_TIME_METHOD MUNIT_WALL_TIME_METHOD_GETTIMEOFDAY
|
|
#endif
|
|
|
|
#if MUNIT_CPU_TIME_METHOD == MUNIT_CPU_TIME_METHOD_CLOCK_GETTIME
|
|
#include <time.h>
|
|
typedef struct timespec MunitCpuClock;
|
|
#elif MUNIT_CPU_TIME_METHOD == MUNIT_CPU_TIME_METHOD_CLOCK
|
|
#include <time.h>
|
|
typedef clock_t MunitCpuClock;
|
|
#elif MUNIT_CPU_TIME_METHOD == MUNIT_CPU_TIME_METHOD_GETPROCESSTIMES
|
|
#include <windows.h>
|
|
typedef FILETIME MunitCpuClock;
|
|
#elif MUNIT_CPU_TIME_METHOD == MUNIT_CPU_TIME_METHOD_GETRUSAGE
|
|
#include <sys/time.h>
|
|
#include <sys/resource.h>
|
|
typedef struct rusage MunitCpuClock;
|
|
#endif
|
|
|
|
#if MUNIT_WALL_TIME_METHOD == MUNIT_WALL_TIME_METHOD_CLOCK_GETTIME
|
|
#include <time.h>
|
|
typedef struct timespec MunitWallClock;
|
|
#elif MUNIT_WALL_TIME_METHOD == MUNIT_WALL_TIME_METHOD_GETTIMEOFDAY
|
|
typedef struct timeval MunitWallClock;
|
|
#elif MUNIT_WALL_TIME_METHOD == MUNIT_WALL_TIME_METHOD_QUERYPERFORMANCECOUNTER
|
|
typedef LARGE_INTEGER MunitWallClock;
|
|
#elif MUNIT_WALL_TIME_METHOD == MUNIT_WALL_TIME_METHOD_MACH_ABSOLUTE_TIME
|
|
#include <mach/mach.h>
|
|
#include <mach/mach_time.h>
|
|
typedef uint64_t MunitWallClock;
|
|
#endif
|
|
|
|
static void
|
|
munit_wall_clock_get_time(MunitWallClock* wallclock) {
|
|
#if MUNIT_WALL_TIME_METHOD == MUNIT_WALL_TIME_METHOD_CLOCK_GETTIME
|
|
if (clock_gettime(CLOCK_MONOTONIC, wallclock) != 0) {
|
|
fputs("Unable to get wall clock time\n", stderr);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
#elif MUNIT_WALL_TIME_METHOD == MUNIT_WALL_TIME_METHOD_QUERYPERFORMANCECOUNTER
|
|
if (QueryPerformanceCounter(wallclock) == 0) {
|
|
fputs("Unable to get wall clock time\n", stderr);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
#elif MUNIT_WALL_TIME_METHOD == MUNIT_WALL_TIME_METHOD_GETTIMEOFDAY
|
|
if (gettimeofday(wallclock, NULL) != 0) {
|
|
fputs("Unable to get wall clock time\n", stderr);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
#elif MUNIT_WALL_TIME_METHOD == MUNIT_WALL_TIME_METHOD_MACH_ABSOLUTE_TIME
|
|
*wallclock = mach_absolute_time();
|
|
#endif
|
|
}
|
|
|
|
static void
|
|
munit_cpu_clock_get_time(MunitCpuClock* cpuclock) {
|
|
#if MUNIT_CPU_TIME_METHOD == MUNIT_CPU_TIME_METHOD_CLOCK_GETTIME
|
|
static const clockid_t clock_id =
|
|
#if defined(_POSIX_CPUTIME) || defined(CLOCK_PROCESS_CPUTIME_ID)
|
|
CLOCK_PROCESS_CPUTIME_ID
|
|
#elif defined(CLOCK_VIRTUAL)
|
|
CLOCK_VIRTUAL
|
|
#else
|
|
#error No clock found
|
|
#endif
|
|
;
|
|
|
|
if (clock_gettime(clock_id, cpuclock) != 0) {
|
|
fputs("Unable to get CPU clock time\n", stderr);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
#elif MUNIT_CPU_TIME_METHOD == MUNIT_CPU_TIME_METHOD_GETPROCESSTIMES
|
|
FILETIME CreationTime, ExitTime, KernelTime;
|
|
if (!GetProcessTimes(GetCurrentProcess(), &CreationTime, &ExitTime, &KernelTime, cpuclock)) {
|
|
fputs("Unable to get CPU clock time\n", stderr);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
#elif MUNIT_CPU_TIME_METHOD == MUNIT_CPU_TIME_METHOD_CLOCK
|
|
*cpuclock = clock();
|
|
#elif MUNIT_CPU_TIME_METHOD == MUNIT_CPU_TIME_METHOD_GETRUSAGE
|
|
if (getrusage(RUSAGE_SELF, cpuclock) != 0) {
|
|
fputs("Unable to get CPU clock time\n", stderr);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
static double
|
|
munit_wall_clock_get_elapsed(MunitWallClock* start, MunitWallClock* end) {
|
|
#if MUNIT_WALL_TIME_METHOD == MUNIT_WALL_TIME_METHOD_CLOCK_GETTIME
|
|
return
|
|
(double) (end->tv_sec - start->tv_sec) +
|
|
(((double) (end->tv_nsec - start->tv_nsec)) / 1000000000);
|
|
#elif MUNIT_WALL_TIME_METHOD == MUNIT_WALL_TIME_METHOD_QUERYPERFORMANCECOUNTER
|
|
LARGE_INTEGER Frequency;
|
|
LONGLONG elapsed_ticks;
|
|
QueryPerformanceFrequency(&Frequency);
|
|
elapsed_ticks = end->QuadPart - start->QuadPart;
|
|
return ((double) elapsed_ticks) / ((double) Frequency.QuadPart);
|
|
#elif MUNIT_WALL_TIME_METHOD == MUNIT_WALL_TIME_METHOD_GETTIMEOFDAY
|
|
return
|
|
(double) (end->tv_sec - start->tv_sec) +
|
|
(((double) (end->tv_usec - start->tv_usec)) / 1000000);
|
|
#elif MUNIT_WALL_TIME_METHOD == MUNIT_WALL_TIME_METHOD_MACH_ABSOLUTE_TIME
|
|
static mach_timebase_info_data_t timebase_info = { 0, 0 };
|
|
if (timebase_info.denom == 0)
|
|
(void) mach_timebase_info(&timebase_info);
|
|
|
|
return ((*end - *start) * timebase_info.numer / timebase_info.denom) / 1000000000.0;
|
|
#endif
|
|
}
|
|
|
|
static double
|
|
munit_cpu_clock_get_elapsed(MunitCpuClock* start, MunitCpuClock* end) {
|
|
#if MUNIT_CPU_TIME_METHOD == MUNIT_CPU_TIME_METHOD_CLOCK_GETTIME
|
|
return
|
|
(double) (end->tv_sec - start->tv_sec) +
|
|
(((double) (end->tv_nsec - start->tv_nsec)) / 1000000000);
|
|
#elif MUNIT_CPU_TIME_METHOD == MUNIT_CPU_TIME_METHOD_GETPROCESSTIMES
|
|
ULONGLONG start_cpu, end_cpu;
|
|
|
|
start_cpu = start->dwHighDateTime;
|
|
start_cpu <<= sizeof(DWORD) * 8;
|
|
start_cpu |= start->dwLowDateTime;
|
|
|
|
end_cpu = end->dwHighDateTime;
|
|
end_cpu <<= sizeof(DWORD) * 8;
|
|
end_cpu |= end->dwLowDateTime;
|
|
|
|
return ((double) (end_cpu - start_cpu)) / 10000000;
|
|
#elif MUNIT_CPU_TIME_METHOD == MUNIT_CPU_TIME_METHOD_CLOCK
|
|
return ((double) (*end - *start)) / CLOCKS_PER_SEC;
|
|
#elif MUNIT_CPU_TIME_METHOD == MUNIT_CPU_TIME_METHOD_GETRUSAGE
|
|
return
|
|
(double) ((end->ru_utime.tv_sec + end->ru_stime.tv_sec) - (start->ru_utime.tv_sec + start->ru_stime.tv_sec)) +
|
|
(((double) ((end->ru_utime.tv_usec + end->ru_stime.tv_usec) - (start->ru_utime.tv_usec + start->ru_stime.tv_usec))) / 1000000);
|
|
#endif
|
|
}
|
|
|
|
#endif /* MUNIT_ENABLE_TIMING */
|
|
|
|
/*** Test suite handling ***/
|
|
|
|
typedef struct {
|
|
unsigned int successful;
|
|
unsigned int skipped;
|
|
unsigned int failed;
|
|
unsigned int errored;
|
|
#if defined(MUNIT_ENABLE_TIMING)
|
|
double cpu_clock;
|
|
double wall_clock;
|
|
#endif
|
|
} MunitReport;
|
|
|
|
typedef struct {
|
|
const char* prefix;
|
|
const MunitSuite* suite;
|
|
const char** tests;
|
|
uint32_t seed;
|
|
unsigned int iterations;
|
|
MunitParameter* parameters;
|
|
bool single_parameter_mode;
|
|
void* user_data;
|
|
MunitReport report;
|
|
bool colorize;
|
|
bool fork;
|
|
bool show_stderr;
|
|
bool fatal_failures;
|
|
} MunitTestRunner;
|
|
|
|
const char*
|
|
munit_parameters_get(const MunitParameter params[], const char* key) {
|
|
for (const MunitParameter* param = params ; param != NULL && param->name != NULL ; param++)
|
|
if (strcmp(param->name, key) == 0)
|
|
return param->value;
|
|
return NULL;
|
|
}
|
|
|
|
static void
|
|
munit_print_time(FILE* fp, double seconds) {
|
|
fprintf(fp, "%" MUNIT_TEST_TIME_FORMAT, seconds);
|
|
}
|
|
|
|
/* Add a paramter to an array of parameters. */
|
|
static MunitResult
|
|
munit_parameters_add(size_t* params_size, MunitParameter* params[MUNIT_ARRAY_PARAM(*params_size)], char* name, char* value) {
|
|
*params = realloc(*params, sizeof(MunitParameter) * (*params_size + 2));
|
|
if (*params == NULL)
|
|
return MUNIT_ERROR;
|
|
|
|
(*params)[*params_size].name = name;
|
|
(*params)[*params_size].value = value;
|
|
(*params_size)++;
|
|
(*params)[*params_size].name = NULL;
|
|
(*params)[*params_size].value = NULL;
|
|
|
|
return MUNIT_OK;
|
|
}
|
|
|
|
/* Concatenate two strings, but just return one of the components
|
|
* unaltered if the other is NULL or "". */
|
|
static char*
|
|
munit_maybe_concat(size_t* len, char* prefix, char* suffix) {
|
|
char* res;
|
|
size_t res_l;
|
|
const size_t prefix_l = prefix != NULL ? strlen(prefix) : 0;
|
|
const size_t suffix_l = suffix != NULL ? strlen(suffix) : 0;
|
|
if (prefix_l == 0 && suffix_l == 0) {
|
|
res = NULL;
|
|
res_l = 0;
|
|
} else if (prefix_l == 0 && suffix_l != 0) {
|
|
res = suffix;
|
|
res_l = suffix_l;
|
|
} else if (prefix_l != 0 && suffix_l == 0) {
|
|
res = prefix;
|
|
res_l = prefix_l;
|
|
} else {
|
|
res_l = prefix_l + suffix_l;
|
|
res = malloc(res_l + 1);
|
|
memcpy(res, prefix, prefix_l);
|
|
memcpy(res + prefix_l, suffix, suffix_l);
|
|
res[res_l] = 0;
|
|
}
|
|
|
|
if (len != NULL)
|
|
*len = res_l;
|
|
|
|
return res;
|
|
}
|
|
|
|
/* Possbily free a string returned by munit_maybe_concat. */
|
|
static void
|
|
munit_maybe_free_concat(char* s, const char* prefix, const char* suffix) {
|
|
if (prefix != s && suffix != s)
|
|
free(s);
|
|
}
|
|
|
|
/* Cheap string hash function, just used to salt the PRNG. */
|
|
static uint32_t
|
|
munit_str_hash(const char* name) {
|
|
const char *p;
|
|
uint32_t h = UINT32_C(5381);
|
|
|
|
for (p = name; *p != '\0'; p++)
|
|
h = (h << 5) + h + *p;
|
|
|
|
return h;
|
|
}
|
|
|
|
static void
|
|
munit_splice(int from, int to) {
|
|
uint8_t buf[1024];
|
|
#if !defined(_WIN32)
|
|
ssize_t len;
|
|
ssize_t bytes_written;
|
|
#else
|
|
int len;
|
|
int bytes_written;
|
|
#endif
|
|
do {
|
|
len = read(from, buf, sizeof(buf));
|
|
if (len > 0) {
|
|
bytes_written = 0;
|
|
do {
|
|
bytes_written += write(to, buf + bytes_written, len - bytes_written);
|
|
if (bytes_written < 0)
|
|
break;
|
|
} while (bytes_written < len);
|
|
}
|
|
else
|
|
break;
|
|
} while (true);
|
|
}
|
|
|
|
/* This is the part that should be handled in the child process */
|
|
static MunitResult
|
|
munit_test_runner_exec(MunitTestRunner* runner, const MunitTest* test, const MunitParameter params[], MunitReport* report) {
|
|
unsigned int iterations = runner->iterations;
|
|
MunitResult result = MUNIT_FAIL;
|
|
#if defined(MUNIT_ENABLE_TIMING)
|
|
MunitWallClock wall_clock_begin, wall_clock_end;
|
|
MunitCpuClock cpu_clock_begin, cpu_clock_end;
|
|
#endif
|
|
unsigned int i = 0;
|
|
|
|
if ((test->options & MUNIT_TEST_OPTION_SINGLE_ITERATION) == MUNIT_TEST_OPTION_SINGLE_ITERATION)
|
|
iterations = 1;
|
|
else if (iterations == 0)
|
|
iterations = runner->suite->iterations;
|
|
|
|
munit_rand_seed(runner->seed);
|
|
|
|
do {
|
|
void* data = (test->setup == NULL) ? runner->user_data : test->setup(params, runner->user_data);
|
|
|
|
#if defined(MUNIT_ENABLE_TIMING)
|
|
munit_wall_clock_get_time(&wall_clock_begin);
|
|
munit_cpu_clock_get_time(&cpu_clock_begin);
|
|
#endif
|
|
|
|
result = test->test(params, data);
|
|
|
|
#if defined(MUNIT_ENABLE_TIMING)
|
|
munit_wall_clock_get_time(&wall_clock_end);
|
|
munit_cpu_clock_get_time(&cpu_clock_end);
|
|
#endif
|
|
|
|
if (test->tear_down != NULL)
|
|
test->tear_down(data);
|
|
|
|
if (MUNIT_LIKELY(result == MUNIT_OK)) {
|
|
report->successful++;
|
|
#if defined(MUNIT_ENABLE_TIMING)
|
|
report->wall_clock += munit_wall_clock_get_elapsed(&wall_clock_begin, &wall_clock_end);
|
|
report->cpu_clock += munit_cpu_clock_get_elapsed(&cpu_clock_begin, &cpu_clock_end);
|
|
#endif
|
|
} else {
|
|
switch (result) {
|
|
case MUNIT_SKIP:
|
|
report->skipped++;
|
|
break;
|
|
case MUNIT_FAIL:
|
|
report->failed++;
|
|
break;
|
|
case MUNIT_ERROR:
|
|
report->errored++;
|
|
break;
|
|
case MUNIT_OK:
|
|
default:
|
|
break;
|
|
}
|
|
break;
|
|
}
|
|
} while (++i < iterations);
|
|
|
|
return result;
|
|
}
|
|
|
|
#if defined(MUNIT_EMOTICON)
|
|
# define MUNIT_RESULT_STRING_OK ":)"
|
|
# define MUNIT_RESULT_STRING_SKIP ":|"
|
|
# define MUNIT_RESULT_STRING_FAIL ":("
|
|
# define MUNIT_RESULT_STRING_ERROR ":o"
|
|
# define MUNIT_RESULT_STRING_TODO ":/"
|
|
#else
|
|
# define MUNIT_RESULT_STRING_OK "OK "
|
|
# define MUNIT_RESULT_STRING_SKIP "SKIP "
|
|
# define MUNIT_RESULT_STRING_FAIL "FAIL "
|
|
# define MUNIT_RESULT_STRING_ERROR "ERROR"
|
|
# define MUNIT_RESULT_STRING_TODO "TODO "
|
|
#endif
|
|
|
|
static void
|
|
munit_test_runner_print_color(const MunitTestRunner* runner, const char* string, char color) {
|
|
if (runner->colorize)
|
|
fprintf(MUNIT_OUTPUT_FILE, "\x1b[3%cm%s\x1b[39m", color, string);
|
|
else
|
|
fputs(string, MUNIT_OUTPUT_FILE);
|
|
}
|
|
|
|
static int
|
|
munit_replace_stderr(FILE* stderr_buf) {
|
|
if (stderr_buf != NULL) {
|
|
const int orig_stderr = dup(STDERR_FILENO);
|
|
|
|
int errfd = fileno(stderr_buf);
|
|
if (MUNIT_UNLIKELY(errfd == -1)) {
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
dup2(errfd, STDERR_FILENO);
|
|
|
|
return orig_stderr;
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
static void
|
|
munit_restore_stderr(int orig_stderr) {
|
|
if (orig_stderr != -1) {
|
|
dup2(orig_stderr, STDERR_FILENO);
|
|
close(orig_stderr);
|
|
}
|
|
}
|
|
|
|
/* Run a test with the specified parameters. */
|
|
static void
|
|
munit_test_runner_run_test_with_params(MunitTestRunner* runner, const MunitTest* test, const MunitParameter params[]) {
|
|
MunitResult result = MUNIT_OK;
|
|
MunitReport report = {
|
|
0, 0, 0, 0,
|
|
#if defined(MUNIT_ENABLE_TIMING)
|
|
0.0, 0.0
|
|
#endif
|
|
};
|
|
|
|
if (params != NULL) {
|
|
unsigned int output_l = 2;
|
|
fputs(" ", MUNIT_OUTPUT_FILE);
|
|
bool first = true;
|
|
for (const MunitParameter* param = params ; param != NULL && param->name != NULL ; param++) {
|
|
if (!first) {
|
|
fputs(", ", MUNIT_OUTPUT_FILE);
|
|
output_l += 2;
|
|
} else {
|
|
first = false;
|
|
}
|
|
|
|
output_l += fprintf(MUNIT_OUTPUT_FILE, "%s=%s", param->name, param->value);
|
|
}
|
|
while (output_l++ < MUNIT_TEST_NAME_LEN) {
|
|
fputc(' ', MUNIT_OUTPUT_FILE);
|
|
}
|
|
}
|
|
|
|
fflush(MUNIT_OUTPUT_FILE);
|
|
|
|
FILE* stderr_buf = NULL;
|
|
#if !defined(_WIN32) || defined(__MINGW32__)
|
|
stderr_buf = tmpfile();
|
|
#else
|
|
tmpfile_s(&stderr_buf);
|
|
#endif
|
|
if (stderr_buf == NULL) {
|
|
munit_log_errno(MUNIT_LOG_ERROR, stderr, "unable to create buffer for stderr");
|
|
result = MUNIT_ERROR;
|
|
goto print_result;
|
|
}
|
|
|
|
#if !defined(_WIN32)
|
|
if (runner->fork) {
|
|
int pipefd[2] = { -1, -1 };
|
|
if (pipe(pipefd) != 0) {
|
|
munit_log_errno(MUNIT_LOG_ERROR, stderr, "unable to create pipe");
|
|
result = MUNIT_ERROR;
|
|
goto print_result;
|
|
}
|
|
|
|
const pid_t fork_pid = fork();
|
|
if (fork_pid == 0) {
|
|
close(pipefd[0]);
|
|
|
|
munit_replace_stderr(stderr_buf);
|
|
result = munit_test_runner_exec(runner, test, params, &report);
|
|
|
|
/* Note that we don't restore stderr. This is so we can buffer
|
|
* things written to stderr later on (such as by
|
|
* asan/tsan/ubsan, valgrind, etc.) */
|
|
|
|
ssize_t bytes_written = 0;
|
|
do {
|
|
bytes_written += write(pipefd[1], ((uint8_t*) (&report)) + bytes_written, sizeof(report) - bytes_written);
|
|
if (bytes_written < 0) {
|
|
if (stderr_buf != NULL) {
|
|
munit_log_errno(MUNIT_LOG_ERROR, stderr, "unable to write to pipe");
|
|
}
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
} while ((size_t) bytes_written < sizeof(report));
|
|
|
|
if (stderr_buf != NULL)
|
|
fclose(stderr_buf);
|
|
close(pipefd[1]);
|
|
|
|
exit(EXIT_SUCCESS);
|
|
} else if (fork_pid == -1) {
|
|
close(pipefd[0]);
|
|
close(pipefd[1]);
|
|
if (stderr_buf != NULL) {
|
|
munit_log_errno(MUNIT_LOG_ERROR, stderr, "unable to fork");
|
|
}
|
|
report.errored++;
|
|
result = MUNIT_ERROR;
|
|
} else {
|
|
close(pipefd[1]);
|
|
ssize_t bytes_read = 0;
|
|
do {
|
|
ssize_t read_res = read(pipefd[0], ((uint8_t*) (&report)) + bytes_read, sizeof(report) - bytes_read);
|
|
if (read_res < 1)
|
|
break;
|
|
bytes_read += read_res;
|
|
} while (bytes_read < (ssize_t) sizeof(report));
|
|
|
|
int status = 0;
|
|
const pid_t changed_pid = waitpid(fork_pid, &status, 0);
|
|
|
|
if (MUNIT_LIKELY(changed_pid == fork_pid) && MUNIT_LIKELY(WIFEXITED(status))) {
|
|
if (bytes_read != sizeof(report)) {
|
|
munit_logf_internal(MUNIT_LOG_ERROR, stderr_buf, "child exited unexpectedly with status %d", WEXITSTATUS(status));
|
|
report.errored++;
|
|
} else if (WEXITSTATUS(status) != EXIT_SUCCESS) {
|
|
munit_logf_internal(MUNIT_LOG_ERROR, stderr_buf, "child exited with status %d", WEXITSTATUS(status));
|
|
report.errored++;
|
|
}
|
|
} else {
|
|
if (WIFSIGNALED(status)) {
|
|
munit_logf_internal(MUNIT_LOG_ERROR, stderr_buf, "child killed by signal %d (%s)", WTERMSIG(status), strsignal(WTERMSIG(status)));
|
|
} else if (WIFSTOPPED(status)) {
|
|
munit_logf_internal(MUNIT_LOG_ERROR, stderr_buf, "child stopped by signal %d", WSTOPSIG(status));
|
|
}
|
|
report.errored++;
|
|
}
|
|
|
|
close(pipefd[0]);
|
|
waitpid(fork_pid, NULL, 0);
|
|
}
|
|
} else
|
|
#endif
|
|
{
|
|
const volatile int orig_stderr = munit_replace_stderr(stderr_buf);
|
|
|
|
#if defined(MUNIT_THREAD_LOCAL)
|
|
if (MUNIT_UNLIKELY(setjmp(munit_error_jmp_buf) != 0)) {
|
|
result = MUNIT_FAIL;
|
|
report.failed++;
|
|
} else {
|
|
munit_error_jmp_buf_valid = true;
|
|
result = munit_test_runner_exec(runner, test, params, &report);
|
|
}
|
|
#else
|
|
result = munit_test_runner_exec(runner, test, params, &report);
|
|
#endif
|
|
|
|
munit_restore_stderr(orig_stderr);
|
|
|
|
/* Here just so that the label is used on Windows and we don't get
|
|
* a warning */
|
|
goto print_result;
|
|
}
|
|
|
|
print_result:
|
|
|
|
fputs("[ ", MUNIT_OUTPUT_FILE);
|
|
if ((test->options & MUNIT_TEST_OPTION_TODO) == MUNIT_TEST_OPTION_TODO) {
|
|
if (report.failed != 0 || report.errored != 0 || report.skipped != 0) {
|
|
munit_test_runner_print_color(runner, MUNIT_RESULT_STRING_TODO, '3');
|
|
result = MUNIT_OK;
|
|
} else {
|
|
munit_test_runner_print_color(runner, MUNIT_RESULT_STRING_ERROR, '1');
|
|
munit_log_internal(MUNIT_LOG_ERROR, stderr_buf, "Test marked TODO, but was successful.");
|
|
runner->report.failed++;
|
|
result = MUNIT_ERROR;
|
|
}
|
|
} else
|
|
if (report.failed > 0) {
|
|
munit_test_runner_print_color(runner, MUNIT_RESULT_STRING_FAIL, '1');
|
|
runner->report.failed++;
|
|
result = MUNIT_FAIL;
|
|
} else if (report.errored > 0) {
|
|
munit_test_runner_print_color(runner, MUNIT_RESULT_STRING_ERROR, '1');
|
|
runner->report.errored++;
|
|
result = MUNIT_ERROR;
|
|
} else if (report.skipped > 0) {
|
|
munit_test_runner_print_color(runner, MUNIT_RESULT_STRING_SKIP, '3');
|
|
runner->report.skipped++;
|
|
result = MUNIT_SKIP;
|
|
} else if (report.successful > 1) {
|
|
munit_test_runner_print_color(runner, MUNIT_RESULT_STRING_OK, '2');
|
|
#if defined(MUNIT_ENABLE_TIMING)
|
|
fputs(" ] [ ", MUNIT_OUTPUT_FILE);
|
|
munit_print_time(MUNIT_OUTPUT_FILE, report.wall_clock / ((double) report.successful));
|
|
fputs(" / ", MUNIT_OUTPUT_FILE);
|
|
munit_print_time(MUNIT_OUTPUT_FILE, report.cpu_clock / ((double) report.successful));
|
|
fprintf(MUNIT_OUTPUT_FILE, " CPU ]\n %-" MUNIT_XSTRINGIFY(MUNIT_TEST_NAME_LEN) "s Total: [ ", "");
|
|
munit_print_time(MUNIT_OUTPUT_FILE, report.wall_clock);
|
|
fputs(" / ", MUNIT_OUTPUT_FILE);
|
|
munit_print_time(MUNIT_OUTPUT_FILE, report.cpu_clock);
|
|
fputs(" CPU", MUNIT_OUTPUT_FILE);
|
|
#endif
|
|
runner->report.successful++;
|
|
result = MUNIT_OK;
|
|
} else if (report.successful > 0) {
|
|
munit_test_runner_print_color(runner, MUNIT_RESULT_STRING_OK, '2');
|
|
#if defined(MUNIT_ENABLE_TIMING)
|
|
fputs(" ] [ ", MUNIT_OUTPUT_FILE);
|
|
munit_print_time(MUNIT_OUTPUT_FILE, report.wall_clock);
|
|
fputs(" / ", MUNIT_OUTPUT_FILE);
|
|
munit_print_time(MUNIT_OUTPUT_FILE, report.cpu_clock);
|
|
fputs(" CPU", MUNIT_OUTPUT_FILE);
|
|
#endif
|
|
runner->report.successful++;
|
|
result = MUNIT_OK;
|
|
}
|
|
fputs(" ]\n", MUNIT_OUTPUT_FILE);
|
|
|
|
if (stderr_buf != NULL) {
|
|
if (result == MUNIT_FAIL || result == MUNIT_ERROR || runner->show_stderr) {
|
|
fflush(MUNIT_OUTPUT_FILE);
|
|
|
|
rewind(stderr_buf);
|
|
munit_splice(fileno(stderr_buf), STDERR_FILENO);
|
|
|
|
fflush(stderr);
|
|
}
|
|
|
|
fclose(stderr_buf);
|
|
}
|
|
}
|
|
|
|
static void
|
|
munit_test_runner_run_test_wild(MunitTestRunner* runner,
|
|
const MunitTest* test,
|
|
const char* test_name,
|
|
MunitParameter* params,
|
|
MunitParameter* p) {
|
|
const MunitParameterEnum* pe;
|
|
for (pe = test->parameters ; pe != NULL && pe->name != NULL ; pe++) {
|
|
if (p->name == pe->name)
|
|
break;
|
|
}
|
|
|
|
if (pe == NULL)
|
|
return;
|
|
|
|
for (char** values = pe->values ; *values != NULL ; values++) {
|
|
MunitParameter* next = p + 1;
|
|
p->value = *values;
|
|
if (next->name == NULL) {
|
|
munit_test_runner_run_test_with_params(runner, test, params);
|
|
} else {
|
|
munit_test_runner_run_test_wild(runner, test, test_name, params, next);
|
|
}
|
|
if (runner->fatal_failures && (runner->report.failed != 0 || runner->report.errored != 0))
|
|
break;
|
|
}
|
|
}
|
|
|
|
/* Run a single test, with every combination of parameters
|
|
* requested. */
|
|
static void
|
|
munit_test_runner_run_test(MunitTestRunner* runner,
|
|
const MunitTest* test,
|
|
const char* prefix) {
|
|
char* test_name = munit_maybe_concat(NULL, (char*) prefix, (char*) test->name);
|
|
|
|
munit_rand_seed(runner->seed);
|
|
|
|
fprintf(MUNIT_OUTPUT_FILE, "%-" MUNIT_XSTRINGIFY(MUNIT_TEST_NAME_LEN) "s", test_name);
|
|
|
|
if (test->parameters == NULL) {
|
|
/* No parameters. Simple, nice. */
|
|
munit_test_runner_run_test_with_params(runner, test, NULL);
|
|
} else {
|
|
/* The array of parameters to pass to
|
|
* munit_test_runner_run_test_with_params */
|
|
MunitParameter* params = NULL;
|
|
size_t params_l = 0;
|
|
/* Wildcard parameters are parameters which have possible values
|
|
* specified in the test, but no specific value was passed to the
|
|
* CLI. That means we want to run the test once for every
|
|
* possible combination of parameter values or, if --single was
|
|
* passed to the CLI, a single time with a random set of
|
|
* parameters. */
|
|
MunitParameter* wild_params = NULL;
|
|
size_t wild_params_l = 0;
|
|
|
|
fputc('\n', MUNIT_OUTPUT_FILE);
|
|
|
|
for (const MunitParameterEnum* pe = test->parameters ; pe != NULL && pe->name != NULL ; pe++) {
|
|
/* Did we received a value for this parameter from the CLI? */
|
|
bool filled = false;
|
|
for (const MunitParameter* cli_p = runner->parameters ; cli_p != NULL && cli_p->name != NULL ; cli_p++) {
|
|
if (strcmp(cli_p->name, pe->name) == 0) {
|
|
if (MUNIT_UNLIKELY(munit_parameters_add(¶ms_l, ¶ms, pe->name, cli_p->value) != MUNIT_OK))
|
|
goto cleanup;
|
|
filled = true;
|
|
break;
|
|
}
|
|
}
|
|
if (filled)
|
|
continue;
|
|
|
|
/* Nothing from CLI, is the enum NULL/empty? We're not a
|
|
* fuzzer… */
|
|
if (pe->values == NULL || pe->values[0] == NULL)
|
|
continue;
|
|
|
|
/* If --single was passed to the CLI, choose a value from the
|
|
* list of possibilities randomly. */
|
|
if (runner->single_parameter_mode) {
|
|
unsigned int possible = 0;
|
|
for (char** vals = pe->values ; *vals != NULL ; vals++)
|
|
possible++;
|
|
/* We want the tests to be reproducible, even if you're only
|
|
* running a single test, but we don't want every test with
|
|
* the same number of parameters to choose the same parameter
|
|
* number, so use the test name as a primitive salt. */
|
|
const int pidx = munit_rand_at_most(munit_str_hash(test_name), possible - 1);
|
|
if (MUNIT_UNLIKELY(munit_parameters_add(¶ms_l, ¶ms, pe->name, pe->values[pidx]) != MUNIT_OK))
|
|
goto cleanup;
|
|
} else {
|
|
/* We want to try every permutation. Put in a placeholder
|
|
* entry, we'll iterate through them later. */
|
|
if (MUNIT_UNLIKELY(munit_parameters_add(&wild_params_l, &wild_params, pe->name, NULL) != MUNIT_OK))
|
|
goto cleanup;
|
|
}
|
|
}
|
|
|
|
if (wild_params_l != 0) {
|
|
const size_t first_wild = params_l;
|
|
for (const MunitParameter* wp = wild_params ; wp != NULL && wp->name != NULL ; wp++) {
|
|
for (const MunitParameterEnum* pe = test->parameters ; pe != NULL && pe->name != NULL ; pe++) {
|
|
if (strcmp(wp->name, pe->name) == 0) {
|
|
if (MUNIT_UNLIKELY(munit_parameters_add(¶ms_l, ¶ms, pe->name, pe->values[0]) != MUNIT_OK))
|
|
goto cleanup;
|
|
}
|
|
}
|
|
}
|
|
|
|
munit_test_runner_run_test_wild(runner, test, test_name, params, params + first_wild);
|
|
} else {
|
|
munit_test_runner_run_test_with_params(runner, test, params);
|
|
}
|
|
|
|
cleanup:
|
|
free(params);
|
|
free(wild_params);
|
|
}
|
|
|
|
munit_maybe_free_concat(test_name, prefix, test->name);
|
|
}
|
|
|
|
/* Recurse through the suite and run all the tests. If a list of
|
|
* tests to run was provied on the command line, run only those
|
|
* tests. */
|
|
static void
|
|
munit_test_runner_run_suite(MunitTestRunner* runner,
|
|
const MunitSuite* suite,
|
|
const char* prefix) {
|
|
size_t pre_l;
|
|
char* pre = munit_maybe_concat(&pre_l, (char*) prefix, (char*) suite->prefix);
|
|
|
|
/* Run the tests. */
|
|
for (const MunitTest* test = suite->tests ; test != NULL && test->test != NULL ; test++) {
|
|
if (runner->tests != NULL) { /* Specific tests were requested on the CLI */
|
|
for (const char** test_name = runner->tests ; test_name != NULL && *test_name != NULL ; test_name++) {
|
|
if ((pre_l == 0 || strncmp(pre, *test_name, pre_l) == 0) &&
|
|
strncmp(test->name, *test_name + pre_l, strlen(*test_name + pre_l)) == 0) {
|
|
munit_test_runner_run_test(runner, test, pre);
|
|
if (runner->fatal_failures && (runner->report.failed != 0 || runner->report.errored != 0))
|
|
goto cleanup;
|
|
}
|
|
}
|
|
} else { /* Run all tests */
|
|
munit_test_runner_run_test(runner, test, pre);
|
|
}
|
|
}
|
|
|
|
if (runner->fatal_failures && (runner->report.failed != 0 || runner->report.errored != 0))
|
|
goto cleanup;
|
|
|
|
/* Run any child suites. */
|
|
for (const MunitSuite* child_suite = suite->suites ; child_suite != NULL && child_suite->prefix != NULL ; child_suite++) {
|
|
munit_test_runner_run_suite(runner, child_suite, pre);
|
|
}
|
|
|
|
cleanup:
|
|
|
|
munit_maybe_free_concat(pre, prefix, suite->prefix);
|
|
}
|
|
|
|
static void
|
|
munit_test_runner_run(MunitTestRunner* runner) {
|
|
munit_test_runner_run_suite(runner, runner->suite, NULL);
|
|
}
|
|
|
|
static void
|
|
munit_print_help(int argc, char* const argv[MUNIT_ARRAY_PARAM(argc + 1)], void* user_data, const MunitArgument arguments[]) {
|
|
(void) argc;
|
|
|
|
printf("USAGE: %s [OPTIONS...] [TEST...]\n\n", argv[0]);
|
|
puts(" --seed SEED\n"
|
|
" Value used to seed the PRNG. Must be a 32-bit integer in decimal\n"
|
|
" notation with no separators (commas, decimals, spaces, etc.), or\n"
|
|
" hexidecimal prefixed by \"0x\".\n"
|
|
" --iterations N\n"
|
|
" Run each test N times. 0 means the default number.\n"
|
|
" --param name value\n"
|
|
" A parameter key/value pair which will be passed to any test with\n"
|
|
" takes a parameter of that name. If not provided, the test will be\n"
|
|
" run once for each possible parameter value.\n"
|
|
" --list Write a list of all available tests.\n"
|
|
" --list-params\n"
|
|
" Write a list of all available tests and their possible parameters.\n"
|
|
" --single Run each parameterized test in a single configuration instead of\n"
|
|
" every possible combination\n"
|
|
" --log-visible debug|info|warning|error\n"
|
|
" --log-fatal debug|info|warning|error\n"
|
|
" Set the level at which messages of different severities are visible,\n"
|
|
" or cause the test to terminate.\n"
|
|
#if !defined(_WIN32)
|
|
" --no-fork Do not execute tests in a child process. If this option is supplied\n"
|
|
" and a test crashes (including by failing an assertion), no further\n"
|
|
" tests will be performed.\n"
|
|
#endif
|
|
" --fatal-failures\n"
|
|
" Stop executing tests as soon as a failure is found.\n"
|
|
" --show-stderr\n"
|
|
" Show data written to stderr by the tests, even if the test succeeds.\n"
|
|
" --color auto|always|never\n"
|
|
" Colorize (or don't) the output.\n"
|
|
/* 12345678901234567890123456789012345678901234567890123456789012345678901234567890 */
|
|
" --help Print this help message and exit.\n");
|
|
#if defined(MUNIT_NL_LANGINFO)
|
|
setlocale(LC_ALL, "");
|
|
fputs((strcasecmp("UTF-8", nl_langinfo(CODESET)) == 0) ? "µnit" : "munit", stdout);
|
|
#else
|
|
puts("munit");
|
|
#endif
|
|
printf(" %d.%d.%d\n"
|
|
"Full documentation at: https://nemequ.github.io/munit/\n",
|
|
(MUNIT_CURRENT_VERSION >> 16) & 0xff,
|
|
(MUNIT_CURRENT_VERSION >> 8) & 0xff,
|
|
(MUNIT_CURRENT_VERSION >> 0) & 0xff);
|
|
for (const MunitArgument* arg = arguments ; arg != NULL && arg->name != NULL ; arg++)
|
|
arg->write_help(arg, user_data);
|
|
}
|
|
|
|
static const MunitArgument*
|
|
munit_arguments_find(const MunitArgument arguments[], const char* name) {
|
|
for (const MunitArgument* arg = arguments ; arg != NULL && arg->name != NULL ; arg++)
|
|
if (strcmp(arg->name, name) == 0)
|
|
return arg;
|
|
|
|
return NULL;
|
|
}
|
|
|
|
static void
|
|
munit_suite_list_tests(const MunitSuite* suite, bool show_params, const char* prefix) {
|
|
size_t pre_l;
|
|
char* pre = munit_maybe_concat(&pre_l, (char*) prefix, (char*) suite->prefix);
|
|
|
|
for (const MunitTest* test = suite->tests ;
|
|
test != NULL && test->name != NULL ;
|
|
test++) {
|
|
if (pre != NULL)
|
|
fputs(pre, stdout);
|
|
puts(test->name);
|
|
|
|
if (show_params) {
|
|
for (const MunitParameterEnum* params = test->parameters ;
|
|
params != NULL && params->name != NULL ;
|
|
params++) {
|
|
fprintf(stdout, " - %s: ", params->name);
|
|
if (params->values == NULL) {
|
|
puts("Any");
|
|
} else {
|
|
bool first = true;
|
|
for (char** val = params->values ;
|
|
*val != NULL ;
|
|
val++ ) {
|
|
if(!first) {
|
|
fputs(", ", stdout);
|
|
} else {
|
|
first = false;
|
|
}
|
|
fputs(*val, stdout);
|
|
}
|
|
putc('\n', stdout);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
for (const MunitSuite* child_suite = suite->suites ; child_suite != NULL && child_suite->prefix != NULL ; child_suite++) {
|
|
munit_suite_list_tests(child_suite, show_params, pre);
|
|
}
|
|
|
|
munit_maybe_free_concat(pre, prefix, suite->prefix);
|
|
}
|
|
|
|
static bool
|
|
munit_stream_supports_ansi(FILE *stream) {
|
|
#if !defined(_WIN32)
|
|
return isatty(fileno(stream));
|
|
#else
|
|
if (isatty(fileno(stream))) {
|
|
#if !defined(__MINGW32__)
|
|
size_t ansicon_size = 0;
|
|
getenv_s(&ansicon_size, NULL, 0, "ANSICON");
|
|
return ansicon_size != 0;
|
|
#else
|
|
return getenv("ANSICON") != NULL;
|
|
#endif
|
|
}
|
|
return false;
|
|
#endif
|
|
}
|
|
|
|
int
|
|
munit_suite_main_custom(const MunitSuite* suite, void* user_data,
|
|
int argc, char* const argv[MUNIT_ARRAY_PARAM(argc + 1)],
|
|
const MunitArgument arguments[]) {
|
|
int result = EXIT_FAILURE;
|
|
MunitTestRunner runner = {
|
|
.prefix = NULL,
|
|
.suite = NULL,
|
|
.tests = NULL,
|
|
.seed = 0,
|
|
.iterations = 0,
|
|
.parameters = NULL,
|
|
.single_parameter_mode = false,
|
|
.user_data = NULL,
|
|
.report = {
|
|
.successful = 0,
|
|
.skipped = 0,
|
|
.failed = 0,
|
|
.errored = 0,
|
|
#if defined(MUNIT_ENABLE_TIMING)
|
|
.cpu_clock = 0.0,
|
|
.wall_clock = 0.0
|
|
#endif
|
|
},
|
|
.colorize = false,
|
|
#if !defined(_WIN32)
|
|
.fork = true,
|
|
#else
|
|
.fork = false,
|
|
#endif
|
|
.show_stderr = false,
|
|
.fatal_failures = false
|
|
};
|
|
size_t parameters_size = 0;
|
|
size_t tests_size = 0;
|
|
|
|
runner.suite = suite;
|
|
runner.user_data = user_data;
|
|
|
|
runner.seed = munit_rand_generate_seed();
|
|
runner.colorize = munit_stream_supports_ansi(MUNIT_OUTPUT_FILE);
|
|
|
|
for (int arg = 1 ; arg < argc ; arg++) {
|
|
if (strncmp("--", argv[arg], 2) == 0) {
|
|
if (strcmp("seed", argv[arg] + 2) == 0) {
|
|
if (arg + 1 >= argc) {
|
|
munit_logf_internal(MUNIT_LOG_ERROR, stderr, "%s requires an argument", argv[arg]);
|
|
goto cleanup;
|
|
}
|
|
|
|
char* envptr = argv[arg + 1];
|
|
unsigned long long ts = strtoull(argv[arg + 1], &envptr, 0);
|
|
if (*envptr != '\0' || ts > UINT32_MAX) {
|
|
munit_logf_internal(MUNIT_LOG_ERROR, stderr, "invalid value ('%s') passed to %s", argv[arg + 1], argv[arg]);
|
|
goto cleanup;
|
|
}
|
|
runner.seed = (uint32_t) ts;
|
|
|
|
arg++;
|
|
} else if (strcmp("iterations", argv[arg] + 2) == 0) {
|
|
if (arg + 1 >= argc) {
|
|
munit_logf_internal(MUNIT_LOG_ERROR, stderr, "%s requires an argument", argv[arg]);
|
|
goto cleanup;
|
|
}
|
|
|
|
char* endptr = argv[arg + 1];
|
|
unsigned long long iterations = strtoull(argv[arg + 1], &endptr, 0);
|
|
if (*endptr != '\0' || iterations > UINT_MAX) {
|
|
munit_logf_internal(MUNIT_LOG_ERROR, stderr, "invalid value ('%s') passed to %s", argv[arg + 1], argv[arg]);
|
|
goto cleanup;
|
|
}
|
|
|
|
runner.iterations = (unsigned int) iterations;
|
|
|
|
arg++;
|
|
} else if (strcmp("param", argv[arg] + 2) == 0) {
|
|
if (arg + 2 >= argc) {
|
|
munit_logf_internal(MUNIT_LOG_ERROR, stderr, "%s requires two arguments", argv[arg]);
|
|
goto cleanup;
|
|
}
|
|
|
|
runner.parameters = realloc(runner.parameters, sizeof(MunitParameter) * (parameters_size + 2));
|
|
if (runner.parameters == NULL) {
|
|
munit_log_internal(MUNIT_LOG_ERROR, stderr, "failed to allocate memory");
|
|
goto cleanup;
|
|
}
|
|
runner.parameters[parameters_size].name = (char*) argv[arg + 1];
|
|
runner.parameters[parameters_size].value = (char*) argv[arg + 2];
|
|
parameters_size++;
|
|
runner.parameters[parameters_size].name = NULL;
|
|
runner.parameters[parameters_size].value = NULL;
|
|
arg += 2;
|
|
} else if (strcmp("color", argv[arg] + 2) == 0) {
|
|
if (arg + 1 >= argc) {
|
|
munit_logf_internal(MUNIT_LOG_ERROR, stderr, "%s requires an argument", argv[arg]);
|
|
goto cleanup;
|
|
}
|
|
|
|
if (strcmp(argv[arg + 1], "always") == 0)
|
|
runner.colorize = true;
|
|
else if (strcmp(argv[arg + 1], "never") == 0)
|
|
runner.colorize = false;
|
|
else if (strcmp(argv[arg + 1], "auto") == 0)
|
|
runner.colorize = munit_stream_supports_ansi(MUNIT_OUTPUT_FILE);
|
|
else {
|
|
munit_logf_internal(MUNIT_LOG_ERROR, stderr, "invalid value ('%s') passed to %s", argv[arg + 1], argv[arg]);
|
|
goto cleanup;
|
|
}
|
|
|
|
arg++;
|
|
} else if (strcmp("help", argv[arg] + 2) == 0) {
|
|
munit_print_help(argc, argv, user_data, arguments);
|
|
result = EXIT_SUCCESS;
|
|
goto cleanup;
|
|
} else if (strcmp("single", argv[arg] + 2) == 0) {
|
|
runner.single_parameter_mode = true;
|
|
} else if (strcmp("show-stderr", argv[arg] + 2) == 0) {
|
|
runner.show_stderr = true;
|
|
#if !defined(_WIN32)
|
|
} else if (strcmp("no-fork", argv[arg] + 2) == 0) {
|
|
runner.fork = false;
|
|
#endif
|
|
} else if (strcmp("fatal-failures", argv[arg] + 2) == 0) {
|
|
runner.fatal_failures = true;
|
|
} else if (strcmp("log-visible", argv[arg] + 2) == 0 ||
|
|
strcmp("log-fatal", argv[arg] + 2) == 0) {
|
|
MunitLogLevel level;
|
|
|
|
if (arg + 1 >= argc) {
|
|
munit_logf_internal(MUNIT_LOG_ERROR, stderr, "%s requires an argument", argv[arg]);
|
|
goto cleanup;
|
|
}
|
|
|
|
if (strcmp(argv[arg + 1], "debug") == 0)
|
|
level = MUNIT_LOG_DEBUG;
|
|
else if (strcmp(argv[arg + 1], "info") == 0)
|
|
level = MUNIT_LOG_INFO;
|
|
else if (strcmp(argv[arg + 1], "warning") == 0)
|
|
level = MUNIT_LOG_WARNING;
|
|
else if (strcmp(argv[arg + 1], "error") == 0)
|
|
level = MUNIT_LOG_ERROR;
|
|
else {
|
|
munit_logf_internal(MUNIT_LOG_ERROR, stderr, "invalid value ('%s') passed to %s", argv[arg + 1], argv[arg]);
|
|
goto cleanup;
|
|
}
|
|
|
|
if (strcmp("log-visible", argv[arg] + 2) == 0)
|
|
munit_log_level_visible = level;
|
|
else
|
|
munit_log_level_fatal = level;
|
|
|
|
arg++;
|
|
} else if (strcmp("list", argv[arg] + 2) == 0) {
|
|
munit_suite_list_tests(suite, false, NULL);
|
|
result = EXIT_SUCCESS;
|
|
goto cleanup;
|
|
} else if (strcmp("list-params", argv[arg] + 2) == 0) {
|
|
munit_suite_list_tests(suite, true, NULL);
|
|
result = EXIT_SUCCESS;
|
|
goto cleanup;
|
|
} else {
|
|
const MunitArgument* argument = munit_arguments_find(arguments, argv[arg] + 2);
|
|
if (argument == NULL) {
|
|
munit_logf_internal(MUNIT_LOG_ERROR, stderr, "unknown argument ('%s')", argv[arg]);
|
|
goto cleanup;
|
|
}
|
|
|
|
if (!argument->parse_argument(suite, user_data, &arg, argc, argv))
|
|
goto cleanup;
|
|
}
|
|
} else {
|
|
runner.tests = realloc((void*) runner.tests, sizeof(char*) * (tests_size + 2));
|
|
if (runner.tests == NULL) {
|
|
munit_log_internal(MUNIT_LOG_ERROR, stderr, "failed to allocate memory");
|
|
goto cleanup;
|
|
}
|
|
runner.tests[tests_size++] = argv[arg];
|
|
runner.tests[tests_size] = NULL;
|
|
}
|
|
}
|
|
|
|
fflush(stderr);
|
|
fprintf(MUNIT_OUTPUT_FILE, "Running test suite with seed 0x%08" PRIx32 "...\n", runner.seed);
|
|
|
|
munit_test_runner_run(&runner);
|
|
|
|
const unsigned int tests_run = runner.report.successful + runner.report.failed + runner.report.errored;
|
|
const unsigned int tests_total = tests_run + runner.report.skipped;
|
|
if (tests_run == 0) {
|
|
fprintf(stderr, "No tests run, %d (100%%) skipped.\n", runner.report.skipped);
|
|
} else {
|
|
fprintf(MUNIT_OUTPUT_FILE, "%d of %d (%0.0f%%) tests successful, %d (%0.0f%%) test skipped.\n",
|
|
runner.report.successful, tests_run,
|
|
(((double) runner.report.successful) / ((double) tests_run)) * 100.0,
|
|
runner.report.skipped,
|
|
(((double) runner.report.skipped) / ((double) tests_total)) * 100.0);
|
|
}
|
|
|
|
if (runner.report.failed == 0 && runner.report.errored == 0) {
|
|
result = EXIT_SUCCESS;
|
|
}
|
|
|
|
cleanup:
|
|
free(runner.parameters);
|
|
free((void*) runner.tests);
|
|
|
|
return result;
|
|
}
|
|
|
|
int
|
|
munit_suite_main(const MunitSuite* suite, void* user_data,
|
|
int argc, char* const argv[MUNIT_ARRAY_PARAM(argc + 1)]) {
|
|
return munit_suite_main_custom(suite, user_data, argc, argv, NULL);
|
|
}
|