src/test/test_list.c
author Tero Marttila <terom@fixme.fi>
Thu, 21 May 2009 16:57:56 +0300
changeset 213 f0e52e026197
parent 195 42aedce3e2eb
permissions -rw-r--r--
implement lua_console_on_interrupt to abort any executing thread
#include "test.h"

/**
 * Test function prototypes
 */
#define TEST(name, flags) extern void test_ ##name (void);

    #include "test_list.inc"


/**
 * The array of test structs
 */
#define TEST(name, flags) { #name, test_ ## name, flags },
#define TEST_END { NULL, NULL, 0 }

const struct test _tests[] = {
    #include "test_list.inc"
};