svn commit: r322689 - stable/11/share/mk

Ngie Cooper ngie at FreeBSD.org
Sat Aug 19 01:43:04 UTC 2017


Author: ngie
Date: Sat Aug 19 01:43:02 2017
New Revision: 322689
URL: https://svnweb.freebsd.org/changeset/base/322689

Log:
  MFC r321081:
  
  Sort the tests alphabetically before adding them to the Kyuafiles
  
  This is being done to aid in debugging test runs, in the event the
  output shifts due to refactored Makefiles, added tests, etc.

Modified:
  stable/11/share/mk/bsd.test.mk
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/share/mk/bsd.test.mk
==============================================================================
--- stable/11/share/mk/bsd.test.mk	Sat Aug 19 01:40:30 2017	(r322688)
+++ stable/11/share/mk/bsd.test.mk	Sat Aug 19 01:43:02 2017	(r322689)
@@ -66,6 +66,10 @@ _TESTS=
 .include <plain.test.mk>
 .include <tap.test.mk>
 
+# Sort the tests alphabetically, so the results are deterministically formed
+# across runs.
+_TESTS:=	${_TESTS:O}
+
 # kyua automatically descends directories; only run make check on the
 # top-level directory
 .if !make(check)


More information about the svn-src-all mailing list