http://hbase.apache.org/book.html#hbase.unittests.cmds has the description of the various commands that you can use to run various categories.
Maven docs tell you how to skip some test via config (project file): http://maven.apache.org/plugins/maven-surefire-plugin/examples/inclusion-exclusion.html I am not sure this will work, but you can try using patterns that would exclude tests in -Dtest=... value. On Thu, Nov 1, 2012 at 9:43 AM, Liping Zhang <[email protected]> wrote: > Hello Nicolas, > > Oh, it is a typo. :) Thanks very much! By the way, can you also help to > answer following question? > > HBase unit tests (command `mvn test`) are *seperated into two parts* > in*HBase 0.94.0, > * do you know how to let it only run the first part, but not run the > second part with `mvn test`? How to skip some specific test cases when I > run full Hbase unit tests with 'mvn test' command? Is there any command or > can I set it in some configuration files? > > Highly appreciate and have a good day! > > On Tue, Oct 30, 2012 at 5:27 PM, Nicolas Liochon <[email protected]> wrote: > >> Hi, >> >> It's ok with a capital 'K' >> >> mvn -PlocalTests -Dtest=TestZoo*K*eeper test >> Running org.apache.hadoop.hbase.TestZooKeeper >> Tests run: 9, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 198.84 sec >> >> ;-) >> >> Nicolas >> >> >> On Tue, Oct 30, 2012 at 5:50 AM, Ted Yu <[email protected]> wrote: >> >>> The following command didn't run any test: >>> *mvn -PlocalTests -Dtest=TestZookeeper test* >>> >>> N: >>> Do you know why ? >>> >>> On Mon, Oct 29, 2012 at 8:43 PM, Ted Yu <[email protected]> wrote: >>> >>>> To answer your first question, you need to specify the following: >>>> mvn test -PlocalTests -Dtest= >>>> >>>> >>>> On Mon, Oct 29, 2012 at 8:37 PM, Ted Yu <[email protected]> wrote: >>>> >>>>> Can you try with 0.94.2 or tip of 0.94 ? >>>>> 0.94.0 is quite old. >>>>> >>>>> >>>>> On Mon, Oct 29, 2012 at 8:31 PM, Liping Zhang <[email protected]>wrote: >>>>> >>>>>> Hi hbase deve, QA, Shixing, >>>>>> >>>>>> I'll highly appreciate you if you can answer the questions. >>>>>> >>>>>> >>>>>> Hi Shixing, >>>>>> >>>>>> I found in HBASE-6269, you did a full unit tests, but did you try it >>>>>> successfully with individually running "mvn -Dtest=*TestHRegion *test"? >>>>>> Thanks for your info. >>>>>> >>>>>> >>>>>> >>>>>> ---------- Forwarded message ---------- >>>>>> From: Liping Zhang <[email protected]> >>>>>> Date: Tue, Oct 30, 2012 at 11:18 AM >>>>>> Subject: hbase 0.94.0 failed to individually run test case with >>>>>> org.apache.hadoop.hbase.TestZookeeper >>>>>> To: [email protected], [email protected], [email protected] >>>>>> >>>>>> >>>>>> >>>>>> Hi Ted Yu, Stack and Andrew, >>>>>> >>>>>> How are thing going? I met some issues when I individually run HBase >>>>>> 0.94.0 unit tests, can you help me out? >>>>>> >>>>>> ------------------------- >>>>>> *question #1:* >>>>>> >>>>>> I downloaded with Hbase 0.94.0 and run it with unit tests, found that >>>>>> it was failed to *individually *run >>>>>> org.apache.hadoop.hbase.TestZookeeper and >>>>>> org.apache.hadoop.hbase.regionserver.TestHRegion when I individually ran >>>>>> it >>>>>> with "mvn -Dtest=TestZookeeper test" and "mvn -Dtest=TestHRegion test". >>>>>> It >>>>>> seems there was no unit testThe result showed as following: >>>>>> >>>>>> >>>>>> ------------------------------------------------------- >>>>>> T E S T S >>>>>> ------------------------------------------------------- >>>>>> >>>>>> Results : >>>>>> >>>>>> *Tests run: 0, Failures: 0, Errors: 0, Skipped: 0 >>>>>> >>>>>> >>>>>> -------------------------- >>>>>> question #2:* >>>>>> >>>>>> How to skip to some test cases when I run full Hbase unit tests? Is >>>>>> there any command? >>>>>> >>>>>> >>>>>> ---------------------------- >>>>>> *question #3:* >>>>>> I tried individual tests, and found that it didn't run any test case >>>>>> with "mvn -Dtest=*TestHRegion *test", but it can run test cases with >>>>>> "mvn -Dtest=*TestKeyValue,TestHRegion* test", do you know why it >>>>>> happens? >>>>>> * >>>>>> * >>>>>> Thanks very much for your answering! >>>>>> >>>>>> -- >>>>>> Thanks! >>>>>> >>>>>> Best Regards, >>>>>> Liping Zhang >>>>>> >>>>>> >>>>>> >>>>>> >>>>>> -- >>>>>> Thanks! >>>>>> >>>>>> Best Regards, >>>>>> Liping Zhang(张 莉苹) >>>>>> >>>>>> >>>>> >>>> >>> >> > > > -- > Thanks! > > Best Regards, > Liping Zhang(张 莉苹)
