[Bf-blender-cvs] [5508cc2] master: Fix typo in 32bytes aligned malloc test

Sergey Sharybin noreply at git.blender.org
Sat Feb 6 16:43:09 CET 2016


Commit: 5508cc2d6319729d624b969a24c0a64286f34993
Author: Sergey Sharybin
Date:   Sat Feb 6 16:42:19 2016 +0100
Branches: master
https://developer.blender.org/rB5508cc2d6319729d624b969a24c0a64286f34993

Fix typo in 32bytes aligned malloc test

===================================================================

M	tests/gtests/guardedalloc/guardedalloc_alignment_test.cc

===================================================================

diff --git a/tests/gtests/guardedalloc/guardedalloc_alignment_test.cc b/tests/gtests/guardedalloc/guardedalloc_alignment_test.cc
index 38305b3..489cd61 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




More information about the Bf-blender-cvs mailing list