mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 10:05:29 +00:00
GCC12 catches various issues in tests at compile time that we want to catch at runtime. Also glibc 2.34 deprecated various mallinfo related functions. Add the relevant -Wno-foobar flags to those tests. In one case, unit_oset.c, the warning was correct and the uninitialized variable was explicitly set.
32 lines
677 B
Makefile
32 lines
677 B
Makefile
|
|
include $(top_srcdir)/Makefile.tool-tests.am
|
|
|
|
dist_noinst_SCRIPTS = filter_stderr filter_copy
|
|
|
|
EXTRA_DIST = \
|
|
acc.stderr.exp acc.vgtest \
|
|
ad-hoc.stderr.exp ad-hoc.vgtest \
|
|
basic.stderr.exp basic.vgtest \
|
|
big.stderr.exp big.vgtest \
|
|
copy.stderr.exp copy.vgtest \
|
|
empty.stderr.exp empty.vgtest \
|
|
sig.stderr.exp sig.vgtest \
|
|
single.stderr.exp single.vgtest
|
|
|
|
check_PROGRAMS = \
|
|
acc \
|
|
ad-hoc \
|
|
basic \
|
|
big \
|
|
copy \
|
|
empty \
|
|
sig \
|
|
single
|
|
|
|
AM_CFLAGS += $(AM_FLAG_M3264_PRI)
|
|
AM_CXXFLAGS += $(AM_FLAG_M3264_PRI)
|
|
|
|
# We don't care about uninitialized or unused malloc results
|
|
basic_CFLAGS = $(AM_CFLAGS) -Wno-uninitialized
|
|
big_CFLAGS = $(AM_CFLAGS) -Wno-unused-result
|