|
From: <sv...@va...> - 2012-12-05 20:20:35
|
philippe 2012-12-05 20:20:25 +0000 (Wed, 05 Dec 2012)
New Revision: 13152
Log:
Fix missing in EXTRA_DIST errors reported by check_makefile_consistency
memcheck/tests/amd64/Makefile.am:1: error: insn-bsfl.stderr.exp is missing in EXTRA_DIST
memcheck/tests/amd64/Makefile.am:1: error: insn-bsfl.stdout.exp is missing in EXTRA_DIST
memcheck/tests/amd64/Makefile.am:1: error: insn-bsfl.vgtest is missing in EXTRA_DIST
memcheck/tests/amd64/Makefile.am:1: error: insn-pcmpistri.stderr.exp is missing in EXTRA_DIST
memcheck/tests/amd64/Makefile.am:1: error: insn-pcmpistri.stdout.exp is missing in EXTRA_DIST
memcheck/tests/amd64/Makefile.am:1: error: insn-pcmpistri.vgtest is missing in EXTRA_DIST
memcheck/tests/amd64/Makefile.am:1: error: insn-pmovmskb.stderr.exp is missing in EXTRA_DIST
memcheck/tests/amd64/Makefile.am:1: error: insn-pmovmskb.stdout.exp is missing in EXTRA_DIST
memcheck/tests/amd64/Makefile.am:1: error: insn-pmovmskb.vgtest is missing in EXTRA_DIST
none/tests/s390x/Makefile.am:1: error: dfp-1.stderr.exp is missing in EXTRA_DIST
none/tests/s390x/Makefile.am:1: error: dfp-1.stdout.exp is missing in EXTRA_DIST
none/tests/s390x/Makefile.am:1: error: dfp-1.vgtest is missing in EXTRA_DIST
Modified files:
trunk/memcheck/tests/amd64/Makefile.am
trunk/none/tests/s390x/Makefile.am
Modified: trunk/none/tests/s390x/Makefile.am (+2 -1)
===================================================================
--- trunk/none/tests/s390x/Makefile.am 2012-12-05 04:21:41 +00:00 (rev 13151)
+++ trunk/none/tests/s390x/Makefile.am 2012-12-05 20:20:25 +00:00 (rev 13152)
@@ -34,7 +34,8 @@
op00.stderr.exp1 op00.stderr.exp2 op00.vgtest \
fpext_fail.vgtest fpext_fail.stderr.exp fpext_fail.stdout.exp \
test.h opcodes.h add.h and.h div.h insert.h \
- mul.h or.h sub.h xor.h table.h svc.h rounding.h
+ mul.h or.h sub.h xor.h table.h svc.h rounding.h \
+ dfp-1.stderr.exp dfp-1.stdout.exp dfp-1.vgtest
AM_CFLAGS += @FLAG_M64@
AM_CXXFLAGS += @FLAG_M64@
Modified: trunk/memcheck/tests/amd64/Makefile.am (+3 -0)
===================================================================
--- trunk/memcheck/tests/amd64/Makefile.am 2012-12-05 04:21:41 +00:00 (rev 13151)
+++ trunk/memcheck/tests/amd64/Makefile.am 2012-12-05 20:20:25 +00:00 (rev 13152)
@@ -14,6 +14,9 @@
bug132146.vgtest bug132146.stderr.exp bug132146.stdout.exp \
bug279698.vgtest bug279698.stderr.exp bug279698.stdout.exp \
fxsave-amd64.vgtest fxsave-amd64.stdout.exp fxsave-amd64.stderr.exp \
+ insn-bsfl.vgtest insn-bsfl.stdout.exp insn-bsfl.stderr.exp \
+ insn-pcmpistri.vgtest insn-pcmpistri.stdout.exp insn-pcmpistri.stderr.exp \
+ insn-pmovmskb.vgtest insn-pmovmskb.stdout.exp insn-pmovmskb.stderr.exp \
more_x87_fp.stderr.exp more_x87_fp.stdout.exp more_x87_fp.vgtest \
sse_memory.stderr.exp sse_memory.stdout.exp sse_memory.vgtest \
xor-undef-amd64.stderr.exp xor-undef-amd64.stdout.exp \
|