Search
lxdream.org :: lxdream/test/testdata.h
lxdream 0.9.1
released Jun 29
Download Now
filename test/testdata.h
changeset 263:6f641270b2aa
prev190:f7653df5e832
next561:533f6b478071
author nkeynes
date Mon Jan 15 12:17:02 2007 +0000 (17 years ago)
permissions -rw-r--r--
last change Fix output of yuv_decode() (yes, again...)
view annotate diff log raw
     1 /*
     2  * $Id: testdata.h,v 1.3 2007-01-03 09:05:13 nkeynes Exp $
     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 );
.