You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@yetus.apache.org by "Allen Wittenauer (JIRA)" <ji...@apache.org> on 2018/08/23 14:24:00 UTC

[jira] [Reopened] (YETUS-660) checkstyle should report when it fails to execute

     [ https://issues.apache.org/jira/browse/YETUS-660?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Allen Wittenauer reopened YETUS-660:
------------------------------------

There's a slight optimization bug here:

{code}
  for index in ${MAVEN_NEED_INSTALL}; do
    need=true
  done
{code}

is supposed to be:

{code}
  for index in ${MAVEN_NEED_INSTALL}; do
    if verify_needed_test "${index}"; then
      need=true
    fi
  done
{code}

As a result, mvn install is running even when it isn't needed.

> checkstyle should report when it fails to execute
> -------------------------------------------------
>
>                 Key: YETUS-660
>                 URL: https://issues.apache.org/jira/browse/YETUS-660
>             Project: Yetus
>          Issue Type: Bug
>          Components: Test Patch
>            Reporter: Allen Wittenauer
>            Assignee: Allen Wittenauer
>            Priority: Major
>             Fix For: 0.8.0
>
>         Attachments: YETUS-660.00.patch, YETUS-660.01.patch
>
>
> As shown in HDDS-119/HADOOP-15675, the checkstyle plug-in fails to determine if it didn't actually run. 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)