aboutsummaryrefslogtreecommitdiffstats
path: root/capstone/suite/cstest/include/capstone_test.h
blob: 5936678f0d6296a99e6d3ab356cbdda623dac560 (plain)
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
/* Capstone testing regression */
/* By Do Minh Tuan <tuanit96@gmail.com>, 02-2019 */


#ifndef CAPSTONE_TEST_H
#define CAPSTONE_TEST_H

#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
#include <stdlib.h>
#include <string.h>
#include <capstone/capstone.h>
#include "helper.h"
#include "factory.h"

#define cs_assert_err(expect, err)									\
	do {																\
		cs_err __err = err;												\
		if (__err != expect) {											\
			fail_msg("%s",cs_strerror(__err));							\
		}																\
	} while (0)


#define cs_assert_success(err) cs_assert_err(CS_ERR_OK, err)


#define cs_assert_fail(err)											\
	do {																\
		cs_err __err = err;												\
		if (__err == CS_ERR_OK) {										\
			fail_msg("%s",cs_strerror(__err));							\
		}																\
	} while (0)

#define NUMARCH 10
#define NUMMODE 35
#define NUMOPTION 41
#define MAXMEM 1024

typedef struct {
	const char *str;
	unsigned int value;
} single_dict;

typedef struct {
	const char *str;
	unsigned int first_value;
	unsigned int second_value;
} double_dict;

extern char *(*function)(csh *, cs_mode, cs_insn*);

int get_index(double_dict d[], unsigned size, const char *str);
int get_value(single_dict d[], unsigned size, const char *str);
void test_single_MC(csh *handle, int mc_mode, char *line);
void test_single_issue(csh *handle, cs_mode mode, char *line, int detail);
int set_function(int arch);

#endif /* CAPSTONE_TEST_H */