From 43f7f54dadecb1d11b4fd9cd2af4889043865490 Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Sun, 11 Jun 2017 11:14:40 +0100 Subject: Switch to a check based test suite, start fixing bugs --- test/basic.c | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 test/basic.c (limited to 'test/basic.c') diff --git a/test/basic.c b/test/basic.c deleted file mode 100644 index d514814..0000000 --- a/test/basic.c +++ /dev/null @@ -1,41 +0,0 @@ -/* - * Copyright 2017 Daniel Silverstone - * - * This file is part of libnslog. - * - * Licensed under the MIT License, - * http://www.opensource.org/licenses/mit-license.php - */ - -#include "nslog/nslog.h" - -#include - -NSLOG_DEFINE_CATEGORY(test, "Test category"); - -static void test_render_function( - void *_ctx, nslog_entry_context_t *ctx, - const char *fmt, va_list args) -{ - (void)ctx; - fprintf(stderr, "%s %s:%d [%s] %s() ", - nslog_level_name(ctx->level), - ctx->filename, ctx->lineno, - ctx->category->name, - ctx->funcname); - vfprintf(stderr, fmt, args); - fprintf(stderr, "\n"); -} - -int main(int argc, char **argv) -{ - nslog_set_render_callback(test_render_function, NULL); - NSLOG(test, INFO, "Pre-uncorking"); - fprintf(stderr, "About to nslog_uncork()\n"); - nslog_uncork(); - fprintf(stderr, "Uncorked now\n"); - NSLOG(test, WARN, "argc=%d", argc); - for (int i = 0; i < argc; ++i) - NSLOG(test, WARN, "argv[%d] = %s", i, argv[i]); - return 0; -} -- cgit v1.2.3