aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
diff options
context:
space:
mode:
authorGravatar halcanary <halcanary@google.com>2015-05-17 06:47:49 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-05-17 06:47:49 -0700
commit2e0303f91bdada6dddb73105a82f17601265379d (patch)
tree94aff579dad49e8a9e15ea79077297a4f03b40c7 /site
parentfec0211be4e8aef93fe7ef412b49148ed4e22bb4 (diff)
Gyp: Sanity Part II (GM+Tests)
Diffstat (limited to 'site')
-rw-r--r--site/dev/testing/tests.md14
1 files changed, 3 insertions, 11 deletions
diff --git a/site/dev/testing/tests.md b/site/dev/testing/tests.md
index 11dea34bf3..2903a420ed 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