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 T. Goldblatt
|
820f070c6b
|
Move page quantization to sz module.
|
2019-09-23 23:06:27 -07:00 |
|
Jason Evans
|
c0cc5db871
|
Replace tabs following #define with spaces.
This resolves #564.
|
2017-01-20 21:45:53 -08:00 |
|
Jason Evans
|
f408643a4c
|
Remove extraneous parens around return arguments.
This resolves #540.
|
2017-01-20 21:43:07 -08:00 |
|
Jason Evans
|
c4c2592c83
|
Update brace style.
Add braces around single-line blocks, and remove line breaks before
function-opening braces.
This resolves #537.
|
2017-01-20 21:43:07 -08:00 |
|
Jason Evans
|
ffbb7dac3d
|
Remove leading blank lines from function bodies.
This resolves #535.
|
2017-01-13 14:49:24 -08:00 |
|
Jason Evans
|
977103c897
|
Uniformly cast mallctl[bymib]() oldp/newp arguments to (void *).
This avoids warnings in some cases, and is otherwise generally good
hygiene.
|
2016-10-27 21:31:25 -07:00 |
|
Jason Evans
|
7d63fed0fd
|
Rename huge to large.
|
2016-06-05 20:42:23 -07:00 |
|
Jason Evans
|
498856f44a
|
Move slabs out of chunks.
|
2016-06-05 20:42:23 -07:00 |
|
Jason Evans
|
ed2c2427a7
|
Use huge size class infrastructure for large size classes.
|
2016-06-05 20:42:18 -07:00 |
|
Jason Evans
|
fc0372a15e
|
Replace extent_tree_szad_* with extent_heap_*.
|
2016-06-03 12:27:41 -07:00 |
|