From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QoyrZ-0000Sl-SC for garchives@archives.gentoo.org; Thu, 04 Aug 2011 14:25:30 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EB09A21C2C0; Thu, 4 Aug 2011 14:24:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id BD14521C21E for ; Thu, 4 Aug 2011 14:24:47 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 328FA1B403B for ; Thu, 4 Aug 2011 14:24:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 3A1CB8004F for ; Thu, 4 Aug 2011 14:24:46 +0000 (UTC) From: "Petteri Räty" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petteri Räty" Message-ID: Subject: [gentoo-commits] proj/libbash:master commit in: / X-VCS-Repository: proj/libbash X-VCS-Files: README X-VCS-Directories: / X-VCS-Committer: betelgeuse X-VCS-Committer-Name: Petteri Räty X-VCS-Revision: fb007eba7449cf3c7d49530002f7b6706dcb0025 Date: Thu, 4 Aug 2011 14:24:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 06f5387133d3443b7d104e493200b720 commit: fb007eba7449cf3c7d49530002f7b6706dcb0025 Author: Mu Qiao gentoo org> AuthorDate: Thu Aug 4 07:01:30 2011 +0000 Commit: Petteri R=C3=A4ty gentoo org> CommitDate: Thu Aug 4 14:15:15 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/libbash.git;a= =3Dcommit;h=3Dfb007eba Doc: update README --- README | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/README b/README index 8e00feb..b3ca119 100644 --- a/README +++ b/README @@ -25,6 +25,12 @@ bashast/gunit: Grammar gunit tests src/: source directory for libbash library src/builtins: source directory for built in bash functionality classes src/builtins/tests: Unit tests for builtins +src/core: core runtime for libbash +src/core/tests: Unit tests for the core runtime +include/: public headers +utils/: some utilities that built on libbash +test/: some general tests for libbash +scripts/: some bash scripts or ebuilds for testing coding_standard/: LaTeX coding standard for the project docs/: output folder for Doxygen generated documentation =20 @@ -42,3 +48,9 @@ To generate the coding standard from the latex file (wi= th pdflatex): make coding_standard.pdf To generate the doxygen documentation: make doxygen-doc +To get memory usage statstics of libbash (with Valgrind): + make massif +To get benchmark data for metadata generation (with Valgrind): + make benchmark_parser +To get unit tests coverage: + make test_coverage