mirror of https://github.com/yasm/yasm.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
93 lines
2.1 KiB
93 lines
2.1 KiB
#ifndef CHECK_IMPL_H |
|
#define CHECK_IMPL_H |
|
|
|
/* |
|
Check: a unit test framework for C |
|
Copyright (C) 2001, Arien Malec |
|
|
|
This program is free software; you can redistribute it and/or |
|
modify it under the terms of the GNU General Public License |
|
as published by the Free Software Foundation; either version 2 |
|
of the License, or (at your option) any later version. |
|
|
|
This program is distributed in the hope that it will be useful, |
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
GNU General Public License for more details. |
|
|
|
You should have received a copy of the GNU General Public License |
|
along with this program; if not, write to the Free Software |
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
|
*/ |
|
|
|
/* This header should be included by any module that needs |
|
to know the implementation details of the check structures |
|
Include stdio.h & list.h before this header |
|
*/ |
|
|
|
/* magic values */ |
|
|
|
enum { |
|
MAXLINE = 9999 /* maximum line no */ |
|
}; |
|
|
|
typedef struct TF { |
|
TFun fn; |
|
const char *name; |
|
} TF; |
|
|
|
struct Suite { |
|
const char *name; |
|
List *tclst; /* List of test cases */ |
|
}; |
|
|
|
struct TCase { |
|
const char *name; |
|
List *tflst; /* list of test functions */ |
|
SFun setup; |
|
SFun teardown; |
|
}; |
|
|
|
typedef struct TestStats { |
|
int n_checked; |
|
int n_failed; |
|
int n_errors; |
|
} TestStats; |
|
|
|
struct TestResult { |
|
int rtype; /* Type of result */ |
|
char *file; /* File where the test occured */ |
|
int line; /* Line number where the test occurred */ |
|
const char *tcname; /* Test case that generated the result */ |
|
const char *tfname; /* Test function that generated the result */ |
|
char *msg; /* Failure message */ |
|
}; |
|
|
|
enum cl_event { |
|
CLSTART_SR, |
|
CLSTART_S, |
|
CLEND_SR, |
|
CLEND_S, |
|
CLEND_T |
|
}; |
|
|
|
typedef void (*LFun) (SRunner *, FILE*, enum print_verbosity, |
|
void *, enum cl_event); |
|
|
|
typedef struct Log { |
|
FILE *lfile; |
|
LFun lfun; |
|
int close; |
|
enum print_verbosity mode; |
|
} Log; |
|
|
|
struct SRunner { |
|
List *slst; |
|
TestStats *stats; |
|
List *resultlst; |
|
char *log_fname; |
|
List *loglst; |
|
}; |
|
|
|
|
|
#endif /* CHECK_IMPL_H */
|
|
|