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

Unified Diff: webrtc/video/full_stack_plot.py

Issue 1308403003: Refactoring full stack and loopback tests (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: rebase updates Created 5 years, 3 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 | « webrtc/video/full_stack.cc ('k') | webrtc/video/full_stack_quality_sampler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/full_stack_plot.py
diff --git a/webrtc/video/full_stack_plot.py b/webrtc/video/full_stack_plot.py
index 92b50a44a114165bfe15e042f4d1e8947853d7dc..0e8990157f059b38150ce222063426389a3f4e74 100755
--- a/webrtc/video/full_stack_plot.py
+++ b/webrtc/video/full_stack_plot.py
@@ -7,7 +7,7 @@
# in the file PATENTS. All contributing project authors may
# be found in the AUTHORS file in the root of the source tree.
-"""Generate graphs for data generated by full_stack_quality_sampler.cc.
+"""Generate graphs for data generated by loopback tests.
Usage examples:
Show end to end time for a single full stack test.
@@ -76,7 +76,6 @@ _fields = [
name_to_id = {field[1]: field[0] for field in _fields}
id_to_title = {field[0]: field[2] for field in _fields}
-
def field_arg_to_id(arg):
if arg == "none":
return None
@@ -297,7 +296,6 @@ load_files.cache = {}
def get_parser():
class CustomAction(argparse.Action):
-
def __call__(self, parser, namespace, values, option_string=None):
if "ordered_args" not in namespace:
namespace.ordered_args = []
@@ -331,7 +329,7 @@ def get_parser():
"Otherwise, a window will be shown.")
parser.add_argument(
"files", nargs="+", action=CustomAction,
- help="List of text-based files generated by full_stack.cc")
+ help="List of text-based files generated by loopback tests.")
return parser
« no previous file with comments | « webrtc/video/full_stack.cc ('k') | webrtc/video/full_stack_quality_sampler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698