David Goldblatt
|
294b276fc7
|
PA: Parameterize emap. Move emap_global to arena.
This lets us test the PA module without interfering with the global emap used by
the real allocator (the one not under test).
|
2020-04-10 13:12:47 -07:00 |
|
Yinan Zhang
|
21dfa4300d
|
Change assert_* to expect_* in tests
```
grep -Irl assert_ test/ | xargs sed -i \
's/witness_assert/witness_do_not_replace/g';
grep -Irl assert_ test/ | xargs sed -i \
's/malloc_mutex_assert_owner/malloc_mutex_do_not_replace_owner/g';
grep -Ir assert_ test/ | grep -o "[_a-zA-Z]*assert_[_a-zA-Z]*" | \
grep -v "^assert_"; # confirm no output
grep -Irl assert_ test/ | xargs sed -i 's/assert_/expect_/g';
grep -Irl witness_do_not_replace test/ | xargs sed -i \
's/witness_do_not_replace/witness_assert/g';
grep -Irl malloc_mutex_do_not_replace_owner test/ | xargs sed -i \
's/malloc_mutex_do_not_replace_owner/malloc_mutex_assert_owner/g';
```
|
2020-02-19 16:03:16 -08:00 |
|
David Goldblatt
|
7e6c8a7286
|
Emap: Standardize naming.
Namespace everything under emap_, always specify what it is we're looking up
(emap_lookup -> emap_edata_lookup), and use "ctx" over "info".
|
2020-02-17 10:50:51 -08:00 |
|
David Goldblatt
|
9b5d105fc3
|
Emap: Move in iealloc.
This is logically scoped to the emap.
|
2020-02-17 10:50:51 -08:00 |
|
David Goldblatt
|
a7862df616
|
Rename extent_t to edata_t.
This frees us up from the unfortunate extent/extent2 naming collision.
|
2019-12-20 10:18:40 -08:00 |
|
Qi Wang
|
6fe11633b0
|
Fix the binshard unit test.
The test attempts to trigger usage of multiple sharded bins, which percpu_arena
makes it less reliable.
|
2019-04-02 16:53:00 -07:00 |
|
Qi Wang
|
441335d924
|
Add unit test for producer-consumer pattern.
|
2018-12-18 15:09:53 -08:00 |
|
Qi Wang
|
711a61f3b4
|
Add unit test for sharded bins.
|
2018-12-03 17:17:03 -08:00 |
|