|
From: <sv...@va...> - 2015-07-23 05:04:48
|
Author: rhyskidd
Date: Thu Jul 23 06:04:36 2015
New Revision: 15440
Log:
Partial fix for bz#344416 - Fix make regtest does not work cleanly on OS X.
Modified:
trunk/none/tests/amd64/Makefile.am
trunk/none/tests/x86/Makefile.am
Modified: trunk/none/tests/amd64/Makefile.am
==============================================================================
--- trunk/none/tests/amd64/Makefile.am (original)
+++ trunk/none/tests/amd64/Makefile.am Thu Jul 23 06:04:36 2015
@@ -135,9 +135,6 @@
if BUILD_FMA_TESTS
check_PROGRAMS += fma
endif
-if BUILD_MOVBE_TESTS
- check_PROGRAMS += movbe
-endif
if BUILD_MPX_TESTS
check_PROGRAMS += mpx
endif
@@ -157,6 +154,9 @@
if BUILD_LOOPNEL_TESTS
check_PROGRAMS += loopnel
endif
+if BUILD_MOVBE_TESTS
+ check_PROGRAMS += movbe
+endif
endif
AM_CFLAGS += @FLAG_M64@
Modified: trunk/none/tests/x86/Makefile.am
==============================================================================
--- trunk/none/tests/x86/Makefile.am (original)
+++ trunk/none/tests/x86/Makefile.am Thu Jul 23 06:04:36 2015
@@ -111,14 +111,14 @@
check_PROGRAMS += lzcnt32
endif
if !VGCONF_OS_IS_DARWIN
+if BUILD_MOVBE_TESTS
+ check_PROGRAMS += movbe
+endif
if !SOLARIS_SUN_STUDIO_AS
# Sun Studio assembler fails to assemble the bound instruction
check_PROGRAMS += faultstatus
endif
endif
-if BUILD_MOVBE_TESTS
- check_PROGRAMS += movbe
-endif
if !SOLARIS_SUN_STUDIO_AS
# Sun Studio assembler fails to assemble pushw %fs, popw %fs
check_PROGRAMS += pushpopseg
|