Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2016-02-06 18:42:19 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-02-06 18:42:19 +0300
commit5508cc2d6319729d624b969a24c0a64286f34993 (patch)
tree9e1f02b9ada82064a20cb3d54bdf7f58a5d3631c /tests
parenta90d5cd6929d2f3e052a7bd2f1a13a18fa025a91 (diff)
Fix typo in 32bytes aligned malloc test
Diffstat (limited to 'tests')
-rw-r--r--tests/gtests/guardedalloc/guardedalloc_alignment_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gtests/guardedalloc/guardedalloc_alignment_test.cc b/tests/gtests/guardedalloc/guardedalloc_alignment_test.cc
index 38305b388e0..489cd6178cf 100644
--- a/tests/gtests/guardedalloc/guardedalloc_alignment_test.cc
+++ b/tests/gtests/guardedalloc/guardedalloc_alignment_test.cc
@@ -48,6 +48,6 @@ TEST(guardedalloc, GuardedAlignedAlloc16)
TEST(guardedalloc, GuardedAlignedAlloc32)
{
MEM_use_guarded_allocator();
- DoBasicAlignmentChecks(16);
+ DoBasicAlignmentChecks(32);
}
#endif