Add witness_assert_depth[_to_rank]().
This makes it possible to make lock state assertions about precisely which locks are held.
This commit is contained in:
@@ -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_lock_depth_error_t *witness_lock_depth_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_lock_depth_error;
|
||||
static bool saw_depth_error;
|
||||
|
||||
static void
|
||||
witness_lock_error_intercept(const witness_list_t *witnesses,
|
||||
@@ -33,11 +33,9 @@ witness_not_owner_error_intercept(const witness_t *witness)
|
||||
}
|
||||
|
||||
static void
|
||||
witness_lock_depth_error_intercept(const witness_list_t *witnesses,
|
||||
unsigned depth)
|
||||
{
|
||||
|
||||
saw_lock_depth_error = true;
|
||||
witness_depth_error_intercept(const witness_list_t *witnesses,
|
||||
witness_rank_t rank_inclusive, unsigned depth) {
|
||||
saw_depth_error = true;
|
||||
}
|
||||
|
||||
static int
|
||||
@@ -67,25 +65,37 @@ TEST_BEGIN(test_witness)
|
||||
|
||||
tsdn = tsdn_fetch();
|
||||
|
||||
witness_assert_lock_depth(tsdn, 0);
|
||||
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);
|
||||
witness_assert_not_owner(tsdn, &a);
|
||||
witness_lock(tsdn, &a);
|
||||
witness_assert_owner(tsdn, &a);
|
||||
witness_assert_lock_depth(tsdn, 1);
|
||||
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);
|
||||
witness_assert_not_owner(tsdn, &b);
|
||||
witness_lock(tsdn, &b);
|
||||
witness_assert_owner(tsdn, &b);
|
||||
witness_assert_lock_depth(tsdn, 2);
|
||||
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_lock_depth(tsdn, 1);
|
||||
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_lock_depth(tsdn, 0);
|
||||
witness_assert_lockless(tsdn);
|
||||
witness_assert_depth(tsdn, 0);
|
||||
witness_assert_depth_to_rank(tsdn, (witness_rank_t)1U, 0);
|
||||
}
|
||||
TEST_END
|
||||
|
||||
@@ -98,21 +108,21 @@ TEST_BEGIN(test_witness_comp)
|
||||
|
||||
tsdn = tsdn_fetch();
|
||||
|
||||
witness_assert_lock_depth(tsdn, 0);
|
||||
witness_assert_lockless(tsdn);
|
||||
|
||||
witness_init(&a, "a", 1, witness_comp);
|
||||
witness_assert_not_owner(tsdn, &a);
|
||||
witness_lock(tsdn, &a);
|
||||
witness_assert_owner(tsdn, &a);
|
||||
witness_assert_lock_depth(tsdn, 1);
|
||||
witness_assert_depth(tsdn, 1);
|
||||
|
||||
witness_init(&b, "b", 1, witness_comp);
|
||||
witness_assert_not_owner(tsdn, &b);
|
||||
witness_lock(tsdn, &b);
|
||||
witness_assert_owner(tsdn, &b);
|
||||
witness_assert_lock_depth(tsdn, 2);
|
||||
witness_assert_depth(tsdn, 2);
|
||||
witness_unlock(tsdn, &b);
|
||||
witness_assert_lock_depth(tsdn, 1);
|
||||
witness_assert_depth(tsdn, 1);
|
||||
|
||||
witness_lock_error_orig = witness_lock_error;
|
||||
witness_lock_error = witness_lock_error_intercept;
|
||||
@@ -124,7 +134,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_lock_depth(tsdn, 1);
|
||||
witness_assert_depth(tsdn, 1);
|
||||
|
||||
saw_lock_error = false;
|
||||
|
||||
@@ -134,11 +144,11 @@ TEST_BEGIN(test_witness_comp)
|
||||
witness_lock(tsdn, &d);
|
||||
assert_true(saw_lock_error, "Expected witness lock error");
|
||||
witness_unlock(tsdn, &d);
|
||||
witness_assert_lock_depth(tsdn, 1);
|
||||
witness_assert_depth(tsdn, 1);
|
||||
|
||||
witness_unlock(tsdn, &a);
|
||||
|
||||
witness_assert_lock_depth(tsdn, 0);
|
||||
witness_assert_lockless(tsdn);
|
||||
|
||||
witness_lock_error = witness_lock_error_orig;
|
||||
}
|
||||
@@ -157,22 +167,22 @@ TEST_BEGIN(test_witness_reversal)
|
||||
|
||||
tsdn = tsdn_fetch();
|
||||
|
||||
witness_assert_lock_depth(tsdn, 0);
|
||||
witness_assert_lockless(tsdn);
|
||||
|
||||
witness_init(&a, "a", 1, NULL);
|
||||
witness_init(&b, "b", 2, NULL);
|
||||
|
||||
witness_lock(tsdn, &b);
|
||||
witness_assert_lock_depth(tsdn, 1);
|
||||
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_lock_depth(tsdn, 1);
|
||||
witness_assert_depth(tsdn, 1);
|
||||
witness_unlock(tsdn, &b);
|
||||
|
||||
witness_assert_lock_depth(tsdn, 0);
|
||||
witness_assert_lockless(tsdn);
|
||||
|
||||
witness_lock_error = witness_lock_error_orig;
|
||||
}
|
||||
@@ -195,7 +205,7 @@ TEST_BEGIN(test_witness_recursive)
|
||||
|
||||
tsdn = tsdn_fetch();
|
||||
|
||||
witness_assert_lock_depth(tsdn, 0);
|
||||
witness_assert_lockless(tsdn);
|
||||
|
||||
witness_init(&a, "a", 1, NULL);
|
||||
|
||||
@@ -208,7 +218,7 @@ TEST_BEGIN(test_witness_recursive)
|
||||
|
||||
witness_unlock(tsdn, &a);
|
||||
|
||||
witness_assert_lock_depth(tsdn, 0);
|
||||
witness_assert_lockless(tsdn);
|
||||
|
||||
witness_owner_error = witness_owner_error_orig;
|
||||
witness_lock_error = witness_lock_error_orig;
|
||||
@@ -229,7 +239,7 @@ TEST_BEGIN(test_witness_unlock_not_owned)
|
||||
|
||||
tsdn = tsdn_fetch();
|
||||
|
||||
witness_assert_lock_depth(tsdn, 0);
|
||||
witness_assert_lockless(tsdn);
|
||||
|
||||
witness_init(&a, "a", 1, NULL);
|
||||
|
||||
@@ -237,41 +247,44 @@ TEST_BEGIN(test_witness_unlock_not_owned)
|
||||
witness_unlock(tsdn, &a);
|
||||
assert_true(saw_owner_error, "Expected owner error");
|
||||
|
||||
witness_assert_lock_depth(tsdn, 0);
|
||||
witness_assert_lockless(tsdn);
|
||||
|
||||
witness_owner_error = witness_owner_error_orig;
|
||||
}
|
||||
TEST_END
|
||||
|
||||
TEST_BEGIN(test_witness_lock_depth)
|
||||
{
|
||||
TEST_BEGIN(test_witness_depth) {
|
||||
witness_t a;
|
||||
tsdn_t *tsdn;
|
||||
|
||||
test_skip_if(!config_debug);
|
||||
|
||||
witness_lock_depth_error_orig = witness_lock_depth_error;
|
||||
witness_lock_depth_error = witness_lock_depth_error_intercept;
|
||||
saw_lock_depth_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_lock_depth(tsdn, 0);
|
||||
witness_assert_lockless(tsdn);
|
||||
witness_assert_depth(tsdn, 0);
|
||||
|
||||
witness_init(&a, "a", 1, NULL);
|
||||
|
||||
assert_false(saw_lock_depth_error, "Unexpected lock_depth error");
|
||||
witness_assert_lock_depth(tsdn, 0);
|
||||
assert_false(saw_depth_error, "Unexpected depth error");
|
||||
witness_assert_lockless(tsdn);
|
||||
witness_assert_depth(tsdn, 0);
|
||||
|
||||
witness_lock(tsdn, &a);
|
||||
witness_assert_lock_depth(tsdn, 0);
|
||||
assert_true(saw_lock_depth_error, "Expected lock_depth error");
|
||||
witness_assert_lockless(tsdn);
|
||||
witness_assert_depth(tsdn, 0);
|
||||
assert_true(saw_depth_error, "Expected depth error");
|
||||
|
||||
witness_unlock(tsdn, &a);
|
||||
|
||||
witness_assert_lock_depth(tsdn, 0);
|
||||
witness_assert_lockless(tsdn);
|
||||
witness_assert_depth(tsdn, 0);
|
||||
|
||||
witness_lock_depth_error = witness_lock_depth_error_orig;
|
||||
witness_depth_error = witness_depth_error_orig;
|
||||
}
|
||||
TEST_END
|
||||
|
||||
@@ -279,11 +292,11 @@ int
|
||||
main(void)
|
||||
{
|
||||
|
||||
return (test(
|
||||
return test(
|
||||
test_witness,
|
||||
test_witness_comp,
|
||||
test_witness_reversal,
|
||||
test_witness_recursive,
|
||||
test_witness_unlock_not_owned,
|
||||
test_witness_lock_depth));
|
||||
test_witness_depth);
|
||||
}
|
||||
|
Reference in New Issue
Block a user