summaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-10 16:51:12 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-10 16:54:53 +0300
commit8209297f0cde69559f751eb3614584e69d834a2a (patch)
tree7192c16b9dd32790822d725e5ba692cb50df70ad /test/Makefile
parent77fd4910981d22cb1364c134454bf640e885c81b (diff)
downloadparanucker-8209297f0cde69559f751eb3614584e69d834a2a.tar.gz
paranucker-8209297f0cde69559f751eb3614584e69d834a2a.tar.bz2
paranucker-8209297f0cde69559f751eb3614584e69d834a2a.tar.xz
paranucker-8209297f0cde69559f751eb3614584e69d834a2a.zip
Add test 6.
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile
index 3ecddb3..6164dfd 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,4 +1,4 @@
-.PHONY: test1 test2 test3 test4 test5 crashtest1 crashtest2 all crashes clean
+.PHONY: test1 test2 test3 test4 test5 test6 crashtest1 crashtest2 all crashes clean
.NOTPARALLEL: all allcrash
CC := gcc-5
@@ -7,7 +7,7 @@ CXX := g++-5
PLUGIN = ../build/src/.libs/astdumper.so
CMD = LANG=C ${CXX} -c -fplugin=${PLUGIN} -fplugin-arg-astdumper-command=${1} ${2} -o a.out 2>${3}
-all: test1 test2 test3 test4 test5 clean
+all: test1 test2 test3 test4 test5 test6 clean
crashes: crashtest1 crashtest2 clean
clean:
@@ -33,6 +33,10 @@ test5:
$(call CMD,findargs,test5.c,test5-02.txt)
$(call CMD,detectnullpointers,test5.c,test5-03.txt)
$(call CMD,dumpunsupported,test5.c,test5-04.txt)
+test6:
+ $(call CMD,dump,test6.c,test6-01.txt)
+ $(call CMD,dumpunsupported,test6.c,test6-02.txt)
+ $(call CMD,detectnullpointers,test6.c,test6-03.txt)
crashtest1:
$(call CMD,dump,crashtest1.h,crashtest1-01.txt)