summaryrefslogtreecommitdiff
path: root/tests/bionic_allocator_test.cpp
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2020-07-23 02:11:05 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2020-07-23 02:11:05 +0000
commitdd534e700dfafab38f04cf92c9bd824f113cf4bd (patch)
treee9a2fedf55835052b36beaf2fc40a98d2eccc8a5 /tests/bionic_allocator_test.cpp
parent26b816e3ddc4127b2d9e9b282982fa36941246f5 (diff)
parent708013e81c289b059399502dad55d534b150d742 (diff)
Snap for 6701932 from 708013e81c289b059399502dad55d534b150d742 to sc-release
Change-Id: I31f961d20b2c644cfe88d8bb0c946524e312b55c
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];
};
};