Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(622)

Unified Diff: site/dev/testing/testing.md

Issue 1439493003: Documentation: clean up (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-11-13 (Friday) 07:21:08 EST Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « site/dev/contrib/submit.md ('k') | site/dev/testing/tests.md » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: site/dev/testing/testing.md
diff --git a/site/dev/testing/testing.md b/site/dev/testing/testing.md
index 356c74236ba0230aa061cf0de61bfb56f04ad95e..4e2f3b5a39b984294e37d65f8a81ab4dadcb1789 100644
--- a/site/dev/testing/testing.md
+++ b/site/dev/testing/testing.md
@@ -5,7 +5,7 @@ Skia correctness testing is primarily served by a tool named DM.
This is a quickstart to building and running DM.
~~~
-$ ./gyp_skia
+$ python bin/sync-and-gyp
$ ninja -C out/Debug dm
$ out/Debug/dm -v -w dm_output
~~~
@@ -142,13 +142,13 @@ These failures are also included in the dm.json file.
DM has a simple facility to compare against the results of a previous run:
~~~
-$ ./gyp_skia
+$ python bin/sync-and-gyp
$ ninja -C out/Debug dm
$ out/Debug/dm -w good
- (do some work)
+ # do some work
-$ ./gyp_skia
+$ python bin/sync-and-gyp
$ ninja -C out/Debug dm
$ out/Debug/dm -r good -w bad
~~~
@@ -157,13 +157,13 @@ same image as the `good` run.
For anything fancier, I suggest using skdiff:
~~~
-$ ./gyp_skia
+$ python bin/sync-and-gyp
$ ninja -C out/Debug dm
$ out/Debug/dm -w good
- (do some work)
+ # do some work
-$ ./gyp_skia
+$ python bin/sync-and-gyp
$ ninja -C out/Debug dm
$ out/Debug/dm -w bad
@@ -171,7 +171,7 @@ $ ninja -C out/Debug skdiff
$ mkdir diff
$ out/Debug/skdiff good bad diff
- (open diff/index.html in your web browser)
+ # open diff/index.html in your web browser
~~~
That's the basics of DM. DM supports many other modes and flags. Here are a
« no previous file with comments | « site/dev/contrib/submit.md ('k') | site/dev/testing/tests.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698