From patchwork Thu Aug 26 09:21:42 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jason Wang X-Patchwork-Id: 134051 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id o7Q9LUN1030243 for ; Thu, 26 Aug 2010 09:22:04 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751724Ab0HZJVp (ORCPT ); Thu, 26 Aug 2010 05:21:45 -0400 Received: from mx1.redhat.com ([209.132.183.28]:21637 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751645Ab0HZJVp (ORCPT ); Thu, 26 Aug 2010 05:21:45 -0400 Received: from int-mx08.intmail.prod.int.phx2.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o7Q9Ljb6025628 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 26 Aug 2010 05:21:45 -0400 Received: from [127.0.1.1] (dhcp-65-37.nay.redhat.com [10.66.65.37]) by int-mx08.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o7Q9LgQK030649; Thu, 26 Aug 2010 05:21:43 -0400 Subject: [PATCH kvm-unit-tests v2 04/10] Correct the path in README To: mtosatti@redhat.com, avi@redhat.com, kvm@vger.kernel.org From: Jason Wang Date: Thu, 26 Aug 2010 17:21:42 +0800 Message-ID: <20100826092142.1690.76308.stgit@FreeLancer> In-Reply-To: <20100826091520.1690.44200.stgit@FreeLancer> References: <20100826091520.1690.44200.stgit@FreeLancer> User-Agent: StGit/0.15 MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.67 on 10.5.11.21 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Thu, 26 Aug 2010 09:22:04 +0000 (UTC) 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