From owner-svn-src-all@freebsd.org Tue Nov 10 16:15:45 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 7C4E5A2BD8B; Tue, 10 Nov 2015 16:15:45 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from mx1.sbone.de (bird.sbone.de [46.4.1.90]) (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits)) (Client CN "mx1.sbone.de", Issuer "SBone.DE" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 37BE01869; Tue, 10 Nov 2015 16:15:45 +0000 (UTC) (envelope-from bz@FreeBSD.org) Received: from mail.sbone.de (mail.sbone.de [IPv6:fde9:577b:c1a9:31::2013:587]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.sbone.de (Postfix) with ESMTPS id 0A55C25D385E; Tue, 10 Nov 2015 16:15:36 +0000 (UTC) Received: from content-filter.sbone.de (content-filter.sbone.de [IPv6:fde9:577b:c1a9:31::2013:2742]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.sbone.de (Postfix) with ESMTPS id 4FC7EC77037; Tue, 10 Nov 2015 16:15:36 +0000 (UTC) X-Virus-Scanned: amavisd-new at sbone.de Received: from mail.sbone.de ([IPv6:fde9:577b:c1a9:31::2013:587]) by content-filter.sbone.de (content-filter.sbone.de [fde9:577b:c1a9:31::2013:2742]) (amavisd-new, port 10024) with ESMTP id 9YJxd8TIHLjX; Tue, 10 Nov 2015 16:15:34 +0000 (UTC) Received: from [IPv6:fde9:577b:c1a9:4420:cabc:c8ff:fe8b:4fe6] (orange-tun0-ula.sbone.de [IPv6:fde9:577b:c1a9:4420:cabc:c8ff:fe8b:4fe6]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.sbone.de (Postfix) with ESMTPSA id 9160FC76FDB; Tue, 10 Nov 2015 16:15:34 +0000 (UTC) Content-Type: text/plain; charset=utf-8 Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2104\)) Subject: Re: svn commit: r290663 - in head/sys: modules modules/tests modules/tests/callout_test modules/tests/framework tests tests/callout_test tests/framework From: "Bjoern A. Zeeb" In-Reply-To: <201511101414.tAAEEfPI057133@repo.freebsd.org> Date: Tue, 10 Nov 2015 16:15:32 +0000 Cc: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Content-Transfer-Encoding: quoted-printable Message-Id: References: <201511101414.tAAEEfPI057133@repo.freebsd.org> To: Randall Stewart X-Mailer: Apple Mail (2.2104) 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: Tue, 10 Nov 2015 16:15:45 -0000 > On 10 Nov 2015, at 14:14 , Randall Stewart wrote: >=20 > Author: rrs > Date: Tue Nov 10 14:14:41 2015 > New Revision: 290663 > URL: https://svnweb.freebsd.org/changeset/base/290663 >=20 > Log: > Add a kernel test framework. The callout_test is a demonstration and = will only > work with the upcoming async-drain functionality. Tests can be added > to the tests directory and then the framework can be used to launch > those tests. >=20 > MFC after: 1 month > Sponsored by: Netflix Inc. > Differential Revision: https://reviews.freebsd.org/D1755 >=20 = /scratch/tmp/bz/head.svn/sys/modules/tests/callout_test/../../../tests/cal= lout_test/callout_test.c:75: warning: function declaration isn't a = prototype [-Wstrict-prototypes] = /scratch/tmp/bz/head.svn/sys/modules/tests/callout_test/../../../tests/cal= lout_test/callout_test.c:133: warning: no previous prototype for = =E2=80=98execute_the_co_test' [-Wmissing-prototypes] = /scratch/tmp/bz/head.svn/sys/modules/tests/framework/../../../tests/framew= ork/kern_testfrwk.c:171: warning: redundant redeclaration of = 'sysctl___kern' [-Wredundant-decls] /scratch/tmp/bz/head.svn/sys/sys/sysctl.h:918: warning: previous = declaration of =E2=80=98sysctl___kern' was here This is on sparc64 but I guess that=E2=80=99s just one of my early = kernel compiles. > Added: > head/sys/modules/tests/ > head/sys/modules/tests/callout_test/ > head/sys/modules/tests/callout_test/Makefile (contents, props = changed) > head/sys/modules/tests/framework/ > head/sys/modules/tests/framework/Makefile (contents, props changed) > head/sys/tests/ > head/sys/tests/callout_test/ > head/sys/tests/callout_test.h (contents, props changed) > head/sys/tests/callout_test/callout_test.c (contents, props = changed) > head/sys/tests/framework/ > head/sys/tests/framework/kern_testfrwk.c (contents, props changed) > head/sys/tests/kern_testfrwk.h (contents, props changed) > Modified: > head/sys/modules/Makefile