From owner-freebsd-testing@FreeBSD.ORG Tue Oct 7 21:15:24 2014 Return-Path: Delivered-To: freebsd-testing@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B19D354A; Tue, 7 Oct 2014 21:15:24 +0000 (UTC) Received: from mail-lb0-x22c.google.com (mail-lb0-x22c.google.com [IPv6:2a00:1450:4010:c04::22c]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id D70F2FDF; Tue, 7 Oct 2014 21:15:23 +0000 (UTC) Received: by mail-lb0-f172.google.com with SMTP id b6so6919393lbj.17 for ; Tue, 07 Oct 2014 14:15:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:date:message-id:subject:from:to:cc:content-type; bh=yLPYxIUc8T0yTfS1DN15d2K2NCccXnWad4iSeUD7ZOU=; b=b22DDiYqeFOt49CYxoPpwCR41q6/xkvkXC+cAlspEH8T3mLShbKQUkhDHbERSnQlJk JYyjbKdh32xwiNPVgmVX+YrNKMX7JAekaiaiPCMT8CvSumipsSobcF5qV1OGAJS9/Wh8 qC9vjMEWBWMTZcqfCgH4+Q48hjUhigkhVb9fs5eypLq1fQSLjy1CqiEL8ojpgSB5fDvk Datw6QnE8zxwdYYn1/D6G5aTE7TZ5/dkSidB7ktWi36zaBlefppB0gfS0DoBYu86lVRm 8wYhOh4gSwd4A0RnJHbg6tXynAP5OHFnRaojRHAkJ1IFJ8VUIjVHMxlBK2Nrx53byBzz pfyw== MIME-Version: 1.0 X-Received: by 10.152.7.145 with SMTP id j17mr6780316laa.67.1412716521802; Tue, 07 Oct 2014 14:15:21 -0700 (PDT) Sender: crodr001@gmail.com Received: by 10.112.131.66 with HTTP; Tue, 7 Oct 2014 14:15:21 -0700 (PDT) Date: Tue, 7 Oct 2014 14:15:21 -0700 X-Google-Sender-Auth: wlQT8VkQiEFHOQFkjir3dXPn1p0 Message-ID: Subject: Automatically running /usr/tests under Jenkins From: Craig Rodrigues To: freebsd-current Current Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: "freebsd-testing@freebsd.org" , "freebsd-virtualization@freebsd.org" X-BeenThere: freebsd-testing@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Testing on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Oct 2014 21:15:24 -0000 Hi, I have created this Jenkins job: https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/1577/BuildGraph/ (1) does a buildworld/buildkernel on amd64 when someone checks new code into CURRENT (2) Creates a bootable UFS image with makefs (3) Boots the image under bhyve (4) Runs these commands inside the bhyve VM: cd /usr/tests kyua test kyua report-junit --output=test-output.xml (5) Shuts down the bhyve VM (6) imports test-output.xml into Jenkins. Hopefully we will be able to run this job very frequently, so the tests will be run every time new commits hit the tree. -- Craig