summaryrefslogtreecommitdiff
path: root/test/scudo/realloc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/scudo/realloc.cpp')
-rw-r--r--test/scudo/realloc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/scudo/realloc.cpp b/test/scudo/realloc.cpp
index dfad40197..cc4459500 100644
--- a/test/scudo/realloc.cpp
+++ b/test/scudo/realloc.cpp
@@ -20,7 +20,7 @@ int main(int argc, char **argv)
{
void *p, *old_p;
// Those sizes will exercise both allocators (Primary & Secondary).
- std::vector<size_t> sizes{1, 1 << 5, 1 << 10, 1 << 15, 1 << 20};
+ std::vector<size_t> sizes{1, 16, 1024, 32768, 1 << 16, 1 << 17, 1 << 20};
assert(argc == 2);
for (size_t size : sizes) {