mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-13 14:42:03 +00:00
which had none previously. They all run tests/true (added as well), just to automatically catch any total b0rkage errors. Also fixed up filter_stderr_basic to account for changes to startup message; my changes from yesterday broke all the --stable tests. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1179
28 lines
394 B
Makefile
28 lines
394 B
Makefile
|
|
SUBDIRS = . unused
|
|
|
|
bin_SCRIPTS = \
|
|
vg_regtest
|
|
|
|
noinst_SCRIPTS = \
|
|
filter_addresses \
|
|
filter_discards \
|
|
filter_stderr_basic \
|
|
filter_test_paths
|
|
|
|
noinst_PROGRAMS = \
|
|
true
|
|
|
|
CFLAGS = $(WERROR) -Winline -Wall -Wshadow -g
|
|
CXXFLAGS = $(CFLAGS)
|
|
|
|
# generic C ones
|
|
true_SOURCES = true.c
|
|
|
|
EXTRA_DIST = \
|
|
$(noinst_SCRIPTS) \
|
|
blocked_syscall.c \
|
|
clientperm.c \
|
|
clientstackperm.c \
|
|
discard.c
|