mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-12 14:20:04 +00:00
Test program that triggers different corner cases related to position of branch instruction and max size of a translation block (60 instructions). Fix for these issues has been submitted in r2648. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13248
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
|
|
include $(top_srcdir)/Makefile.tool-tests.am
|
|
|
|
dist_noinst_SCRIPTS = filter_stderr
|
|
|
|
EXTRA_DIST = \
|
|
block_size.stdout.exp block_size.stderr.exp block_size.vgtest \
|
|
branches.stdout.exp branches.stderr.exp branches.vgtest \
|
|
FPUarithmetic.stdout.exp FPUarithmetic.stdout.exp-mips32 \
|
|
FPUarithmetic.stderr.exp FPUarithmetic.vgtest \
|
|
LoadStore.stdout.exp LoadStore.stdout.exp-BE LoadStore.stderr.exp \
|
|
LoadStore.vgtest \
|
|
LoadStore1.stdout.exp LoadStore1.stdout.exp-LE LoadStore1.stderr.exp \
|
|
LoadStore1.vgtest \
|
|
MemCpyTest.stdout.exp MemCpyTest.stderr.exp MemCpyTest.vgtest \
|
|
MIPS32int.stdout.exp MIPS32int.stdout.exp-BE MIPS32int.stdout.exp-mips32 \
|
|
MIPS32int.stderr.exp MIPS32int.vgtest \
|
|
MoveIns.stdout.exp MoveIns.stdout.exp-BE MoveIns.stderr.exp MoveIns.vgtest \
|
|
round.stdout.exp round.stderr.exp round.vgtest \
|
|
vfp.stdout.exp vfp.stdout.exp-BE vfp.stdout.exp-mips32 vfp.stderr.exp \
|
|
vfp.vgtest \
|
|
SignalException.stderr.exp SignalException.vgtest
|
|
|
|
check_PROGRAMS = \
|
|
allexec \
|
|
block_size \
|
|
branches \
|
|
FPUarithmetic \
|
|
LoadStore \
|
|
LoadStore1 \
|
|
MemCpyTest \
|
|
MIPS32int \
|
|
MoveIns \
|
|
round \
|
|
vfp \
|
|
SignalException
|
|
|
|
AM_CFLAGS += @FLAG_M32@
|
|
AM_CXXFLAGS += @FLAG_M32@
|
|
AM_CCASFLAGS += @FLAG_M32@
|
|
|
|
allexec_CFLAGS = $(AM_CFLAGS) @FLAG_W_NO_NONNULL@
|