aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/fstree_xattr.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/fstree_xattr.c b/tests/fstree_xattr.c
index edafd8c..36b90ec 100644
--- a/tests/fstree_xattr.c
+++ b/tests/fstree_xattr.c
@@ -71,6 +71,11 @@ int main(void)
assert(a->xattr != b->xattr);
assert(a->xattr != c->xattr);
+ assert(str_table_get_ref_count(&fs.xattr_keys,
+ a->xattr->attr[0].key_index) == 3);
+ assert(str_table_get_ref_count(&fs.xattr_values,
+ a->xattr->attr[0].value_index) == 2);
+
fstree_cleanup(&fs);
return EXIT_SUCCESS;
}