2022-05-24 07:14:12 -04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <kernaux/printf.h>
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#define BUFFER_SIZE 1024
|
|
|
|
|
|
|
|
static const char *const data = "foobar";
|
|
|
|
|
|
|
|
static char buffer[BUFFER_SIZE];
|
|
|
|
static size_t buffer_index;
|
|
|
|
|
|
|
|
static void test_putchar(const char chr, void *const arg)
|
|
|
|
{
|
|
|
|
assert(arg == data);
|
|
|
|
|
|
|
|
if (buffer_index >= BUFFER_SIZE) {
|
|
|
|
printf("Buffer overflow!\n");
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer[buffer_index++] = chr;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test(const char *const expected, const char *const format, ...)
|
|
|
|
{
|
|
|
|
va_list va;
|
|
|
|
int result;
|
|
|
|
|
|
|
|
memset(buffer, '\0', sizeof(buffer));
|
|
|
|
buffer_index = 0;
|
|
|
|
va_start(va, format);
|
|
|
|
result = kernaux_vprintf(test_putchar, (char*)data, format, va);
|
|
|
|
va_end(va);
|
|
|
|
assert((size_t)result == strlen(expected));
|
|
|
|
assert(strcmp(expected, buffer) == 0);
|
|
|
|
|
|
|
|
memset(buffer, '\0', sizeof(buffer));
|
|
|
|
buffer_index = 0;
|
|
|
|
va_start(va, format);
|
|
|
|
result = kernaux_vsnprintf(buffer, sizeof(buffer), format, va);
|
|
|
|
va_end(va);
|
|
|
|
assert((size_t)result == strlen(expected));
|
|
|
|
assert(strcmp(expected, buffer) == 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2022-05-24 07:51:08 -04:00
|
|
|
memset(buffer, '\0', sizeof(buffer));
|
|
|
|
buffer_index = 0;
|
|
|
|
kernaux_printf(test_putchar, (char*)data, "Hello, World!");
|
|
|
|
assert(strcmp("Hello, World!", buffer) == 0);
|
|
|
|
|
2022-05-24 07:14:12 -04:00
|
|
|
{% for case in cases %}
|
2022-05-24 07:51:08 -04:00
|
|
|
{% if case.float %}
|
|
|
|
#ifdef ENABLE_FLOAT
|
|
|
|
{% endif %}
|
2022-05-24 07:14:12 -04:00
|
|
|
printf("%s\n", {{ escape_str(case.result) }});
|
|
|
|
test({{ escape_str(case.result) }}, {{ escape_str(fmt(case.args)) }}{{ values(case.args) }});
|
2022-05-24 07:51:08 -04:00
|
|
|
{% if case.float %}
|
|
|
|
#endif
|
2022-05-24 07:14:12 -04:00
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|