aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/PointTest.cpp
diff options
context:
space:
mode:
authorGravatar borenet@google.com <borenet@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-08-27 13:14:46 +0000
committerGravatar borenet@google.com <borenet@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-08-27 13:14:46 +0000
commit98a9e1f958c4992bd73899d84a1a1f20eca2c80e (patch)
tree76f56412ab6be505ad82eba3b13426babb2d2193 /tests/PointTest.cpp
parenta04e8e842450e606dd938ddae17857849bd504d4 (diff)
Change comment in PointTest to refer to GCC bug
git-svn-id: http://skia.googlecode.com/svn/trunk@5285 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests/PointTest.cpp')
-rw-r--r--tests/PointTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PointTest.cpp b/tests/PointTest.cpp
index 343c94388e..de0ae84d74 100644
--- a/tests/PointTest.cpp
+++ b/tests/PointTest.cpp
@@ -19,7 +19,7 @@ static void test_length(skiatest::Reporter* reporter, SkScalar x, SkScalar y,
SkScalar s1 = point.length();
SkScalar s2 = SkPoint::Length(x, y);
//The following should be exactly the same, but need not be.
- //See http://code.google.com/p/skia/issues/detail?id=816
+ //See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=323
REPORTER_ASSERT(reporter, SkScalarNearlyEqual(s1, s2));
REPORTER_ASSERT(reporter, SkScalarNearlyEqual(s1, expectedLength));
}