Revert "Disable error reporting for ImageStorageLoad until it can be debugged"
authorBrian Salomon <bsalomon@google.com>
Wed, 23 Nov 2016 01:01:53 +0000 (01:01 +0000)
committerSkia Commit-Bot <skia-commit-bot@chromium.org>
Wed, 23 Nov 2016 01:02:10 +0000 (01:02 +0000)
This reverts commit 7befa711d4606aa2a1bcadc3878fcc2be6783fab.

Reason for revert: Needed to revert earlier CL

Original change's description:
> Disable error reporting for ImageStorageLoad until it can be debugged
>
> GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=5154
>
> Change-Id: Ie8c685441c20c85bdff22d2df5c9c4d9718203f3
> Reviewed-on: https://skia-review.googlesource.com/5154
> Commit-Queue: Brian Salomon <bsalomon@google.com>
> Reviewed-by: Greg Daniel <egdaniel@google.com>
>

TBR=egdaniel@google.com,bsalomon@google.com,csmartdalton@google.com
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true

Change-Id: I19815fcec20dc193e9155f446a3bb0be713dac63
Reviewed-on: https://skia-review.googlesource.com/5128
Commit-Queue: Brian Salomon <bsalomon@google.com>
Reviewed-by: Brian Salomon <bsalomon@google.com>
tests/ImageStorageTest.cpp

index 3d8102d..99949d0 100644 (file)
@@ -139,9 +139,7 @@ DEF_GPUTEST_FOR_RENDERING_CONTEXTS(ImageStorageLoad, reporter, ctxInfo) {
                 uint32_t rd = readData[j * kS + i];
                 if (d != rd) {
                     failed = true;
-#if 0  // This test currently fails on a number of GPUs, under investigation.
                     ERRORF(reporter, "Expected 0x%08x, got 0x%08x at %d, %d.", d, rd, i, j);
-#endif
                 }
             }
         }