rsp_regr_vu_ins_ext.c 1.95 KB
#include <sys/types.h>
#include <sys/sbd.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <sys/sema.h>
#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 vextn();
int vextq();
int vextt();
int vinsn();
int vinsq();
int vinst();

/*
 * An array of tests, each of which corresponds to a separate menu
 * item callable from the master ide menu.
 */
static TEST_REF TestRefs[] = {
  {"vextn", 			RSP_TEST_BASE+0, vextn},
  {"vextq", 			RSP_TEST_BASE+1, vextq},
  {"vextt", 			RSP_TEST_BASE+2, vextt},
  {"vinsn", 			RSP_TEST_BASE+3, vinsn},
  {"vinsq", 			RSP_TEST_BASE+4, vinsq},
  {"vinst", 			RSP_TEST_BASE+5, vinst},
    {"",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_vu_ins_ext(void) {rsp_regr(TestRefs);}

/*
 * Tests
 */

int vextn() {return generic_rsp_regression("tests/vextn");}
int vextq() {return generic_rsp_regression("tests/vextq");}
int vextt() {return generic_rsp_regression("tests/vextt");}
int vinsn() {return generic_rsp_regression("tests/vinsn");}
int vinsq() {return generic_rsp_regression("tests/vinsq");}
int vinst() {return generic_rsp_regression("tests/vinst");}