Re: [Qemu-devel] [PATCH V4 2/5] runner: Tool for fuzz tests execution

2014-08-04 Thread M.Kustova
On Fri, Aug 1, 2014 at 9:46 AM, Stefan Hajnoczi wrote: > On Mon, Jul 21, 2014 at 02:18:09PM +0400, Maria Kustova wrote: >> +def execute(self, input_commands=None, fuzz_config=None): >> +""" Execute a test. >> + >> +The method creates backing and test images, runs test app and

Re: [Qemu-devel] [PATCH V4 2/5] runner: Tool for fuzz tests execution

2014-07-31 Thread Stefan Hajnoczi
On Mon, Jul 21, 2014 at 02:18:09PM +0400, Maria Kustova wrote: > +def execute(self, input_commands=None, fuzz_config=None): > +""" Execute a test. > + > +The method creates backing and test images, runs test app and > analyzes > +its exit status. If the application was

Re: [Qemu-devel] [PATCH V4 2/5] runner: Tool for fuzz tests execution

2014-07-23 Thread Fam Zheng
On Mon, 07/21 14:18, Maria Kustova wrote: > The purpose of the test runner is to prepare the test environment (e.g. create > a work directory, a test image, etc), execute a program under test with > parameters, indicate a test failure if the program was killed during the test > execution and collec

[Qemu-devel] [PATCH V4 2/5] runner: Tool for fuzz tests execution

2014-07-21 Thread Maria Kustova
The purpose of the test runner is to prepare the test environment (e.g. create a work directory, a test image, etc), execute a program under test with parameters, indicate a test failure if the program was killed during the test execution and collect core dumps, logs and other test artifacts. The