aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs
diff options
context:
space:
mode:
authorGravatar tfarina <tfarina@chromium.org>2014-10-09 08:56:55 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-10-09 08:56:55 -0700
commite37ecd7666001131c4395cc7728b177127ac683e (patch)
tree410fd39da14fb9ea7a181ab01bbfec847f9850f4 /docs
parent9a7f29ee5e40071d3b3025d22bbfa58953e6c821 (diff)
Remove references to out/Debug/tests executable.
This target does not exists anymore, it was folded into out/Debug/dm. You can't do `ninja -C out/Debug tests` either anymore. BUG=None TEST=None R=mtklein@google.com Review URL: https://codereview.chromium.org/638913005
Diffstat (limited to 'docs')
-rw-r--r--docs/quickstart.md7
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/quickstart.md b/docs/quickstart.md
index 9a7b01cb5e..6c779a7d38 100644
--- a/docs/quickstart.md
+++ b/docs/quickstart.md
@@ -26,18 +26,17 @@ This guide assumes you've got `git`, `ninja`, and `python` on your path.
* `ninja -C out/Release`: optimization, asserts disabled
* `ninja -C out/Coverage`: no optimization, asserts enabled, code coverage generated
5. Run some tests:
- * `out/Debug/tests`: runs unit tests from tests/
- * `out/Debug/dm`: runs golden master tests from gm/
+ * `out/Debug/dm`: runs golden master tests from gm/, unit tests from tests/
6. Make some changes:
* `git checkout -b my-new-feature origin/master`
* `vim src/...`
* `git commit -am "Changes for my new feature."`
* `vim tests/...`
* `git commit --amend -a`
- * `ninja -C out/Debug && out/Debug/tests && out/Debug/dm && echo ok`
+ * `ninja -C out/Debug && out/Debug/dm && echo ok`
7. Rebase your change onto the latest Skia code:
* `git pull --rebase`
- * `ninja -C out/Debug && out/Debug/tests && out/Debug/dm && echo ok`
+ * `ninja -C out/Debug && out/Debug/dm && echo ok`
8. Upload your change and send it out for review:
* `git cl upload -r my-skia-reviewer@google.com -s`
* `git cl web`