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

#include "test_common.h"

int failures = 0;

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