Browse Source

leak tests: mark some misc tests as passing with SANITIZE=leak

Mark some tests that match "*{mktree,commit,diff,grep,rm,merge,hunk}*"
as passing when git is compiled with SANITIZE=leak. They'll now be
listed as running under the "GIT_TEST_PASSING_SANITIZE_LEAK=true" test
mode (the "linux-leaks" CI target).

These were picked because we still have a lot of failures in adjacent
areas, and we didn't have much if any coverage of e.g. grep and diff
before this change, we could still whitelist a lot more tests, but
let's stop for now.

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Ævar Arnfjörð Bjarmason 3 years ago committed by Junio C Hamano
parent
commit
7ff24785cb
  1. 1
      t/t1010-mktree.sh
  2. 1
      t/t1100-commit-tree-options.sh
  3. 1
      t/t3601-rm-pathspec-file.sh
  4. 2
      t/t4002-diff-basic.sh
  5. 1
      t/t4016-diff-quote.sh
  6. 1
      t/t4019-diff-wserror.sh
  7. 1
      t/t4025-hunk-header.sh
  8. 2
      t/t4300-merge-tree.sh
  9. 1
      t/t7813-grep-icase-iso.sh
  10. 1
      t/t7816-grep-binary-pattern.sh

1
t/t1010-mktree.sh

@ -2,6 +2,7 @@ @@ -2,6 +2,7 @@

test_description='git mktree'

TEST_PASSES_SANITIZE_LEAK=true
. ./test-lib.sh

test_expect_success setup '

1
t/t1100-commit-tree-options.sh

@ -12,6 +12,7 @@ Also make sure that command line parser understands the normal @@ -12,6 +12,7 @@ Also make sure that command line parser understands the normal
"flags first and then non flag arguments" command line.
'

TEST_PASSES_SANITIZE_LEAK=true
. ./test-lib.sh

cat >expected <<EOF

1
t/t3601-rm-pathspec-file.sh

@ -2,6 +2,7 @@ @@ -2,6 +2,7 @@

test_description='rm --pathspec-from-file'

TEST_PASSES_SANITIZE_LEAK=true
. ./test-lib.sh

test_tick

2
t/t4002-diff-basic.sh

@ -6,6 +6,8 @@ @@ -6,6 +6,8 @@
test_description='Test diff raw-output.

'

TEST_PASSES_SANITIZE_LEAK=true
. ./test-lib.sh

. "$TEST_DIRECTORY"/lib-read-tree-m-3way.sh

1
t/t4016-diff-quote.sh

@ -6,6 +6,7 @@ @@ -6,6 +6,7 @@
test_description='Quoting paths in diff output.
'

TEST_PASSES_SANITIZE_LEAK=true
. ./test-lib.sh

P0='pathname'

1
t/t4019-diff-wserror.sh

@ -2,6 +2,7 @@ @@ -2,6 +2,7 @@

test_description='diff whitespace error detection'

TEST_PASSES_SANITIZE_LEAK=true
. ./test-lib.sh

test_expect_success setup '

1
t/t4025-hunk-header.sh

@ -2,6 +2,7 @@ @@ -2,6 +2,7 @@

test_description='diff hunk header truncation'

TEST_PASSES_SANITIZE_LEAK=true
. ./test-lib.sh

N='日本語'

2
t/t4300-merge-tree.sh

@ -4,6 +4,8 @@ @@ -4,6 +4,8 @@
#

test_description='git merge-tree'

TEST_PASSES_SANITIZE_LEAK=true
. ./test-lib.sh

test_expect_success setup '

1
t/t7813-grep-icase-iso.sh

@ -2,6 +2,7 @@ @@ -2,6 +2,7 @@

test_description='grep icase on non-English locales'

TEST_PASSES_SANITIZE_LEAK=true
. ./lib-gettext.sh

test_expect_success GETTEXT_ISO_LOCALE 'setup' '

1
t/t7816-grep-binary-pattern.sh

@ -2,6 +2,7 @@ @@ -2,6 +2,7 @@

test_description='git grep with a binary pattern files'

TEST_PASSES_SANITIZE_LEAK=true
. ./lib-gettext.sh

nul_match_internal () {

Loading…
Cancel
Save