1 2include $(top_srcdir)/Makefile.tool-tests.am 3 4dist_noinst_SCRIPTS = filter_stderr filter_verbose 5 6EXTRA_DIST = \ 7 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 \ 10 basic2.post.exp basic2.stderr.exp basic2.vgtest \ 11 big-alloc.post.exp big-alloc.post.exp-64bit \ 12 big-alloc.stderr.exp big-alloc.vgtest \ 13 deep-A.post.exp deep-A.stderr.exp deep-A.vgtest \ 14 deep-B.post.exp deep-B.stderr.exp deep-B.vgtest \ 15 deep-C.post.exp deep-C.stderr.exp deep-C.vgtest \ 16 deep-D.post.exp deep-D.stderr.exp deep-D.vgtest \ 17 culling1.stderr.exp culling1.vgtest \ 18 culling2.stderr.exp culling2.vgtest \ 19 custom_alloc.post.exp custom_alloc.stderr.exp custom_alloc.vgtest \ 20 ignored.post.exp ignored.stderr.exp ignored.vgtest \ 21 ignoring.post.exp ignoring.stderr.exp ignoring.vgtest \ 22 insig.post.exp insig.stderr.exp insig.vgtest \ 23 long-names.post.exp long-names.stderr.exp long-names.vgtest \ 24 long-time.post.exp long-time.stderr.exp long-time.vgtest \ 25 malloc_usable.stderr.exp malloc_usable.vgtest \ 26 new-cpp.post.exp new-cpp.stderr.exp new-cpp.vgtest \ 27 no-stack-no-heap.post.exp no-stack-no-heap.stderr.exp no-stack-no-heap.vgtest \ 28 null.post.exp null.stderr.exp null.vgtest \ 29 one.post.exp one.post.exp2 one.stderr.exp one.vgtest \ 30 overloaded-new.post.exp overloaded-new.stderr.exp overloaded-new.vgtest \ 31 pages_as_heap.stderr.exp pages_as_heap.vgtest \ 32 peak.post.exp peak.stderr.exp peak.vgtest \ 33 peak2.post.exp peak2.stderr.exp peak2.vgtest \ 34 realloc.post.exp realloc.stderr.exp realloc.vgtest \ 35 thresholds_0_0.post.exp thresholds_0_0.stderr.exp thresholds_0_0.vgtest \ 36 thresholds_0_10.post.exp thresholds_0_10.stderr.exp thresholds_0_10.vgtest \ 37 thresholds_10_0.post.exp thresholds_10_0.stderr.exp thresholds_10_0.vgtest \ 38 thresholds_5_0.post.exp thresholds_5_0.stderr.exp thresholds_5_0.vgtest \ 39 thresholds_5_10.post.exp thresholds_5_10.stderr.exp thresholds_5_10.vgtest \ 40 thresholds_10_10.post.exp thresholds_10_10.stderr.exp thresholds_10_10.vgtest \ 41 zero1.post.exp zero1.stderr.exp zero1.vgtest \ 42 zero2.post.exp zero2.stderr.exp zero2.vgtest 43 44check_PROGRAMS = \ 45 alloc-fns \ 46 basic \ 47 big-alloc \ 48 culling1 culling2 \ 49 custom_alloc \ 50 deep \ 51 ignored \ 52 ignoring \ 53 insig \ 54 long-names \ 55 long-time \ 56 malloc_usable \ 57 new-cpp \ 58 null \ 59 one \ 60 overloaded-new \ 61 pages_as_heap \ 62 peak \ 63 realloc \ 64 thresholds \ 65 zero 66 67AM_CFLAGS += $(AM_FLAG_M3264_PRI) 68AM_CXXFLAGS += $(AM_FLAG_M3264_PRI) 69 70# C++ tests 71new_cpp_SOURCES = new-cpp.cpp 72overloaded_new_SOURCES = overloaded-new.cpp 73 74