diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-03-09 12:51:47 +0200 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-03-09 12:51:47 +0200 |
commit | 96d40168383519b6b82a7eb850a558aeb62917e9 (patch) | |
tree | 6971ed35aeb4d895300b6157fe2eee8439993ff0 /tests | |
parent | a9c88f5570f0c124bf977bdc355f079a2e7f4d57 (diff) |
Improve the fuzztest.
Enable -fstack-protector-all to detect any stack smashing bugs. Also
use test_decode3 for maximal vulnerable surface.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/Makefile b/tests/Makefile index 7385fe3..181628a 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -15,8 +15,8 @@ CC_VERSION=$(shell $(CC) -v 2>&1) CFLAGS_CORE= ifneq (,$(findstring gcc,$(CC_VERSION))) CFLAGS_CORE=-pedantic -Wextra -Wcast-qual -Wlogical-op -Wconversion - CFLAGS+=--coverage - LDFLAGS+=--coverage + CFLAGS+=--coverage -fstack-protector-all + LDFLAGS+=--coverage endif ifneq (,$(findstring clang,$(CC_VERSION))) CFLAGS_CORE=-pedantic -Wextra -Wcast-qual -Wconversion @@ -127,5 +127,5 @@ test_options: options.pb.h options.expected options.pb.o fi \ done -run_fuzztest: test_decode2 - bash -c 'I=1; while true; do cat /dev/urandom | ./test_decode2 > /dev/null; I=$$(($$I+1)); echo -en "\r$$I"; done' +run_fuzztest: test_decode3 + bash -c 'ulimit -c unlimited; I=1; while true; do cat /dev/urandom | ./test_decode3 > /dev/null; I=$$(($$I+1)); echo -en "\r$$I"; done' |