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 big-alloc.post.exp-ppc64 \ 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 deep-D.post.exp-ppc64 \ 18 culling1.stderr.exp culling1.vgtest \ 19 culling2.stderr.exp culling2.vgtest \ 20 custom_alloc.post.exp custom_alloc.stderr.exp custom_alloc.vgtest \ 21 ignored.post.exp ignored.stderr.exp ignored.vgtest \ 22 ignoring.post.exp ignoring.stderr.exp ignoring.vgtest \ 23 insig.post.exp insig.stderr.exp insig.vgtest \ 24 long-names.post.exp long-names.stderr.exp long-names.vgtest \ 25 long-time.post.exp long-time.stderr.exp long-time.vgtest \ 26 malloc_usable.stderr.exp malloc_usable.vgtest \ 27 mmapunmap.post.exp mmapunmap.post.exp-ppc64 \ 28 mmapunmap.stderr.exp mmapunmap.vgtest \ 29 new-cpp.post.exp new-cpp.stderr.exp new-cpp.vgtest \ 30 no-stack-no-heap.post.exp no-stack-no-heap.stderr.exp no-stack-no-heap.vgtest \ 31 null.post.exp null.stderr.exp null.vgtest \ 32 one.post.exp one.post.exp2 one.stderr.exp one.vgtest \ 33 overloaded-new.post.exp overloaded-new.post.exp-mips32 \ 34 overloaded-new.stderr.exp overloaded-new.vgtest \ 35 pages_as_heap.stderr.exp pages_as_heap.vgtest \ 36 peak.post.exp peak.stderr.exp peak.vgtest \ 37 peak2.post.exp peak2.stderr.exp peak2.vgtest \ 38 realloc.post.exp realloc.stderr.exp realloc.vgtest \ 39 thresholds_0_0.post.exp \ 40 thresholds_0_0.stderr.exp thresholds_0_0.vgtest \ 41 thresholds_0_10.post.exp thresholds_0_10.stderr.exp \ 42 thresholds_0_10.vgtest \ 43 thresholds_10_0.post.exp \ 44 thresholds_10_0.stderr.exp thresholds_10_0.vgtest \ 45 thresholds_5_0.post.exp \ 46 thresholds_5_0.stderr.exp thresholds_5_0.vgtest \ 47 thresholds_5_10.post.exp \ 48 thresholds_5_10.stderr.exp thresholds_5_10.vgtest \ 49 thresholds_10_10.post.exp \ 50 thresholds_10_10.stderr.exp thresholds_10_10.vgtest \ 51 zero1.post.exp zero1.stderr.exp zero1.vgtest \ 52 zero2.post.exp zero2.stderr.exp zero2.vgtest 53 54check_PROGRAMS = \ 55 alloc-fns \ 56 basic \ 57 big-alloc \ 58 culling1 culling2 \ 59 custom_alloc \ 60 deep \ 61 ignored \ 62 ignoring \ 63 insig \ 64 long-names \ 65 long-time \ 66 mmapunmap \ 67 malloc_usable \ 68 new-cpp \ 69 null \ 70 one \ 71 overloaded-new \ 72 pages_as_heap \ 73 peak \ 74 realloc \ 75 thresholds \ 76 zero 77 78AM_CFLAGS += $(AM_FLAG_M3264_PRI) 79AM_CXXFLAGS += $(AM_FLAG_M3264_PRI) 80 81# C++ tests 82new_cpp_SOURCES = new-cpp.cpp 83overloaded_new_SOURCES = overloaded-new.cpp 84 85