From 1d76a9e106ccad445118b84be7f6659da7066701 Mon Sep 17 00:00:00 2001 From: Nick Dimiduk Date: Sun, 27 Jan 2013 21:26:37 -0800 Subject: [PATCH 1/1] HBASE-7691 A couple docbook updates - update link to external (hadoop) documentation which is no longer available on hadoop.apache.org/common/docs/current. - correct small mistake in instructions for generating a release tarball. - correct mistake in descriptions of test profiles. add description for 'runDevTests' profile. --- src/docbkx/configuration.xml | 2 +- src/docbkx/developer.xml | 10 ++++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/src/docbkx/configuration.xml b/src/docbkx/configuration.xml index 7c4fcf8..cf20311 100644 --- a/src/docbkx/configuration.xml +++ b/src/docbkx/configuration.xml @@ -402,7 +402,7 @@ to ensure well-formedness of your document after an edit session. Distributed modes require an instance of the Hadoop Distributed File System (HDFS). See the Hadoop + xlink:href="http://hadoop.apache.org/common/docs/r1.1.1/api/overview-summary.html#overview_description"> requirements and instructions for how to set up a HDFS. Before proceeding, ensure you have an appropriate, working HDFS. diff --git a/src/docbkx/developer.xml b/src/docbkx/developer.xml index 3c65dc1..930da0e 100644 --- a/src/docbkx/developer.xml +++ b/src/docbkx/developer.xml @@ -163,7 +163,7 @@ mvn clean package -DskipTests
Building the HBase tarball Do the following to build the HBase tarball. - Passing the -Drelease will generate javadoc and run the RAT plugin to verify licenses on source. + Passing the -Prelease will generate javadoc and run the RAT plugin to verify licenses on source. % MAVEN_OPTS="-Xmx2g" mvn clean site install assembly:assembly -DskipTests -Prelease
@@ -501,11 +501,13 @@ error will be reported when a non-existent test case is specified.
Other test invocation permutations -Running mvn test -P runSmallTests will execute small tests only, in a single JVM. +Running mvn test -P runSmallTests will execute "small" tests only, using a single JVM. -Running mvn test -P runMediumTests will execute medium tests in a single JVM. +Running mvn test -P runMediumTests will execute "medium" tests only, launching a new JVM for each test-class. -Running mvn test -P runLargeTests execute medium tests in a single JVM. +Running mvn test -P runLargeTests will execute "large" tests only, launching a new JVM for each test-class. + +For convenience, you can run mvn test -P runDevTests to execute both small and medium tests, using a single JVM.
-- 1.8.1