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

Unified Diff: tools/telemetry/update_docs

Issue 17150002: [telemetry] Initial (autogenerated) documentation plus support scripts (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: update with nits Created 7 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/telemetry/telemetry/__init__.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/update_docs
diff --git a/tools/telemetry/unittest_data/discoverable_classes/discover_dummyclass.py b/tools/telemetry/update_docs
old mode 100644
new mode 100755
similarity index 54%
copy from tools/telemetry/unittest_data/discoverable_classes/discover_dummyclass.py
copy to tools/telemetry/update_docs
index afda1e54599cf8c78bdb7d948751458a6f88b5b8..2cd5dc99bb95821ab39f955c27562e07a84a073f
--- a/tools/telemetry/unittest_data/discoverable_classes/discover_dummyclass.py
+++ b/tools/telemetry/update_docs
@@ -1,8 +1,11 @@
+#!/usr/bin/env python
# Copyright (c) 2013 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import os
+import sys
-"""A dummy exception subclasses used by core/discover.py's unit tests."""
+from build import update_docs
-class DummyException(Exception):
- pass
+if __name__ == '__main__':
+ sys.exit(update_docs.Main(sys.argv[1:]))
« no previous file with comments | « tools/telemetry/telemetry/__init__.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698