summaryrefslogtreecommitdiff
path: root/test/Makefile
blob: 39044f57a50b14a5c6d3a00af4ded232469a0c5e (plain) (blame)
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
111
112
113
114
115
116
117
CRASHES = crashtest1 crashtest2 crashtest3 crashtest4
TESTS1 = test1-01 test1-02 test1-03 test1-04
TESTS2 = test2-01 test2-02
TESTS3 = test3-01 test3-02
TESTS4 = test4-01 test4-02 test4-03
TESTS5 = test5-01 test5-02 test5-03 test5-04 test5-05
TESTS6 = test6-01 test6-02 test6-03 test6-04
TESTS7 = test7-01 test7-02 test7-03 test7-04 test7-05
TESTS8 = test8-01 test8-02 test8-03 test8-04
TESTS9 = test9-01 test9-02 test9-03 test9-04
ALLTESTS = test1 test2 test3 test4 test5 test6 test7 test8 test9 ${TESTS1} ${TESTS2} ${TESTS3} ${TESTS4} ${TESTS5} ${TESTS6} ${TESTS7} ${TESTS8} ${TESTS9}

.PHONY: ${ALLTESTS} ${CRASHES} all crashes

CC := gcc-5
CXX := g++-5
MAKEFLAGS += --jobs=9

PLUGIN = ../build/src/.libs/astdumper.so
CMD = LANG=C ${CXX} -c -fplugin=${PLUGIN} -fplugin-arg-astdumper-command=${1} ${2} -o ../build/${3}.out 2>${3}

all: ${ALLTESTS} ${CRASHES}
tests: ${ALLTESTS}
crashes: ${CRASHES}

test1: ${TESTS1}
test1-01:
	$(call CMD,dump,test1.c,test1-01.txt)
test1-02:
	$(call CMD,smalldump,test1.c,test1-02.txt)
test1-03:
	$(call CMD,memoryusage,test1.c,test1-03.txt)
test1-04:
	$(call CMD,dumpunsupported,test1.c,test1-04.txt)

test2: ${TESTS2}
test2-01:
	$(call CMD,dump,test2.c,test2-01.txt)
test2-02:
	$(call CMD,findargs,test2.c,test2-02.txt)

test3: ${TESTS3}
test3-01:
	$(call CMD,dump,test3.c,test3-01.txt)
test3-02:
	$(call CMD,findargs,test3.c,test3-02.txt)

test4: ${TESTS4}
test4-01:
	$(call CMD,dump,test4.c,test4-01.txt)
test4-02:
	$(call CMD,findargs,test4.c,test4-02.txt)
test4-03:
	$(call CMD,detectnullpointers,test4.c,test4-03.txt)

test5: ${TESTS5}
test5-01:
	$(call CMD,dump,test5.c,test5-01.txt)
test5-02:
	$(call CMD,findargs,test5.c,test5-02.txt)
test5-03:
	$(call CMD,detectnullpointers,test5.c,test5-03.txt)
test5-04:
	$(call CMD,dumpunsupported,test5.c,test5-04.txt)
test5-05:
	$(call CMD,dumpnullpointers,test5.c,test5-05.txt)

test6: ${TESTS6}
test6-01:
	$(call CMD,dump,test6.c,test6-01.txt)
test6-02:
	$(call CMD,dumpunsupported,test6.c,test6-02.txt)
test6-03:
	$(call CMD,detectnullpointers,test6.c,test6-03.txt)
test6-04:
	$(call CMD,dumpnullpointers,test6.c,test6-04.txt)

test7: ${TESTS7}
test7-01:
	$(call CMD,dump,test7.cpp,test7-01.txt)
test7-02:
	$(call CMD,smalldump,test7.cpp,test7-02.txt)
test7-03:
	$(call CMD,findargs,test7.cpp,test7-03.txt)
test7-04:
	$(call CMD,detectnullpointers,test7.cpp,test7-04.txt)
test7-05:
	$(call CMD,dumpnullpointers,test7.cpp,test7-05.txt)

test8: ${TESTS8}
test8-01:
	$(call CMD,dump,test8.cpp,test8-01.txt)
test8-02:
	$(call CMD,findargs,test8.cpp,test8-02.txt)
test8-03:
	$(call CMD,dumpnullpointers,test8.cpp,test8-03.txt)
test8-04:
	$(call CMD,detectnullpointers,test8.cpp,test8-04.txt)

test9: ${TESTS9}
test9-01:
	$(call CMD,dump,test9.cpp,test9-01.txt)
test9-02:
	$(call CMD,findargs,test9.cpp,test9-02.txt)
test9-03:
	$(call CMD,dumpnullpointers,test9.cpp,test9-03.txt)
test9-04:
	$(call CMD,detectnullpointers,test9.cpp,test9-04.txt)

crashtest1:
	$(call CMD,dump,crashtest1.h,crashtest1-01.txt)
crashtest2:
	$(call CMD,dump,crashtest2.h,crashtest2-01.txt)
crashtest3:
	$(call CMD,findargs,crashtest3.h,crashtest3-01.txt)
crashtest4:
	$(call CMD,dump,crashtest4.cpp,crashtest4-01.txt)