Blame src/functional/test.h
|
nsz |
462b4f |
#include <stdio.h>
|
|
nsz |
462b4f |
#include <stdarg.h>
|
|
Szabolcs Nagy |
7cf875 |
#include <unistd.h>
|
|
nsz |
462b4f |
|
|
Szabolcs Nagy |
dc1a7e |
/* TODO: not thread-safe nor fork-safe */
|
|
Szabolcs Nagy |
7cf875 |
static volatile int test_status;
|
|
Szabolcs Nagy |
7cf875 |
|
|
Szabolcs Nagy |
7becfe |
#define TEST_LOC2(l) __FILE__ ":" #l
|
|
Szabolcs Nagy |
7becfe |
#define TEST_LOC1(l) TEST_LOC2(l)
|
|
Szabolcs Nagy |
7becfe |
#define error(...) test_printf("ERROR " TEST_LOC1(__LINE__) ": " __VA_ARGS__)
|
|
nsz |
462b4f |
|
|
Szabolcs Nagy |
7cf875 |
static int test_printf(const char *s, ...)
|
|
nsz |
462b4f |
{
|
|
nsz |
462b4f |
va_list ap;
|
|
Szabolcs Nagy |
7cf875 |
char buf[512];
|
|
Szabolcs Nagy |
7cf875 |
int n;
|
|
nsz |
462b4f |
|
|
nsz |
462b4f |
test_status = 1;
|
|
nsz |
462b4f |
va_start(ap, s);
|
|
Szabolcs Nagy |
7cf875 |
n = vsnprintf(buf, sizeof buf, s, ap);
|
|
nsz |
462b4f |
va_end(ap);
|
|
Szabolcs Nagy |
7cf875 |
if (n < 0)
|
|
Szabolcs Nagy |
7cf875 |
n = 0;
|
|
Szabolcs Nagy |
7cf875 |
else if (n >= sizeof buf) {
|
|
Szabolcs Nagy |
7cf875 |
n = sizeof buf;
|
|
Szabolcs Nagy |
7cf875 |
buf[n - 1] = '\n';
|
|
Szabolcs Nagy |
7cf875 |
buf[n - 2] = '.';
|
|
Szabolcs Nagy |
7cf875 |
buf[n - 3] = '.';
|
|
Szabolcs Nagy |
7cf875 |
buf[n - 4] = '.';
|
|
Szabolcs Nagy |
7cf875 |
}
|
|
Szabolcs Nagy |
7cf875 |
return write(1, buf, n);
|
|
nsz |
462b4f |
}
|
|
nsz |
462b4f |
|