chiark / gitweb /
Allow things to be looked up by just their caller-supplied hashes. This
[mLib] / testrig.h
1 /* -*-c-*-
2  *
3  * $Id: testrig.h,v 1.3 1999/05/06 19:51:35 mdw Exp $
4  *
5  * Generic test driver
6  *
7  * (c) 1998 Straylight/Edgeware
8  */
9
10 /*----- Licensing notice --------------------------------------------------* 
11  *
12  * This file is part of the mLib utilities library.
13  *
14  * mLib is free software; you can redistribute it and/or modify
15  * it under the terms of the GNU Library General Public License as
16  * published by the Free Software Foundation; either version 2 of the
17  * License, or (at your option) any later version.
18  * 
19  * mLib is distributed in the hope that it will be useful,
20  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22  * GNU Library General Public License for more details.
23  * 
24  * You should have received a copy of the GNU Library General Public
25  * License along with mLib; if not, write to the Free
26  * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
27  * MA 02111-1307, USA.
28  */
29
30 /*----- Revision history --------------------------------------------------* 
31  *
32  * $Log: testrig.h,v $
33  * Revision 1.3  1999/05/06 19:51:35  mdw
34  * Reformatted the LGPL notice a little bit.
35  *
36  * Revision 1.2  1999/05/05 18:50:31  mdw
37  * Change licensing conditions to LGPL.
38  *
39  * Revision 1.1.1.1  1998/06/17 23:44:42  mdw
40  * Initial version of mLib
41  *
42  */
43
44 #ifndef TESTER_H
45 #define TESTER_H
46
47 #ifdef __cplusplus
48   extern "C" {
49 #endif
50
51 /*----- Header files ------------------------------------------------------*/
52
53 #include <stddef.h>
54
55 #include "dstr.h"
56
57 /*----- Magical numbers ---------------------------------------------------*/
58
59 #define TEST_FIELDMAX 16                /* Maximum fields in a line */
60
61 /*----- Data structures ---------------------------------------------------*/
62
63 /* --- Test field definition --- */
64
65 typedef struct test_type {
66   void (*cvt)(const char *buf, dstr *d); /* Conversion function */
67   void (*dump)(dstr *d, FILE *fp);      /* Dump function */
68 } test_type;
69
70 /* --- Test chunk definition --- */
71
72 typedef struct test_chunk {
73   const char *name;                     /* Name of this chunk */
74   int (*test)(dstr dv[]);               /* Test verification function */
75   test_type *f[TEST_FIELDMAX];          /* Field definitions */
76 } test_chunk;
77
78 /*----- Predefined data types ---------------------------------------------*/
79
80 extern test_type type_hex;
81 extern test_type type_string;
82 extern test_type type_int;
83
84 /*----- Functions provided ------------------------------------------------*/
85
86 /* --- @test_run@ --- *
87  *
88  * Arguments:   @int argc@ = number of command line arguments
89  *              @char *argv[]@ = pointer to command line arguments
90  *              @const test_chunk chunk[]@ = pointer to chunk definitions
91  *              @const char *def@ = name of default test vector file
92  *
93  * Returns:     Doesn't.
94  *
95  * Use:         Runs a set of test vectors to ensure that a component is
96  *              working properly.
97  */
98
99 extern void test_run(int /*argc*/, char */*argv*/[],
100                      const test_chunk /*chunk*/[],
101                      const char */*def*/);
102
103 /*----- That's all, folks -------------------------------------------------*/
104
105 #ifdef __cplusplus
106   }
107 #endif
108
109 #endif