summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-08-08 17:46:02 +0300
committerAndrei Karas <akaras@inbox.ru>2015-08-08 17:46:02 +0300
commit7dfde2c28d373ba66404db959fea255e82e93e7c (patch)
tree01dd0ed076a83af226a43f7ea967b3ec426e1a76
parent0ad1e8efbd7e4b467d93568136e7beafe1e23fb5 (diff)
downloadparanucker-7dfde2c28d373ba66404db959fea255e82e93e7c.tar.gz
paranucker-7dfde2c28d373ba66404db959fea255e82e93e7c.tar.bz2
paranucker-7dfde2c28d373ba66404db959fea255e82e93e7c.tar.xz
paranucker-7dfde2c28d373ba66404db959fea255e82e93e7c.zip
Update test43.
-rw-r--r--test/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile
index b097a0a..13b6ab8 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -3,6 +3,7 @@ S2 = 01 02
S3 = 01 02 03
S4 = 01 02 03 04
S5 = 01 02 03 04 05
+S6 = 01 02 03 04 05 06
CRASHES = crashtest01 crashtest02 crashtest03 crashtest4
TESTS01 = $(call TEST,01,4)
TESTS02 = $(call TEST,02,2)
@@ -46,7 +47,7 @@ TESTS39 = $(call TEST,39,5)
TESTS40 = $(call TEST,40,5)
TESTS41 = $(call TEST,41,5)
TESTS42 = $(call TEST,42,5)
-TESTS43 = $(call TEST,43,5)
+TESTS43 = $(call TEST,43,6)
TESTNUMBERS = 01 02 03 04 05 06 07 08 09 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
ALLTESTS = $(foreach num,$(TESTNUMBERS),test$(num) ${TESTS$(num)})
@@ -59,7 +60,7 @@ MAKEFLAGS += --jobs=9
PLUGINXX = ../cxxparanucker.so
PLUGIN = ../paranucker.so
-CMDXX = LANG=C ${CXX} -c ${4} -fplugin=${PLUGINXX} -fplugin-arg-cxxparanucker-command=${1} ${2} -o ../build/${3}.out 2>${3}
+CMDXX = LANG=C ${CXX} -c -fplugin=${PLUGINXX} -fplugin-arg-cxxparanucker-command=${1} ${4} ${2} -o ../build/${3}.out 2>${3}
CMD = LANG=C ${CC} -c ${4} -fplugin=${PLUGIN} -fplugin-arg-paranucker-command=${1} ${2} -o ../build/${3}.out 2>${3}
all: ${ALLTESTS} ${CRASHES}
@@ -537,6 +538,8 @@ test43-04:
$(call CMDXX,detectnullpointers,test43.cpp,test43-04.txt,-std=c++0x)
test43-05:
$(call CMDXX,detectnullpointers,test43.cpp,test43-05.txt,-O2 -std=c++0x -Wall -Wnonnull)
+test43-06:
+ $(call CMDXX,detectnullpointers,test43.cpp,test43-06.txt,-fplugin-arg-cxxparanucker-specialdump=test43.cpp -std=c++0x)
crashtest01:
$(call CMDXX,dump,crashtest01.h,crashtest01-01.txt)