best guess for -MSRTC bot

Change-Id: I5aa5f789180b9caba70952cc60a2e9bbcf3b5a97
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/217983
Commit-Queue: Mike Klein <mtklein@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
This commit is contained in:
Mike Klein 2019-06-03 15:17:43 -05:00
parent 5270925f94
commit 081bf6667d

View File

@ -419,8 +419,8 @@ DEF_TEST(SkVM, r) {
// dst is probably 0xff2dad72.
for (int i = 0; i < 4; i++) {
uint8_t d = dst,
w = want;
uint8_t d = dst & 0xff,
w = want & 0xff;
REPORTER_ASSERT(r, abs(d-w) < 2);
dst >>= 8;
want >>= 8;