blob: ecdd01a4d693891b0fe4d4687db3ae5cb320aced [file] [log] [blame]
sewardj01262142006-01-04 01:20:28 +00001
njn53044572009-02-19 09:52:05 +00002include $(top_srcdir)/Makefile.tool-tests.am
sewardj01262142006-01-04 01:20:28 +00003
njn8b68b642009-06-24 00:37:09 +00004dist_noinst_SCRIPTS = filter_stderr filter_verbose
nethercotec9f36922004-02-14 16:40:02 +00005
njn8b68b642009-06-24 00:37:09 +00006EXTRA_DIST = \
njn734b8052007-11-01 04:40:37 +00007 alloc-fns-A.post.exp alloc-fns-A.stderr.exp alloc-fns-A.vgtest \
8 alloc-fns-B.post.exp alloc-fns-B.stderr.exp alloc-fns-B.vgtest \
9 basic.post.exp basic.stderr.exp basic.vgtest \
njn1a2741a2007-11-26 21:59:04 +000010 basic2.post.exp basic2.stderr.exp basic2.vgtest \
njn734b8052007-11-01 04:40:37 +000011 big-alloc.post.exp big-alloc.stderr.exp big-alloc.vgtest \
12 deep-A.post.exp deep-A.stderr.exp deep-A.vgtest \
13 deep-B.post.exp deep-B.stderr.exp deep-B.vgtest \
14 deep-C.post.exp deep-C.stderr.exp deep-C.vgtest \
15 deep-D.post.exp deep-D.stderr.exp deep-D.vgtest \
16 culling1.stderr.exp culling1.vgtest \
17 culling2.stderr.exp culling2.vgtest \
njn466ed6e2009-02-18 05:14:44 +000018 custom_alloc.post.exp custom_alloc.stderr.exp custom_alloc.vgtest \
njnf6b00762009-04-17 04:26:41 +000019 ignored.post.exp ignored.stderr.exp ignored.vgtest \
njn734b8052007-11-01 04:40:37 +000020 ignoring.post.exp ignoring.stderr.exp ignoring.vgtest \
njnf6b00762009-04-17 04:26:41 +000021 insig.post.exp insig.stderr.exp insig.vgtest \
njnb11e5aa2008-01-20 22:30:52 +000022 long-names.post.exp long-names.stderr.exp long-names.vgtest \
njn734b8052007-11-01 04:40:37 +000023 long-time.post.exp long-time.stderr.exp long-time.vgtest \
njn8b140de2009-02-17 04:31:18 +000024 malloc_usable.stderr.exp malloc_usable.vgtest \
njn734b8052007-11-01 04:40:37 +000025 new-cpp.post.exp new-cpp.stderr.exp new-cpp.vgtest \
26 no-stack-no-heap.post.exp no-stack-no-heap.stderr.exp no-stack-no-heap.vgtest \
27 null.post.exp null.stderr.exp null.vgtest \
njn88d560f2009-05-21 03:36:21 +000028 one.post.exp one.post.exp2 one.stderr.exp one.vgtest \
njn734b8052007-11-01 04:40:37 +000029 overloaded-new.post.exp overloaded-new.stderr.exp overloaded-new.vgtest \
njn734b8052007-11-01 04:40:37 +000030 peak.post.exp peak.stderr.exp peak.vgtest \
31 peak2.post.exp peak2.stderr.exp peak2.vgtest \
32 realloc.post.exp realloc.stderr.exp realloc.vgtest \
33 thresholds_0_0.post.exp thresholds_0_0.stderr.exp thresholds_0_0.vgtest \
34 thresholds_0_10.post.exp thresholds_0_10.stderr.exp thresholds_0_10.vgtest \
35 thresholds_10_0.post.exp thresholds_10_0.stderr.exp thresholds_10_0.vgtest \
36 thresholds_5_0.post.exp thresholds_5_0.stderr.exp thresholds_5_0.vgtest \
37 thresholds_5_10.post.exp thresholds_5_10.stderr.exp thresholds_5_10.vgtest \
38 thresholds_10_10.post.exp thresholds_10_10.stderr.exp thresholds_10_10.vgtest \
njn466ed6e2009-02-18 05:14:44 +000039 zero1.post.exp zero1.stderr.exp zero1.vgtest \
njn734b8052007-11-01 04:40:37 +000040 zero2.post.exp zero2.stderr.exp zero2.vgtest
nethercotec9f36922004-02-14 16:40:02 +000041
njn7ce83112005-08-24 22:38:00 +000042check_PROGRAMS = \
njn734b8052007-11-01 04:40:37 +000043 alloc-fns \
44 basic \
45 big-alloc \
46 culling1 culling2 \
47 custom_alloc \
48 deep \
njnf6b00762009-04-17 04:26:41 +000049 ignored \
njn734b8052007-11-01 04:40:37 +000050 ignoring \
51 insig \
njnb11e5aa2008-01-20 22:30:52 +000052 long-names \
njn734b8052007-11-01 04:40:37 +000053 long-time \
njn8b140de2009-02-17 04:31:18 +000054 malloc_usable \
njn734b8052007-11-01 04:40:37 +000055 new-cpp \
56 null \
57 one \
58 overloaded-new \
59 peak \
60 realloc \
61 thresholds \
62 zero
63
njn07891f92009-02-22 23:38:10 +000064AM_CFLAGS += $(AM_FLAG_M3264_PRI)
65AM_CXXFLAGS += $(AM_FLAG_M3264_PRI)
66
njn734b8052007-11-01 04:40:37 +000067# C++ tests
68new_cpp_SOURCES = new-cpp.cpp
69overloaded_new_SOURCES = overloaded-new.cpp
njn7ce83112005-08-24 22:38:00 +000070