Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 19 Aug 2017 01:43:02 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-11@freebsd.org
Subject:   svn commit: r322689 - stable/11/share/mk
Message-ID:  <201708190143.v7J1h2Gm046246@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201708190143.v7J1h2Gm046246>