mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
I changed it to just filter the entire stack trace out for these errors (both normal and XML cases). The syscall name is still present in the error string. This allows a one or more alternative expected output files to be removed for several tests, which is A Very Good Thing. Also, I killed filter_test_paths because it was weird and clumsy and the above change obviated most of its use and the remaining effects could be achieved in other ways. Also, I fixed up the scalar* tests a little and they now pass on my machine, (and hopefully at least some other machines) for the first time ever! git-svn-id: svn://svn.valgrind.org/valgrind/trunk@9178
31 lines
581 B
Makefile
31 lines
581 B
Makefile
|
|
# For AM_FLAG_M3264_PRI
|
|
include $(top_srcdir)/Makefile.flags.am
|
|
|
|
noinst_SCRIPTS = \
|
|
filter_addresses \
|
|
filter_discards \
|
|
filter_libc \
|
|
filter_numbers \
|
|
filter_stderr_basic \
|
|
filter_sink \
|
|
os_test \
|
|
platform_test \
|
|
vg_regtest
|
|
|
|
EXTRA_DIST = $(noinst_SCRIPTS)
|
|
|
|
check_PROGRAMS = \
|
|
arch_test \
|
|
toobig-allocs \
|
|
true
|
|
|
|
AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -g $(AM_FLAG_M3264_PRI)
|
|
AM_CXXFLAGS = $(AM_CFLAGS)
|
|
|
|
# generic C ones
|
|
arch_test_CFLAGS = $(AM_CFLAGS) \
|
|
-DVGA_$(VGCONF_ARCH_PRI)=1 \
|
|
-DVGO_$(VGCONF_OS)=1 \
|
|
-DVGP_$(VGCONF_ARCH_PRI)_$(VGCONF_OS)=1
|