mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 02:18:37 +00:00
- Created Makefile.tool-tests.am, put standard AM_CFLAGS et al for tests in it. - A number of tests are shared between Helgrind and DRD. They used to be built in both directories. Now they are only built in helgrind/tests/, and the DRD .vgtest files just point to the executable in helgrind/tests/. Most of these (about 30) had the source files in helgrind/tests/; I moved the three that were in drd/tests/ into helgrind/tests/ for consistency. - Fixed rwlock_test, which was failing to run due to a wrong name in the .vgtest file. - Removed remnants of unused 'hello' test for Memcheck. - Avoided redundant flag specification in various places, esp. memcheck/tests/Makefile.am. - Removed unnecessary _AIX guards in some Linux-only tests. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@9202
27 lines
611 B
Makefile
27 lines
611 B
Makefile
|
|
include $(top_srcdir)/Makefile.tool-tests.am
|
|
|
|
SUBDIRS = .
|
|
if VGCONF_ARCHS_INCLUDE_X86
|
|
SUBDIRS += x86
|
|
endif
|
|
|
|
DIST_SUBDIRS = x86 .
|
|
|
|
noinst_SCRIPTS = filter_stderr filter_cachesim_discards
|
|
|
|
EXTRA_DIST = $(noinst_SCRIPTS) \
|
|
chdir.vgtest chdir.stderr.exp \
|
|
clreq.vgtest clreq.stderr.exp \
|
|
dlclose.vgtest dlclose.stderr.exp dlclose.stdout.exp \
|
|
notpower2.vgtest notpower2.stderr.exp \
|
|
wrap5.vgtest wrap5.stderr.exp wrap5.stdout.exp
|
|
|
|
check_PROGRAMS = \
|
|
chdir clreq dlclose myprint.so
|
|
|
|
# C ones
|
|
dlclose_LDADD = -ldl
|
|
myprint_so_LDFLAGS = $(AM_FLAG_M3264_PRI) -shared -fPIC
|
|
myprint_so_CFLAGS = $(AM_CFLAGS) -fPIC
|