rsp_regr_su_cp2.c
3.05 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#include <sys/types.h>
#ifdef __sgi__
#include <sys/sbd.h>
#endif
#include <sys/stat.h>
#include <sys/mman.h>
#ifdef __sgi__
#include <sys/sema.h>
#endif
#include <netinet/in.h>
#include <errno.h>
#include <stdio.h>
#include <fcntl.h>
#include <stdlib.h>
#include <getopt.h>
#include <rcp.h>
#include <rsp.h>
/* From $ROOT/usr/include/ide, which is installed from PR/diags/include */
#include "diag.h"
#include "dbg_comm.h"
#define RSP_TEST_BASE 001
static int NumFailures = 0;
/* From rsp_regr_common.c: */
extern int generic_rsp_regression (const char *file_name);
extern void imem_init(FILE *file_p);
extern int rsp_regrInit();
extern int rsp_regrDo(TEST_REF *test_ref);
extern int rsp_regr(TEST_REF TestRefs[]);
int cfc21();
int cfc22();
int ctc21();
int ctc22();
int mfc21();
int mfc22();
int mfc23();
int mfc24();
int mfc25();
int mfc26();
int mtc21();
int mtc22();
int mtc23();
int mtc24();
int mtc25();
int mtc26();
/*
* An array of tests, each of which corresponds to a separate menu
* item callable from the master ide menu.
*/
static TEST_REF TestRefs[] = {
{"cfc21", RSP_TEST_BASE+0, cfc21},
{"cfc22", RSP_TEST_BASE+1, cfc22},
{"ctc21", RSP_TEST_BASE+2, ctc21},
{"ctc22", RSP_TEST_BASE+3, ctc22},
{"mfc21", RSP_TEST_BASE+4, mfc21},
{"mfc22", RSP_TEST_BASE+5, mfc22},
{"mfc23", RSP_TEST_BASE+6, mfc23},
{"mfc24", RSP_TEST_BASE+7, mfc24},
{"mfc25", RSP_TEST_BASE+8, mfc25},
{"mfc26", RSP_TEST_BASE+9, mfc26},
{"mtc21", RSP_TEST_BASE+10, mtc21},
{"mtc22", RSP_TEST_BASE+11, mtc22},
{"mtc23", RSP_TEST_BASE+12, mtc23},
{"mtc24", RSP_TEST_BASE+13, mtc24},
{"mtc25", RSP_TEST_BASE+14, mtc25},
{"mtc26", RSP_TEST_BASE+15, mtc26},
{"",0,0}
};
static int failed_tests[512];
/*
* diagnostic entry point:
*
* Each separately invokable ide diagnostic command corresponds to an
* independent ".c" module; the entry point herein must match
* the test name as specified in the rspcmd.awk script. These command
* names correspond to the names you see from the ide menu. For this
* module, there will be an ide command "rsp_regr".
*/
int rsp_regr_su_cp2(void) {rsp_regr(TestRefs);}
/*
* Tests
*/
int cfc21() {return generic_rsp_regression("tests/cfc21");}
int cfc22() {return generic_rsp_regression("tests/cfc22");}
int ctc21() {return generic_rsp_regression("tests/ctc21");}
int ctc22() {return generic_rsp_regression("tests/ctc22");}
int mfc21() {return generic_rsp_regression("tests/mfc21");}
int mfc22() {return generic_rsp_regression("tests/mfc22");}
int mfc23() {return generic_rsp_regression("tests/mfc23");}
int mfc24() {return generic_rsp_regression("tests/mfc24");}
int mfc25() {return generic_rsp_regression("tests/mfc25");}
int mfc26() {return generic_rsp_regression("tests/mfc26");}
int mtc21() {return generic_rsp_regression("tests/mtc21");}
int mtc22() {return generic_rsp_regression("tests/mtc22");}
int mtc23() {return generic_rsp_regression("tests/mtc23");}
int mtc24() {return generic_rsp_regression("tests/mtc24");}
int mtc25() {return generic_rsp_regression("tests/mtc25");}
int mtc26() {return generic_rsp_regression("tests/mtc26");}