Bug 1518314: Adjust talos help text to point to documented --gecko-profile commands (rather than undocumented --geckoProfile aliases). r=rwood

Differential Revision: https://phabricator.services.mozilla.com/D15871

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Daniel Holbert 2019-01-09 17:50:37 +00:00
Родитель b0bb049e8c
Коммит 49fdf204f2
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -80,13 +80,13 @@ def create_parser(mach_interface=False):
add_arg("--userReady", action='store_true', dest="userready",
help="Also report the user ready value in supported tests")
add_arg('--spsProfile', action="store_true", dest="gecko_profile",
help="(Deprecated - Use --geckoProfile instead.) Profile the "
help="(Deprecated - Use --gecko-profile instead.) Profile the "
"run and output the results in $MOZ_UPLOAD_DIR.")
add_arg('--spsProfileInterval', dest='gecko_profile_interval', type=float,
help="(Deprecated - Use --geckoProfileInterval instead.) How "
help="(Deprecated - Use --gecko-profile-interval instead.) How "
"frequently to take samples (ms)")
add_arg('--spsProfileEntries', dest="gecko_profile_entries", type=int,
help="(Deprecated - Use --geckoProfileEntries instead.) How "
help="(Deprecated - Use --gecko-profile-entries instead.) How "
"many samples to take with the profiler")
add_arg('--geckoProfile', action="store_true", dest="gecko_profile",
help=argparse.SUPPRESS)