summaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authorJason Evans <jasone@canonware.com>2017-01-21 23:12:03 (GMT)
committerJason Evans <jasone@canonware.com>2017-02-02 00:43:46 (GMT)
commitd0e93ada51e20f4ae394ff4dbdcf96182767c89c (patch)
treecf7cd65abb5fe54a80d6a75fc58c4833b7599d94 /test/unit
parentace679ce7435e990df6b789fde4cefeb0e6b992b (diff)
downloadjemalloc-d0e93ada51e20f4ae394ff4dbdcf96182767c89c.zip
jemalloc-d0e93ada51e20f4ae394ff4dbdcf96182767c89c.tar.gz
jemalloc-d0e93ada51e20f4ae394ff4dbdcf96182767c89c.tar.bz2
Add witness_assert_depth[_to_rank]().
This makes it possible to make lock state assertions about precisely which locks are held.
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/witness.c51
1 files changed, 39 insertions, 12 deletions
diff --git a/test/unit/witness.c b/test/unit/witness.c
index c914e4b..de2e602 100644
--- a/test/unit/witness.c
+++ b/test/unit/witness.c
@@ -3,12 +3,12 @@
static witness_lock_error_t *witness_lock_error_orig;
static witness_owner_error_t *witness_owner_error_orig;
static witness_not_owner_error_t *witness_not_owner_error_orig;
-static witness_lockless_error_t *witness_lockless_error_orig;
+static witness_depth_error_t *witness_depth_error_orig;
static bool saw_lock_error;
static bool saw_owner_error;
static bool saw_not_owner_error;
-static bool saw_lockless_error;
+static bool saw_depth_error;
static void
witness_lock_error_intercept(const witness_list_t *witnesses,
@@ -27,8 +27,9 @@ witness_not_owner_error_intercept(const witness_t *witness) {
}
static void
-witness_lockless_error_intercept(const witness_list_t *witnesses) {
- saw_lockless_error = true;
+witness_depth_error_intercept(const witness_list_t *witnesses,
+ witness_rank_t rank_inclusive, unsigned depth) {
+ saw_depth_error = true;
}
static int
@@ -61,21 +62,36 @@ TEST_BEGIN(test_witness) {
tsdn = tsdn_fetch();
witness_assert_lockless(tsdn);
+ witness_assert_depth(tsdn, 0);
+ witness_assert_depth_to_rank(tsdn, (witness_rank_t)1U, 0);
witness_init(&a, "a", 1, NULL, NULL);
witness_assert_not_owner(tsdn, &a);
witness_lock(tsdn, &a);
witness_assert_owner(tsdn, &a);
+ witness_assert_depth(tsdn, 1);
+ witness_assert_depth_to_rank(tsdn, (witness_rank_t)1U, 1);
+ witness_assert_depth_to_rank(tsdn, (witness_rank_t)2U, 0);
witness_init(&b, "b", 2, NULL, NULL);
witness_assert_not_owner(tsdn, &b);
witness_lock(tsdn, &b);
witness_assert_owner(tsdn, &b);
+ witness_assert_depth(tsdn, 2);
+ witness_assert_depth_to_rank(tsdn, (witness_rank_t)1U, 2);
+ witness_assert_depth_to_rank(tsdn, (witness_rank_t)2U, 1);
+ witness_assert_depth_to_rank(tsdn, (witness_rank_t)3U, 0);
witness_unlock(tsdn, &a);
+ witness_assert_depth(tsdn, 1);
+ witness_assert_depth_to_rank(tsdn, (witness_rank_t)1U, 1);
+ witness_assert_depth_to_rank(tsdn, (witness_rank_t)2U, 1);
+ witness_assert_depth_to_rank(tsdn, (witness_rank_t)3U, 0);
witness_unlock(tsdn, &b);
witness_assert_lockless(tsdn);
+ witness_assert_depth(tsdn, 0);
+ witness_assert_depth_to_rank(tsdn, (witness_rank_t)1U, 0);
}
TEST_END
@@ -93,12 +109,15 @@ TEST_BEGIN(test_witness_comp) {
witness_assert_not_owner(tsdn, &a);
witness_lock(tsdn, &a);
witness_assert_owner(tsdn, &a);
+ witness_assert_depth(tsdn, 1);
witness_init(&b, "b", 1, witness_comp, &b);
witness_assert_not_owner(tsdn, &b);
witness_lock(tsdn, &b);
witness_assert_owner(tsdn, &b);
+ witness_assert_depth(tsdn, 2);
witness_unlock(tsdn, &b);
+ witness_assert_depth(tsdn, 1);
witness_lock_error_orig = witness_lock_error;
witness_lock_error = witness_lock_error_intercept;
@@ -110,6 +129,7 @@ TEST_BEGIN(test_witness_comp) {
witness_lock(tsdn, &c);
assert_true(saw_lock_error, "Expected witness lock error");
witness_unlock(tsdn, &c);
+ witness_assert_depth(tsdn, 1);
saw_lock_error = false;
@@ -119,6 +139,7 @@ TEST_BEGIN(test_witness_comp) {
witness_lock(tsdn, &d);
assert_true(saw_lock_error, "Expected witness lock error");
witness_unlock(tsdn, &d);
+ witness_assert_depth(tsdn, 1);
witness_unlock(tsdn, &a);
@@ -146,11 +167,13 @@ TEST_BEGIN(test_witness_reversal) {
witness_init(&b, "b", 2, NULL, NULL);
witness_lock(tsdn, &b);
+ witness_assert_depth(tsdn, 1);
assert_false(saw_lock_error, "Unexpected witness lock error");
witness_lock(tsdn, &a);
assert_true(saw_lock_error, "Expected witness lock error");
witness_unlock(tsdn, &a);
+ witness_assert_depth(tsdn, 1);
witness_unlock(tsdn, &b);
witness_assert_lockless(tsdn);
@@ -222,34 +245,38 @@ TEST_BEGIN(test_witness_unlock_not_owned) {
}
TEST_END
-TEST_BEGIN(test_witness_lockful) {
+TEST_BEGIN(test_witness_depth) {
witness_t a;
tsdn_t *tsdn;
test_skip_if(!config_debug);
- witness_lockless_error_orig = witness_lockless_error;
- witness_lockless_error = witness_lockless_error_intercept;
- saw_lockless_error = false;
+ witness_depth_error_orig = witness_depth_error;
+ witness_depth_error = witness_depth_error_intercept;
+ saw_depth_error = false;
tsdn = tsdn_fetch();
witness_assert_lockless(tsdn);
+ witness_assert_depth(tsdn, 0);
witness_init(&a, "a", 1, NULL, NULL);
- assert_false(saw_lockless_error, "Unexpected lockless error");
+ assert_false(saw_depth_error, "Unexpected depth error");
witness_assert_lockless(tsdn);
+ witness_assert_depth(tsdn, 0);
witness_lock(tsdn, &a);
witness_assert_lockless(tsdn);
- assert_true(saw_lockless_error, "Expected lockless error");
+ witness_assert_depth(tsdn, 0);
+ assert_true(saw_depth_error, "Expected depth error");
witness_unlock(tsdn, &a);
witness_assert_lockless(tsdn);
+ witness_assert_depth(tsdn, 0);
- witness_lockless_error = witness_lockless_error_orig;
+ witness_depth_error = witness_depth_error_orig;
}
TEST_END
@@ -261,5 +288,5 @@ main(void) {
test_witness_reversal,
test_witness_recursive,
test_witness_unlock_not_owned,
- test_witness_lockful);
+ test_witness_depth);
}