Home
last modified time | relevance | path

Searched refs:unit_err (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/contrib/openzfs/tests/unit/
H A Dtest_zap.c227 unit_err(zap_lookup_by_dnode(dn, "nope", in test_zap_basic()
232 unit_err(zap_lookup_by_dnode(dn, "world", in test_zap_basic()
279 unit_err(zap_add_by_dnode(dn, "a", in test_zap_add()
284 unit_err(zap_add_by_dnode(dn, "a", in test_zap_add()
342 unit_err(zap_remove_by_dnode(dn, "a", tx), ENOENT); in test_zap_remove()
354 unit_err( in test_zap_remove()
414 unit_err(zap_contains_by_dnode(dn, "b"), ENOENT); in test_zap_contains()
443 unit_err(zap_length_by_dnode(dn, "nope", &isz, &nint), ENOENT); in test_zap_length()
493 unit_err(zap_lookup_by_dnode(dn, "a", in test_zap_increment()
498 unit_err(zap_lookup_by_dnode(dn, "a", in test_zap_increment()
[all …]
H A Dtest_namecheck.c54 unit_err(fn(name, &why, &what), -1); in check_invalid()
243 unit_err(mountpoint_namecheck("relative/path", &why), -1); in test_mountpoint_namecheck()
247 unit_err(mountpoint_namecheck(NULL, &why), -1); in test_mountpoint_namecheck()
255 unit_err(mountpoint_namecheck(buf, &why), -1); in test_mountpoint_namecheck()
283 unit_err(dataset_nestcheck("a/b/c"), -1); /* depth 2, at 2 */ in test_dataset_depth()
H A Dunit.h58 #define unit_err(a, e) munit_assert_int((a), ==, (e)) macro