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
22 lines
612 B
Makefile
22 lines
612 B
Makefile
noinst_SCRIPTS = filter_stderr
|
|
|
|
noinst_HEADERS = scalar.h
|
|
|
|
EXTRA_DIST = $(noinst_SCRIPTS) \
|
|
scalar.stderr.exp scalar.vgtest \
|
|
scalar_fork.stderr.exp scalar_fork.vgtest \
|
|
scalar_exit_group.stderr.exp \
|
|
scalar_exit_group.vgtest \
|
|
scalar_supp.stderr.exp \
|
|
scalar_supp.vgtest scalar_supp.supp \
|
|
scalar_vfork.stderr.exp scalar_vfork.vgtest
|
|
|
|
check_PROGRAMS = \
|
|
scalar scalar_exit_group scalar_fork scalar_supp scalar_vfork
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include
|
|
AM_CFLAGS = $(WERROR) @FLAG_M32@ -Winline -Wall -Wshadow -g \
|
|
$(FLAG_MMMX) $(FLAG_MSSE)
|
|
AM_CXXFLAGS = $(AM_CFLAGS)
|
|
AM_CCASFLAGS = @FLAG_M32@
|