diff options
| author | Douglas Rumbaugh <dbr4@psu.edu> | 2025-02-04 14:52:18 -0500 |
|---|---|---|
| committer | Douglas Rumbaugh <dbr4@psu.edu> | 2025-02-04 14:52:18 -0500 |
| commit | 5ee10c336581b68ba91c7048431809e3ccaf7e87 (patch) | |
| tree | 39bf1963757ed1b0a0817dd58b99b09c83844b71 /tests/include/concurrent_extension.h | |
| parent | 4376f5f177a5766f496405921d8ede92a376773c (diff) | |
| download | dynamic-extension-5ee10c336581b68ba91c7048431809e3ccaf7e87.tar.gz | |
Bug fixes
Diffstat (limited to 'tests/include/concurrent_extension.h')
| -rw-r--r-- | tests/include/concurrent_extension.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/include/concurrent_extension.h b/tests/include/concurrent_extension.h index f6d01fd..63ccf87 100644 --- a/tests/include/concurrent_extension.h +++ b/tests/include/concurrent_extension.h @@ -137,6 +137,11 @@ START_TEST(t_insert_with_mem_merges) if (test_de->insert(r)) { r = R{r.key + 1, r.value + 1}; cnt++; + + if (test_de->get_record_count() != cnt + 1000) { + fprintf(stderr, "here!\n"); + + } ck_assert_int_eq(test_de->get_record_count(), cnt + 1000); } else { _mm_pause(); |