test.h revision 363466
1/*
2 * Copyright (c) 2000-2001 Proofpoint, Inc. and its suppliers.
3 *	All rights reserved.
4 *
5 * By using this file, you agree to the terms and conditions set
6 * forth in the LICENSE file which can be found at the top level of
7 * the sendmail distribution.
8 *
9 *	$Id: test.h,v 1.7 2013-11-22 20:51:32 ca Exp $
10 */
11
12/*
13**  Abstractions for writing a libsm test program.
14*/
15
16#ifndef SM_TEST_H
17# define SM_TEST_H
18
19# include <sm/gen.h>
20
21# if defined(__STDC__) || defined(__cplusplus)
22#  define SM_TEST(cond) sm_test(cond, #cond, __FILE__, __LINE__)
23# else
24#  define SM_TEST(cond) sm_test(cond, "cond", __FILE__, __LINE__)
25# endif
26
27extern int SmTestIndex;
28extern int SmTestNumErrors;
29
30extern void
31sm_test_begin __P((
32	int _argc,
33	char **_argv,
34	char *_testname));
35
36extern bool
37sm_test __P((
38	bool _success,
39	char *_expr,
40	char *_filename,
41	int _lineno));
42
43extern int
44sm_test_end __P((void));
45
46#endif /* ! SM_TEST_H */
47