From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jason Wang Subject: [PATCH kvm-unit-tests 04/10] Correct the path in README Date: Tue, 24 Aug 2010 21:47:20 +0800 Message-ID: <20100824134720.17082.86924.stgit@FreeLancer> References: <20100824134523.17082.8727.stgit@FreeLancer> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit To: jasowang@redhat.com, mtosatti@redhat.com, avi@redhat.com, kvm@vger.kernel.org Return-path: Received: from mx1.redhat.com ([209.132.183.28]:9734 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755237Ab0HXNrW (ORCPT ); Tue, 24 Aug 2010 09:47:22 -0400 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o7ODlMQ3031365 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Tue, 24 Aug 2010 09:47:22 -0400 In-Reply-To: <20100824134523.17082.8727.stgit@FreeLancer> Sender: kvm-owner@vger.kernel.org List-ID: Signed-off-by: Jason Wang --- README | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README b/README index 6a83831..9c0c518 100644 --- a/README +++ b/README @@ -7,17 +7,17 @@ Tests uses a qemu's virtual test device, named testdev, for services like printi See file testdev.txt for more details. To create the tests' images just type 'make' in this directory. -Tests' images created in ./test//*.flat +Tests' images created in .//*.flat An example of a test invocation: -qemu-system-x86_64 -device testdev,chardev=testlog -chardev file,id=testlog,path=msr.out -kernel ./test/x86/msr.flat +qemu-system-x86_64 -device testdev,chardev=testlog -chardev file,id=testlog,path=msr.out -kernel ./x86/msr.flat This invocation runs the msr test case. The test output is in file msr.out. Directory structure: .: Makefile and config files for the tests -./test/lib: general services for the tests -./test/lib/: architecture dependent services for the tests -./test/: the sources of the tests and the created objects/images +./lib: general services for the tests +./lib/: architecture dependent services for the tests +./: the sources of the tests and the created objects/images