| Index: tests/MathTest.cpp
|
| diff --git a/tests/MathTest.cpp b/tests/MathTest.cpp
|
| index 23785f742d04e164ea5654b35a6e75776d3c9faa..1dd8223091e5914686caf3b6f50f31fff4abdbb2 100644
|
| --- a/tests/MathTest.cpp
|
| +++ b/tests/MathTest.cpp
|
| @@ -530,6 +530,8 @@ DEF_TEST(Math, reporter) {
|
| REPORTER_ASSERT(reporter, result == SK_Fixed1);
|
| result = SkFixedDiv(1, SK_Fixed1);
|
| REPORTER_ASSERT(reporter, result == 1);
|
| + result = SkFixedDiv(10 - 1, SK_Fixed1 * 3);
|
| + REPORTER_ASSERT(reporter, result == 3);
|
| }
|
|
|
| unittest_fastfloat(reporter);
|
|
|