You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-issues@hadoop.apache.org by "Kengo Seki (JIRA)" <ji...@apache.org> on 2015/08/12 18:00:46 UTC

[jira] [Created] (HADOOP-12316) Potential false-positive and false-negative in parsing TAP output

Kengo Seki created HADOOP-12316:
-----------------------------------

             Summary: Potential false-positive and false-negative in parsing TAP output
                 Key: HADOOP-12316
                 URL: https://issues.apache.org/jira/browse/HADOOP-12316
             Project: Hadoop Common
          Issue Type: Sub-task
          Components: yetus
    Affects Versions: HADOOP-12111
            Reporter: Kengo Seki


In tap.sh, TAP results are parsed as follows:

{code}
  filenames=$(find "${TAP_LOG_DIR}" -type f -exec "${GREP}" -l -E "not ok " {} \;)
{code}

But this regex seems to have the following problems:

1. According to [the TAP specification|https://testanything.org/tap-specification.html], "ok" / "not ok" is only required in the test line and others are optional. So each line can be terminated with just "ok" or "not ok", without trailing spaces. In that case, the regex "not ok " will miss test failures.

2. TAP output can contain descriptions and diagnostics. If they contains the string "not ok ", a false-alarm will be raised.

They won't occur as far as we are using only bats, but considering supporting other test tools in the future, the regex should be replaced with "^not ok".




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