Akira AJISAKA created HADOOP-11673:
--------------------------------------

             Summary: Use org.junit.Assume to skip tests instead of return
                 Key: HADOOP-11673
                 URL: https://issues.apache.org/jira/browse/HADOOP-11673
             Project: Hadoop Common
          Issue Type: Improvement
          Components: test
            Reporter: Akira AJISAKA
            Priority: Minor


We see the following code many times:
{code:title=TestCodec.java}
    if (!ZlibFactory.isNativeZlibLoaded(conf)) {
      LOG.warn("skipped: native libs not loaded");
      return;
    }
{code}
If {{ZlibFactory.isNativeZlibLoaded(conf)}} is false, the test will *pass*, 
with a warn log. I'd like to *skip* this test case by using 
{{org.junit.Assume}}.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to