diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-08-04 12:07:19 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-08-04 16:17:25 +1000 |
commit | 73677875b46251f59b66c9713f1decc89bd2ea3e (patch) | |
tree | 95867ecc54a8b252c74863d5e919284dae77a65f | |
parent | 2331610a2e33498527070c45debfea418a97717d (diff) | |
download | samba-73677875b46251f59b66c9713f1decc89bd2ea3e.tar.gz samba-73677875b46251f59b66c9713f1decc89bd2ea3e.tar.bz2 samba-73677875b46251f59b66c9713f1decc89bd2ea3e.zip |
talloc: check block count aftter references test
Pair-Programmed-With: Amitay Isaacs <amitay@gmail.com>
-rw-r--r-- | lib/talloc/testsuite.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/talloc/testsuite.c b/lib/talloc/testsuite.c index b038d340d1..003d74bf6d 100644 --- a/lib/talloc/testsuite.c +++ b/lib/talloc/testsuite.c @@ -1317,6 +1317,7 @@ static bool test_rusty(void) talloc_increase_ref_count(p1); talloc_report_full(root, stdout); talloc_free(root); + CHECK_BLOCKS("null_context", NULL, 2); return true; } |