From 7f805fff69e38114c2cb214d3482514ab37d430b Mon Sep 17 00:00:00 2001 From: "bsalomon@google.com" Date: Mon, 10 Dec 2012 17:32:07 +0000 Subject: [PATCH] Disable failing test on android. Review URL: https://codereview.appspot.com/6899059 git-svn-id: http://skia.googlecode.com/svn/trunk@6738 2bbb7eff-a529-9590-31e7-b0007b416f81 --- tests/GpuBitmapCopyTest.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/GpuBitmapCopyTest.cpp b/tests/GpuBitmapCopyTest.cpp index 3e3e533746..63e3cca4bc 100644 --- a/tests/GpuBitmapCopyTest.cpp +++ b/tests/GpuBitmapCopyTest.cpp @@ -118,6 +118,9 @@ static void TestIndividualCopy(skiatest::Reporter* reporter, const SkBitmap::Con // Stripped down version of TestBitmapCopy that checks basic fields (width, height, config, genID) // to ensure that they were copied properly. static void TestGpuBitmapCopy(skiatest::Reporter* reporter, GrContext* grContext) { +#ifdef SK_BUILD_FOR_ANDROID // https://code.google.com/p/skia/issues/detail?id=753 + return; +#endif if (NULL == grContext) { return; }