This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Fix run-one-test so that it runs elf tests


From: Arjun Shankar <arjun@redhat.com>

The `test' make target passes a trailing slash in the subdir argument.  This does not
play well with elf/rtld-Rules which looks for `elf' without any trailing slash and
therefore doesn't find a match when running an elf test individually.  This commit
removes the trailing slash from the invocation.
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 335155ce3c..fae71aa287 100644
--- a/Makefile
+++ b/Makefile
@@ -691,6 +691,6 @@ iconvdata/% localedata/% po/%: FORCE
 .PHONY: test
 test :
 	@-rm -f $(objpfx)$t.out
-	$(MAKE) subdir=$(dir $t) -C $(dir $t) ..=../ $(objpfx)$t.out
+	$(MAKE) subdir=$(patsubst %/,%,$(dir $t)) -C $(dir $t) ..=../ $(objpfx)$t.out
 	@cat $(objpfx)$t.test-result
 	@cat $(objpfx)$t.out

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]