| Index: tests/MathTest.cpp
|
| diff --git a/tests/MathTest.cpp b/tests/MathTest.cpp
|
| index fe54594100bc97f62586a0dc33cbd444d64ffb62..5ec91a9e5bf5d9906b3ed81b5296a5c1a977bd95 100644
|
| --- a/tests/MathTest.cpp
|
| +++ b/tests/MathTest.cpp
|
| @@ -19,7 +19,7 @@ static void test_clz(skiatest::Reporter* reporter) {
|
| REPORTER_ASSERT(reporter, 1 == SkCLZ(1 << 30));
|
| REPORTER_ASSERT(reporter, 0 == SkCLZ(~0U));
|
|
|
| - SkRandom rand;
|
| + SkMWCRandom rand;
|
| for (int i = 0; i < 1000; ++i) {
|
| uint32_t mask = rand.nextU();
|
| // need to get some zeros for testing, but in some obscure way so the
|
| @@ -82,7 +82,7 @@ static void test_muldivround(skiatest::Reporter* reporter) {
|
| }
|
| #endif
|
|
|
| - SkRandom rand;
|
| + SkMWCRandom rand;
|
| for (int i = 0; i < 10000; ++i) {
|
| unsigned a = rand.nextU() & 0x7FFF;
|
| unsigned b = rand.nextU() & 0x7FFF;
|
|
|