Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(878)

Side by Side Diff: tests/VarAllocTest.cpp

Issue 1006073003: Fix build for UCLIBC platforms (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/core/SkVarAlloc.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #include "Test.h" 1 #include "Test.h"
2 #include "SkVarAlloc.h" 2 #include "SkVarAlloc.h"
3 3
4 DEF_TEST(VarAlloc, r) { 4 DEF_TEST(VarAlloc, r) {
5 SkVarAlloc va(4/*start allocating at 16B*/); 5 SkVarAlloc va(4/*start allocating at 16B*/);
6 char* p = va.alloc(128, SK_MALLOC_THROW); 6 char* p = va.alloc(128, SK_MALLOC_THROW);
7 sk_bzero(p, 128); // Just checking this is safe. 7 sk_bzero(p, 128); // Just checking this is safe.
8 8
9 #ifndef SK_BUILD_FOR_ANDROID 9 #if !defined(SK_BUILD_FOR_ANDROID) && !defined(__UCLIBC__)
10 // This method will always return 0 on Android. 10 // This method will always return 0 on Android and UCLIBC platforms.
11 REPORTER_ASSERT(r, va.approxBytesAllocated() >= 128); 11 REPORTER_ASSERT(r, va.approxBytesAllocated() >= 128);
12 #endif 12 #endif
13 } 13 }
OLDNEW
« no previous file with comments | « src/core/SkVarAlloc.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698