Search
lxdream.org :: lxdream/test/testdata.h
lxdream 0.9.1
released Jun 29
Download Now
filename test/testdata.h
changeset 561:533f6b478071
prev263:6f641270b2aa
author nkeynes
date Thu Dec 11 23:26:03 2008 +0000 (15 years ago)
permissions -rw-r--r--
last change Disable the generational translation cache - I've got no evidence that it
actually helps performance, and it simplifies things to get rid of it (in
particular, translated code doesn't have to worry about being moved now).
view annotate diff log raw
     1 /*
     2  * $Id$
     3  * 
     4  * Test data loader
     5  *
     6  * Copyright (c) 2006 Nathan Keynes.
     7  *
     8  * This program is free software; you can redistribute it and/or modify
     9  * it under the terms of the GNU General Public License as published by
    10  * the Free Software Foundation; either version 2 of the License, or
    11  * (at your option) any later version.
    12  *
    13  * This program is distributed in the hope that it will be useful,
    14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    16  * GNU General Public License for more details.
    17  */
    19 #include <stdio.h>
    21 #define MAX_DATA_BLOCKS 16
    23 typedef struct test_data_block {
    24     const char *name;
    25     unsigned int length;
    26     char *data;
    27 } *test_data_block_t;
    29 typedef struct test_data {
    30     const char *test_name;
    31     struct test_data *next;
    32     struct test_data_block item[MAX_DATA_BLOCKS];
    33 } *test_data_t;
    35 typedef int (*test_func_t)();
    36 int run_tests( test_func_t *tests );
    38 test_data_t load_test_dataset( FILE *f );
    39 void free_test_dataset( test_data_t dataset );
    40 void dump_test_dataset( FILE *f, test_data_t dataset );
    41 int test_block_compare( test_data_block_t expect, char *actual, int actual_length );
    42 test_data_block_t get_test_data( test_data_t dataset, char *item_name );
.