mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-08 21:09:49 +00:00
- Rewrote tests/cputest.c so that it can apply to different kinds of processors. The idea being that any arch-specific tests have a cpu_test: label in their .vgtest file, so they'll only get executed if the right machine is being used. - Rewrote a bunch of .vgtest files accordingly. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2802
28 lines
479 B
Makefile
28 lines
479 B
Makefile
|
|
SUBDIRS = . unused
|
|
|
|
noinst_SCRIPTS = \
|
|
vg_regtest \
|
|
filter_addresses \
|
|
filter_discards \
|
|
filter_numbers \
|
|
filter_stderr_basic \
|
|
filter_test_paths
|
|
|
|
EXTRA_DIST = $(noinst_SCRIPTS)
|
|
|
|
check_PROGRAMS = \
|
|
cputest \
|
|
toobig-allocs \
|
|
true
|
|
|
|
AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -g
|
|
AM_CXXFLAGS = $(AM_CFLAGS)
|
|
|
|
# generic C ones
|
|
cputest_SOURCES = cputest.c
|
|
cputest_CFLAGS = $(AM_CFLAGS) -D__$(VG_ARCH)__
|
|
toobig_allocs_SOURCES = toobig-allocs.c
|
|
true_SOURCES = true.c
|
|
|