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

Side by Side Diff: site/dev/testing/testing.md

Issue 954523004: Add testing section of docs (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: remove content, update build description Created 5 years, 10 months 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 unified diff | Download patch
« no previous file with comments | « site/dev/testing/index.md ('k') | site/dev/testing/tests.md » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Correctness Testing 1 Correctness Testing
2 =================== 2 ===================
3 3
4 Skia correctness testing is primarily served by a tool named DM. 4 Skia correctness testing is primarily served by a tool named DM.
5 This is a quickstart to building and running DM. 5 This is a quickstart to building and running DM.
6 6
7 ~~~ 7 ~~~
8 $ ./gyp_skia 8 $ ./gyp_skia
9 $ ninja -C out/Debug dm 9 $ ninja -C out/Debug dm
10 $ out/Debug/dm -v -w dm_output 10 $ out/Debug/dm -v -w dm_output
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 That's the basics of DM. DM supports many other modes and flags. Here are a 172 That's the basics of DM. DM supports many other modes and flags. Here are a
173 few examples you might find handy. 173 few examples you might find handy.
174 ~~~ 174 ~~~
175 $ out/Debug/dm --help # Print all flags, their defaults, and a brief expl anation of each. 175 $ out/Debug/dm --help # Print all flags, their defaults, and a brief expl anation of each.
176 $ out/Debug/dm --src tests # Run only unit tests. 176 $ out/Debug/dm --src tests # Run only unit tests.
177 $ out/Debug/dm --nocpu # Test only GPU-backed work. 177 $ out/Debug/dm --nocpu # Test only GPU-backed work.
178 $ out/Debug/dm --nogpu # Test only CPU-backed work. 178 $ out/Debug/dm --nogpu # Test only CPU-backed work.
179 $ out/Debug/dm --match blur # Run only work with "blur" in its name. 179 $ out/Debug/dm --match blur # Run only work with "blur" in its name.
180 $ out/Debug/dm --dryRun # Don't really do anything, just print out what we' d do. 180 $ out/Debug/dm --dryRun # Don't really do anything, just print out what we' d do.
181 ~~~ 181 ~~~
OLDNEW
« no previous file with comments | « site/dev/testing/index.md ('k') | site/dev/testing/tests.md » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698