aboutsummaryrefslogtreecommitdiff
path: root/tests/bionic_allocator_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bionic_allocator_test.cpp')
-rw-r--r--tests/bionic_allocator_test.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/bionic_allocator_test.cpp b/tests/bionic_allocator_test.cpp
index f71090704..fdcf86827 100644
--- a/tests/bionic_allocator_test.cpp
+++ b/tests/bionic_allocator_test.cpp
@@ -42,19 +42,19 @@ namespace {
* this one has size below allocator cap which is 2*sizeof(void*)
*/
struct test_struct_small {
- char dummy_str[5];
+ char str[5];
};
struct test_struct_large {
- char dummy_str[1009];
+ char str[1009];
};
struct test_struct_huge {
- char dummy_str[73939];
+ char str[73939];
};
struct test_struct_512 {
- char dummy_str[503];
+ char str[503];
};
};