You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Carl Steinbach (Commented) (JIRA)" <ji...@apache.org> on 2012/02/02 21:16:54 UTC

[jira] [Commented] (HIVE-2776) Setting test.silent=false has not effect

    [ https://issues.apache.org/jira/browse/HIVE-2776?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13199175#comment-13199175 ] 

Carl Steinbach commented on HIVE-2776:
--------------------------------------

QTestUtil and the various CliDriver templates all print out the following help message:

{noformat}
try "ant test ... -Dtest.silent=false" to get more logs.
{noformat}

However, it turns out that test.silent=false by default, and you change the behavior of the tests only by setting test.silent=true.

>From MapredLocalTask:

{noformat}
      String isSilent = "true".equalsIgnoreCase(System.getProperty("test.silent")) ? "-nolog" : "";
{noformat}

>From MapRedTask:

{noformat}
      String isSilent = "true".equalsIgnoreCase(System
          .getProperty("test.silent")) ? "-nolog" : "";
{noformat}

                
> Setting test.silent=false has not effect
> ----------------------------------------
>
>                 Key: HIVE-2776
>                 URL: https://issues.apache.org/jira/browse/HIVE-2776
>             Project: Hive
>          Issue Type: Bug
>          Components: Testing Infrastructure
>            Reporter: Carl Steinbach
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira