1 2include $(top_srcdir)/Makefile.tool-tests.am 3 4dist_noinst_SCRIPTS = filter_stderr 5 6EXTRA_DIST = \ 7 block_size.stdout.exp block_size.stderr.exp block_size.vgtest \ 8 branches.stdout.exp branches.stderr.exp branches.vgtest \ 9 FPUarithmetic.stdout.exp FPUarithmetic.stdout.exp-mips32 \ 10 FPUarithmetic.stderr.exp FPUarithmetic.vgtest \ 11 LoadStore.stdout.exp LoadStore.stdout.exp-BE LoadStore.stderr.exp \ 12 LoadStore.vgtest \ 13 LoadStore1.stdout.exp LoadStore1.stdout.exp-LE LoadStore1.stderr.exp \ 14 LoadStore1.vgtest \ 15 MemCpyTest.stdout.exp MemCpyTest.stderr.exp MemCpyTest.vgtest \ 16 MIPS32int.stdout.exp-mips32-BE MIPS32int.stdout.exp-mips32r2-BE \ 17 MIPS32int.stdout.exp-mips32-LE MIPS32int.stdout.exp-mips32r2-LE \ 18 MIPS32int.stderr.exp MIPS32int.vgtest \ 19 MoveIns.stdout.exp MoveIns.stdout.exp-BE MoveIns.stderr.exp MoveIns.vgtest \ 20 round.stdout.exp round.stderr.exp round.vgtest \ 21 vfp.stdout.exp-mips32-BE vfp.stdout.exp-mips32r2-BE \ 22 vfp.stdout.exp-mips32-LE vfp.stdout.exp-mips32r2-LE vfp.stderr.exp \ 23 vfp.vgtest \ 24 SignalException.stderr.exp SignalException.vgtest \ 25 bug320057-mips32.stdout.exp bug320057-mips32.stderr.exp \ 26 bug320057-mips32.vgtest \ 27 mips32_dsp.stdout.exp-LE mips32_dsp.stdout.exp-BE \ 28 mips32_dsp.stderr.exp mips32_dsp.vgtest \ 29 mips32_dspr2.stdout.exp mips32_dspr2.stderr.exp \ 30 mips32_dspr2.vgtest \ 31 unaligned_load_store.stdout.exp-LE unaligned_load_store.stdout.exp-BE \ 32 unaligned_load_store.stderr.exp unaligned_load_store.vgtest \ 33 test_fcsr.stdout.exp test_fcsr.stderr.exp test_fcsr.vgtest \ 34 test_math.stdout.exp test_math.stderr.exp test_math.vgtest \ 35 round_fpu64.stdout.exp round_fpu64.stdout.exp-fpu32 \ 36 round_fpu64.stderr.exp round_fpu64.vgtest \ 37 fpu_branches.stdout.exp fpu_branches.stderr.exp fpu_branches.vgtest 38 39check_PROGRAMS = \ 40 allexec \ 41 block_size \ 42 branches \ 43 FPUarithmetic \ 44 LoadStore \ 45 LoadStore1 \ 46 MemCpyTest \ 47 MIPS32int \ 48 MoveIns \ 49 round \ 50 vfp \ 51 SignalException \ 52 bug320057-mips32 \ 53 mips32_dsp \ 54 mips32_dspr2 \ 55 unaligned_load_store \ 56 test_fcsr \ 57 test_math \ 58 round_fpu64 \ 59 fpu_branches 60 61AM_CFLAGS += @FLAG_M32@ 62AM_CXXFLAGS += @FLAG_M32@ 63AM_CCASFLAGS += @FLAG_M32@ 64 65allexec_CFLAGS = $(AM_CFLAGS) @FLAG_W_NO_NONNULL@ 66bug320057_mips32_LDFLAGS = -lrt 67 68# C++ tests 69test_math_SOURCES = test_math.cpp 70