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]

Guard x86 elf/tst-xmmymm.out by fast-check?


Hi!

On my x86 GNU Hurd testing system, the x86 elf/tst-xmmymm.out test takes
about 75 min of wall time, out of 130 min total, so more than half of
that.  (That is with fast-check=yes, otherwise the conformtest would've
taken another 105 min, last time I ran it.)  Is it OK to guard the former
one by fast-check, too?

	* sysdeps/x86/Makefile [fast-check=yes] (tests): Don't add
	$(objpfx)tst-xmmymm.out.

diff --git sysdeps/x86/Makefile sysdeps/x86/Makefile
index 3e87a77..8ebee4d 100644
--- sysdeps/x86/Makefile
+++ sysdeps/x86/Makefile
@@ -2,7 +2,9 @@ ifeq ($(subdir),elf)
 CFLAGS-.os += $(if $(filter $(@F),$(patsubst %,%.os,$(all-rtld-routines))),\
 		   -mno-sse -mno-mmx)
 
+ifneq (yes,$(fast-check))
 tests: $(objpfx)tst-xmmymm.out
+endif
 $(objpfx)tst-xmmymm.out: ../sysdeps/x86/tst-xmmymm.sh $(objpfx)ld.so
 	@echo "Checking ld.so for SSE register use.  This will take a few seconds..."
 	$(SHELL) $< $(objpfx) '$(NM)' '$(OBJDUMP)' '$(READELF)' > $@


GrÃÃe,
 Thomas

Attachment: pgp6pq0mKKr8I.pgp
Description: PGP signature


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