| Index: site/dev/testing/tests.md
|
| diff --git a/site/dev/testing/tests.md b/site/dev/testing/tests.md
|
| index 11dea34bf33de61c1f27c5aaac4b06091c354510..2903a420ed41ba4f8fe1fa3faf73287d95a21775 100644
|
| --- a/site/dev/testing/tests.md
|
| +++ b/site/dev/testing/tests.md
|
| @@ -23,11 +23,7 @@ Writing a Unit Test
|
| REPORTER_ASSERT(reporter, lifeIsGood);
|
| }
|
|
|
| -2. Add a line to `gyp/tests.gypi`:
|
| -
|
| - '../tests/NewUnitTest.cpp',
|
| -
|
| -3. Recompile and run test:
|
| +2. Recompile and run test:
|
|
|
| ./gyp_skia
|
| ninja -C out/Debug dm
|
| @@ -54,17 +50,13 @@ Writing a Rendering Test
|
| canvas->drawLine(16, 16, 112, 112, p);
|
| }
|
|
|
| -2. Add a line to `gyp/gmslides.gypi`:
|
| -
|
| - '../gm/newgmtest.cpp',
|
| -
|
| -3. Recompile and run test:
|
| +2. Recompile and run test:
|
|
|
| ./gyp_skia
|
| ninja -C out/Debug dm
|
| out/Debug/dm --match newgmtest
|
|
|
| -4. Run the GM inside SampleApp:
|
| +3. Run the GM inside SampleApp:
|
|
|
| ./gyp_skia
|
| ninja -C out/Debug SampleApp
|
|
|