Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755601AbdCWTAJ (ORCPT ); Thu, 23 Mar 2017 15:00:09 -0400 Received: from mail.kernel.org ([198.145.29.136]:47648 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751455AbdCWTAH (ORCPT ); Thu, 23 Mar 2017 15:00:07 -0400 Date: Thu, 23 Mar 2017 15:00:01 -0400 From: Steven Rostedt To: Satoru Takeuchi Cc: LKML , "John 'Warthog9' Hawley" Subject: Re: [ANNOUNCE] elkdat: an easy linux kernel development and test tool Message-ID: <20170323150001.5a1520e5@gandalf.local.home> In-Reply-To: References: X-Mailer: Claws Mail 3.14.0 (GTK+ 2.24.31; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1302 Lines: 60 On Fri, 24 Mar 2017 00:54:06 +0900 Satoru Takeuchi wrote: > elkdat is a tool to ease linux kernel development/test. It > automatically setups linux kernel > source repository and a VM for linux kernel development and test. In > addition, It runs > the following kinds of tests automatically just by one command. > > - build, install, boot you own kernel > - run your own tests on your own kernel > - test the all patches in a patchset > - find a problematic commit with bisect > > NOTE: > Actually these features are achieved by ktest. elkdat is just a > ktest's wrapper. > Special thanks to Steven Rostedt! Nice! John, FYI... -- Steve > > > Here are some examples. > > * Boot your own kernel > > ``` > $ ./test boot > ``` > > * Run your own test on your own kernel > > ``` > $ ./test test /path/to/your/own/test > ``` > > * Test whether all patches in your patcheset are bootable or not one by one > > ``` > $ ./test patchcheck boot > ``` > > * Find which commit introduces an un-bootable bug by bysect > > ``` > ./test bisect boot > ``` > > > For more information, please refer to the following URL. > > https://github.com/satoru-takeuchi/elkdat > > Thanks, > Satoru