tests: fix test-oid-array leak, test in SANITIZE=leak
Fix a trivial memory leak present ever since 38d905bf58
(sha1-array:
add test-sha1-array and basic tests, 2014-10-01), now that that's
fixed we can test this under GIT_TEST_PASSING_SANITIZE_LEAK=true.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
parent
926d233035
commit
6ad66ab45e
|
@ -35,5 +35,9 @@ int cmd__oid_array(int argc, const char **argv)
|
||||||
else
|
else
|
||||||
die("unknown command: %s", line.buf);
|
die("unknown command: %s", line.buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
strbuf_release(&line);
|
||||||
|
oid_array_clear(&array);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
test_description='basic tests for the oid array implementation'
|
test_description='basic tests for the oid array implementation'
|
||||||
|
|
||||||
|
TEST_PASSES_SANITIZE_LEAK=true
|
||||||
. ./test-lib.sh
|
. ./test-lib.sh
|
||||||
|
|
||||||
echoid () {
|
echoid () {
|
||||||
|
|
Loading…
Reference in New Issue