summaryrefslogtreecommitdiff
path: root/test/Makefile
blob: ac84e787f882ac0addc4f5447421e15f70eabb0b (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
.PHONY: test1 test2 test3 test4 crashtest1 crashtest2 all crashes clean
.NOTPARALLEL: all allcrash

CC := gcc-5
CXX := g++-5

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

all: test1 test2 test3 test4 clean
crashes: crashtest1 crashtest2 clean

clean:
	@rm a.out 2>/dev/null || true

test1:
	$(call CMD,dump,test1.c,test1-01.txt)
test2:
	$(call CMD,smalldump,test1.c,test1-02.txt)
test3:
	$(call CMD,memoryusage,test1.c,test1-03.txt)
test4:
	$(call CMD,dumpunsupported,test1.c,test1-04.txt)

crashtest1:
	$(call CMD,dump,crashtest1.h,crashtest1-01.txt)
crashtest2:
	$(call CMD,dump,crashtest2.h,crashtest2-01.txt)