From owner-svn-src-all@freebsd.org Fri Nov 20 03:24:05 2015 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ADEDCA328A5; Fri, 20 Nov 2015 03:24:05 +0000 (UTC) (envelope-from rodrigc@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 787FE1157; Fri, 20 Nov 2015 03:24:05 +0000 (UTC) (envelope-from rodrigc@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tAK3O4Ls005789; Fri, 20 Nov 2015 03:24:04 GMT (envelope-from rodrigc@FreeBSD.org) Received: (from rodrigc@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tAK3O4qT005787; Fri, 20 Nov 2015 03:24:04 GMT (envelope-from rodrigc@FreeBSD.org) Message-Id: <201511200324.tAK3O4qT005787@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: rodrigc set sender to rodrigc@FreeBSD.org using -f From: Craig Rodrigues Date: Fri, 20 Nov 2015 03:24:04 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r291089 - head/tests X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Nov 2015 03:24:05 -0000 Author: rodrigc Date: Fri Nov 20 03:24:04 2015 New Revision: 291089 URL: https://svnweb.freebsd.org/changeset/base/291089 Log: Copy README into /usr/tests Add a few sentences describing how to run the tests. Reviewed by: ngie Differential Revision: https://reviews.freebsd.org/D4224 Modified: head/tests/Makefile head/tests/README Modified: head/tests/Makefile ============================================================================== --- head/tests/Makefile Fri Nov 20 02:23:35 2015 (r291088) +++ head/tests/Makefile Fri Nov 20 03:24:04 2015 (r291089) @@ -9,6 +9,9 @@ SUBDIR_PARALLEL= TESTSDIR= ${TESTSBASE} KYUAFILE= yes +FILES+= README +FILESDIR_README= ${TESTSDIR} + afterinstall: install-tests-local install-tests-local: .PHONY ${INSTALL_SYMLINK} ../local/tests ${DESTDIR}${TESTSDIR}/local Modified: head/tests/README ============================================================================== --- head/tests/README Fri Nov 20 02:23:35 2015 (r291088) +++ head/tests/README Fri Nov 20 03:24:04 2015 (r291089) @@ -1,10 +1,19 @@ src/tests: The FreeBSD test suite ================================= -This file describes the build infrastructure of the FreeBSD test suite. -If you are only interested in using the test suite itself, please refer -to tests(7) instead. +To run the FreeBSD test suite: +(1) Make sure that kyua is installed: + pkg install kyua +(2) To run the tests: + kyua test -k /usr/tests/Kyuafile +(3) To see the test results: + kyua report +For further information on using the test suite, read tests(7): + man tests + +Description of FreeBSD test suite +================================= The build of the test suite is organized in the following manner: * The build of all test artifacts is protected by the MK_TESTS knob.