You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2013/03/04 19:17:15 UTC

svn commit: r1452428 - /hbase/trunk/src/docbkx/developer.xml

Author: stack
Date: Mon Mar  4 18:17:15 2013
New Revision: 1452428

URL: http://svn.apache.org/r1452428
Log:
Fix how to ignore module tests -- params changed

Modified:
    hbase/trunk/src/docbkx/developer.xml

Modified: hbase/trunk/src/docbkx/developer.xml
URL: http://svn.apache.org/viewvc/hbase/trunk/src/docbkx/developer.xml?rev=1452428&r1=1452427&r2=1452428&view=diff
==============================================================================
--- hbase/trunk/src/docbkx/developer.xml (original)
+++ hbase/trunk/src/docbkx/developer.xml Mon Mar  4 18:17:15 2013
@@ -377,11 +377,11 @@ given the dependency tree).</para>
   then you will have run the command from the ROOT HBASE DIRECTORY. This will run the tests in the other
   modules, unless you specify to skip the tests in that module. For instance, to skip the tests in the hbase-server module,
   you would run:
-  <programlisting>mvn clean test -Dskip-server-tests</programlisting>
+  <programlisting>mvn clean test -PskipServerTests</programlisting>
   from the top level directory to run all the tests in modules other than hbase-server. Note that you
   can specify to skip tests in multiple modules as well as just for a single module. For example, to skip
   the tests in <classname>hbase-server</classname> and <classname>hbase-common</classname>, you would run:
-  <programlisting>mvn clean test -Dskip-server-tests -Dskip-common-tests</programlisting>
+  <programlisting>mvn clean test -PskipServerTests -PskipCommonTests</programlisting>
   <para>Also, keep in mind that if you are running tests in the <classname>hbase-server</classname> module you will need to
   apply the maven profiles discussed in <xref linkend="hbase.unittests.cmds"/> to get the tests to run properly.</para>
   </section>