Menu

[r1129]: / advanced / src / test / test.h  Maximize  Restore  History

Download this file

96 lines (72 with data), 2.2 kB

 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#include <stdlib.h>
#include <stdio.h>
#include "xmlrpc-c/util.h"
extern int total_tests;
extern int total_failures;
/* This is a good place to set a breakpoint. */
static __inline__ void
test_failure(const char * const file,
unsigned int const line,
const char * const label,
const char * const statement) {
++total_failures;
printf("\n%s:%u: test failure: %s (%s)\n", file, line, label, statement);
abort();
}
#define TEST(statement) \
do { \
++total_tests; \
if ((statement)) { \
printf("."); \
} else { \
test_failure(__FILE__, __LINE__, "expected", #statement); \
} \
} while (0)
#define TEST_NO_FAULT(env) \
do { \
++total_tests; \
if (!(env)->fault_occurred) { \
printf("."); \
} else { \
test_failure(__FILE__, __LINE__, "fault occurred", \
(env)->fault_string); \
} \
} while (0)
static inline void
test_fault(xmlrpc_env * const envP,
int const expectedCode,
const char * const fileName,
unsigned int const lineNumber) {
++total_tests;
if (!envP->fault_occurred)
test_failure(fileName, lineNumber, "no fault occurred", "");
else if (envP->fault_code != expectedCode)
test_failure(fileName, lineNumber, "wrong fault occurred",
envP->fault_string);
else
printf(".");
xmlrpc_env_clean(envP);
xmlrpc_env_init(envP);
}
#define TEST_FAULT(envP, code) \
do { test_fault(envP, code, __FILE__, __LINE__); } while(0)
;
static inline void
test_null_string(const char * const string,
const char * const fileName,
unsigned int const lineNumber) {
++total_tests;
if (string != NULL)
test_failure(fileName, lineNumber, "string not null", string);
else
printf(".");
}
#define TEST_NULL_STRING(string) \
do { test_null_string(string, __FILE__, __LINE__); } while(0)
;
#define TEST_ERROR(reason) \
do { \
printf("Unable to test at %s/%u. %s", __FILE__, __LINE__, reason); \
abort(); \
} while (0)
;
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.