summaryrefslogtreecommitdiff
path: root/tests/bionic_allocator_test.cpp
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2020-07-21 16:11:30 -0700
committerElliott Hughes <enh@google.com>2020-07-21 16:34:58 -0700
commit68ae6ad12e4f89526638f167c380d0b28b3bdeac (patch)
treee18075751c1f0d08d94d7c6be14e1a18b560b285 /tests/bionic_allocator_test.cpp
parentc79ea239415963d4a38752d0f3efe50531c8e04f (diff)
Changes for #inclusivefixit.
Test: treehugger Change-Id: I7ff0496c5c2792a41781e74634247f55b0548213
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];
};
};