1. 01 10月, 2008 1 次提交
  2. 05 9月, 2008 1 次提交
    • J
      log --author/--committer: really match only with name part · a4d7d2c6
      Junio C Hamano 提交于
      When we tried to find commits done by AUTHOR, the first implementation
      tried to pattern match a line with "^author .*AUTHOR", which later was
      enhanced to strip leading caret and look for "^author AUTHOR" when the
      search pattern was anchored at the left end (i.e. --author="^AUTHOR").
      
      This had a few problems:
      
       * When looking for fixed strings (e.g. "git log -F --author=x --grep=y"),
         the regexp internally used "^author .*x" would never match anything;
      
       * To match at the end (e.g. "git log --author='google.com>$'"), the
         generated regexp has to also match the trailing timestamp part the
         commit header lines have.  Also, in order to determine if the '$' at
         the end means "match at the end of the line" or just a literal dollar
         sign (probably backslash-quoted), we would need to parse the regexp
         ourselves.
      
      An earlier alternative tried to make sure that a line matches "^author "
      (to limit by field name) and the user supplied pattern at the same time.
      While it solved the -F problem by introducing a special override for
      matching the "^author ", it did not solve the trailing timestamp nor tail
      match problem.  It also would have matched every commit if --author=author
      was asked for, not because the author's email part had this string, but
      because every commit header line that talks about the author begins with
      that field name, regardleses of who wrote it.
      
      Instead of piling more hacks on top of hacks, this rethinks the grep
      machinery that is used to look for strings in the commit header, and makes
      sure that (1) field name matches literally at the beginning of the line,
      followed by a SP, and (2) the user supplied pattern is matched against the
      remainder of the line, excluding the trailing timestamp data.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      a4d7d2c6
  3. 02 2月, 2008 1 次提交
    • J
      Sane use of test_expect_failure · 41ac414e
      Junio C Hamano 提交于
      Originally, test_expect_failure was designed to be the opposite
      of test_expect_success, but this was a bad decision.  Most tests
      run a series of commands that leads to the single command that
      needs to be tested, like this:
      
          test_expect_{success,failure} 'test title' '
      	setup1 &&
              setup2 &&
              setup3 &&
              what is to be tested
          '
      
      And expecting a failure exit from the whole sequence misses the
      point of writing tests.  Your setup$N that are supposed to
      succeed may have failed without even reaching what you are
      trying to test.  The only valid use of test_expect_failure is to
      check a trivial single command that is expected to fail, which
      is a minority in tests of Porcelain-ish commands.
      
      This large-ish patch rewrites all uses of test_expect_failure to
      use test_expect_success and rewrites the condition of what is
      tested, like this:
      
          test_expect_success 'test title' '
      	setup1 &&
              setup2 &&
              setup3 &&
              ! this command should fail
          '
      
      test_expect_failure is redefined to serve as a reminder that
      that test *should* succeed but due to a known breakage in git it
      currently does not pass.  So if git-foo command should create a
      file 'bar' but you discovered a bug that it doesn't, you can
      write a test like this:
      
          test_expect_failure 'git-foo should create bar' '
              rm -f bar &&
              git foo &&
              test -f bar
          '
      
      This construct acts similar to test_expect_success, but instead
      of reporting "ok/FAIL" like test_expect_success does, the
      outcome is reported as "FIXED/still broken".
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      41ac414e
  4. 15 9月, 2007 1 次提交
    • J
      Split grep arguments in a way that does not requires to add /dev/null. · d99ebf08
      Junio C Hamano 提交于
      In order to (almost) always show the name of the file without
      relying on "-H" option of GNU grep, we used to add /dev/null to
      the argument list unless we are doing -l or -L.  This caused
      "/dev/null:0" to show up when -c is given in the output.
      
      It is not enough to add -c to the set of options we do not pass
      /dev/null for.  When we have too many files, we invoke grep
      multiple times and we need to avoid giving a widow filename to
      the last invocation -- otherwise we will not see the name.
      
      This keeps two filenames when the argv[] buffer is about to
      overflow and we have not finished iterating over the index, so
      that the last round will always have at least two paths to work
      with (and not require /dev/null).
      
      An obvious and the only exception is when there is only 1 file
      that is given to the underlying grep, and in that case we avoid
      passing /dev/null and let the external "grep -c" report only the
      number of matches.
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      d99ebf08
  5. 12 8月, 2006 1 次提交
  6. 06 8月, 2006 1 次提交
    • J
      Fix "grep -w" · f25b7939
      Junio C Hamano 提交于
      We used to find the first match of the pattern and then if the
      match is not for the entire word, declared that the whole line
      does not match.
      
      But that is wrong.  The command "git grep -w -e mmap" should
      find that a line "foo_mmap bar mmap baz" matches, by tring the
      second instance of pattern "mmap" on the same line.
      
      Problems an earlier round of "fix" had were pointed out by Morten
      Welinder, which have been incorporated in the t7002 tests.
      Signed-off-by: NJunio C Hamano <junkio@cox.net>
      f25b7939