diff mbox

[4/5] Add linkhuge_rw test to 64 bit && !CUSTOM_LDSCIPTS

Message ID 1378818692-24952-5-git-send-email-steve.capper@linaro.org
State New
Headers show

Commit Message

Steve Capper Sept. 10, 2013, 1:11 p.m. UTC
If one compiles 64 bit with CUSTOM_LDSCRIPTS==no, then the linkhuge_rw
test is not compiled even though the logic to build it exists. For
32 bit targets these tests are compiled.

This patch adds $(HUGELINK_RW_TESTS) to the set of tests that are
compiled for 64 bit in this case.

Signed-off-by: Steve Capper <steve.capper@linaro.org>
---
 tests/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/tests/Makefile b/tests/Makefile
index 231e3b0..9140e72 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -54,7 +54,7 @@  ifeq ($(CUSTOM_LDSCRIPTS),yes)
 TESTS += $(LDSCRIPT_TESTS) $(HUGELINK_TESTS) $(HUGELINK_TESTS:%=xB.%) \
 	$(HUGELINK_TESTS:%=xBDT.%)
 else
-TESTS += $(LDSCRIPT_TESTS) $(HUGELINK_TESTS)
+TESTS += $(LDSCRIPT_TESTS) $(HUGELINK_TESTS) $(HUGELINK_RW_TESTS)
 endif
 
 endif