Fixed issue with Fixed Point scalars in ReadWriteAlphaTest.cpp




git-svn-id: http://skia.googlecode.com/svn/trunk@3623 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/tests/ReadWriteAlphaTest.cpp b/tests/ReadWriteAlphaTest.cpp
index 2d6da96..4b3f671 100644
--- a/tests/ReadWriteAlphaTest.cpp
+++ b/tests/ReadWriteAlphaTest.cpp
@@ -14,6 +14,11 @@
 
 void ReadWriteAlphaTest(skiatest::Reporter* reporter, GrContext* context) {
 
+#if SK_SCALAR_IS_FIXED
+    // GPU device known not to work in the fixed pt build.
+    return;
+#endif
+
     unsigned char textureData[X_SIZE][Y_SIZE];
 
     memset(textureData, 0, X_SIZE * Y_SIZE);