1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
/*
* libstatgrab
* https://libstatgrab.org
* Copyright (C) 2003-2004 Peter Saunders
* Copyright (C) 2003-2019 Tim Bishop
* Copyright (C) 2003-2013 Adam Sampson
* Copyright (C) 2012-2019 Jens Rehsack
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
#ifndef __SG_TESTLIB_H_INCLUDED__
#define __SG_TESTLIB_H_INCLUDED__
/* routines.c */
typedef void * (*statgrab_stat_fn)(size_t *entries);
struct statgrab_testfuncs
{
char const *stat_name;
char const * full_name;
statgrab_stat_fn full_fn;
char const * diff_name;
statgrab_stat_fn diff_fn;
unsigned needed;
unsigned succeeded;
unsigned done;
};
struct statgrab_testfuncs *get_testable_functions(size_t *entries);
size_t funcnames_to_indices(const char *name_list, size_t **indices, int full);
void print_testable_functions(int full);
size_t report_testable_functions(int full);
void mark_func(size_t func_index);
int run_func(size_t func_index, int full);
void done_func(size_t func_index, int succeeded);
/* err.c */
int sg_warn(const char *prefix);
void sg_die(const char *prefix, int exit_code);
void die(int error, const char *fmt, ...);
/* opt.c */
enum opt_type {
opt_flag = 0,
opt_bool,
opt_signed,
opt_unsigned,
opt_str
};
struct opt_def {
char optchr;
enum opt_type opttype;
union {
long int s;
unsigned long int u;
bool b;
char *str;
} optarg;
};
int get_params(struct opt_def *opt_defs, int argc, char **argv);
#endif /* ?__SG_TESTLIB_H_INCLUDED__ */
|