You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by "Zhijie Shen (JIRA)" <ji...@apache.org> on 2013/03/10 02:09:12 UTC

[jira] [Created] (HADOOP-9389) test-patch marks -1 due to a context @Test by mistake

Zhijie Shen created HADOOP-9389:
-----------------------------------

             Summary: test-patch marks -1 due to a context @Test by mistake
                 Key: HADOOP-9389
                 URL: https://issues.apache.org/jira/browse/HADOOP-9389
             Project: Hadoop Common
          Issue Type: Bug
            Reporter: Zhijie Shen


HADOOP-9112 enables the function of marking -1 when the newly added tests don't have timeout. However, test-patch will mark -1 due to a context @Test by mistake. Bellow is the problematic part of the YARN-378_3.patch that I've created.

{code}
+    }
+  }
+
   @Test
   public void testRMAppSubmitWithQueueAndName() throws Exception {
     long now = System.currentTimeMillis();
{code}

There's a @Test without timeout (most existing tests don't have timeout) in the context. In test-patch, $AWK '\{ printf "%s ", $0 \}' collapses these lines into one line, i.e.,

{code}
+    } +  } +    @Test    public void testRMAppSubmitWithQueueAndName() throws Exception {      long now = System.currentTimeMillis();
{code}

Then, @Test in the context follows a "+", and is regarded as a newly added test by mistake. Consequently, the following regex will accept the context @Test. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira