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
96
97
98
99
100
|
/*
* (c) 2012 by Pablo Neira Ayuso <pablo@netfilter.org>
*
* Extremely simple test utility for the command line tools.
*
* Based on test-conntrack.c
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <dirent.h>
#define PATH "/usr/sbin"
int main(int argc, char *argv[])
{
int ret, ok = 0, bad = 0, line;
FILE *fp;
DIR *d;
char buf[1024];
struct dirent *dent;
char file[1024];
if (argc < 2) {
fprintf(stderr, "Usage: %s directory\n", argv[0]);
exit(EXIT_FAILURE);
}
d = opendir(argv[1]);
if (d == NULL) {
perror("opendir");
exit(EXIT_FAILURE);
}
setenv("PATH", PATH, 1);
while ((dent = readdir(d)) != NULL) {
sprintf(file, "%s/%s", argv[1], dent->d_name);
line = 0;
fp = fopen(file, "r");
if (fp == NULL) {
perror("cannot find testsuite file");
exit(EXIT_FAILURE);
}
while (fgets(buf, sizeof(buf), fp)) {
char *res;
line++;
if (buf[0] == '#' || buf[0] == ' ')
continue;
res = strchr(buf, ';');
if (!res) {
printf("malformed file %s at line %d\n",
dent->d_name, line);
exit(EXIT_FAILURE);
}
*res = '\0';
res+=2;
printf("(%d) Executing: %s\n", line, buf);
ret = system(buf);
if (WIFEXITED(ret) &&
WEXITSTATUS(ret) == EXIT_SUCCESS) {
if (res[0] == 'O' &&
res[1] == 'K')
ok++;
else {
bad++;
printf("^----- BAD\n");
}
} else {
if (res[0] == 'B' &&
res[1] == 'A' &&
res[2] == 'D')
ok++;
else {
bad++;
printf("^----- BAD\n");
}
}
printf("=====\n");
}
fclose(fp);
}
closedir(d);
fprintf(stdout, "OK: %d BAD: %d\n", ok, bad);
}
|