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 2011/12/15 19:20:48 UTC

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

Author: stack
Date: Thu Dec 15 18:20:48 2011
New Revision: 1214900

URL: http://svn.apache.org/viewvc?rev=1214900&view=rev
Log:
Add note on how to do single test w/ security profile enabled

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=1214900&r1=1214899&r2=1214900&view=diff
==============================================================================
--- hbase/trunk/src/docbkx/developer.xml (original)
+++ hbase/trunk/src/docbkx/developer.xml Thu Dec 15 18:20:48 2011
@@ -247,6 +247,8 @@ pass multiple, individual tests as a com
 <programlisting>mvn test -P localTests -Dtest=MyTest1,MyTest2,MyTest3</programlisting>
 You can also pass a package, which will run all tests under the package:
 <programlisting>mvn test -P localTests -Dtest=org.apache.hadoop.hbase.client.*</programlisting>
+To run a single test with the security profile enabled:
+<programlisting>mvn test -P security,localTests -Dtest=TestGet</programlisting>
 </para>
 
 <para>