aboutsummaryrefslogtreecommitdiffstats
path: root/tests/internals/test_common.c
blob: 449c64abd7b934e9f247017ce87af51d960fbc50 (plain) (blame)
1
2
3
4
5
6
7
8
9

#include "test_common.h"

int failures = 0;

int run_suite(void (*suite)(void)) {
    suite();
    return (failures > 0) ? 1 : 0;
}