Commit 904ac73b authored by Ben Pastene's avatar Ben Pastene Committed by Commit Bot

chromeos: Remove references to Tast's dep:chrome_login.

It's been folded into dep:chrome.

Bug: 963618
Change-Id: Id98b1e01116538f2c9c2f9ddccd9ac023e33d44c
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1637479Reviewed-by: default avatarAchuith Bhandarkar <achuith@chromium.org>
Reviewed-by: default avatarDan Erat <derat@chromium.org>
Reviewed-by: default avatarDirk Pranke <dpranke@chromium.org>
Commit-Queue: Ben Pastene <bpastene@chromium.org>
Cr-Commit-Position: refs/heads/master@{#664937}
parent c3368988
...@@ -787,7 +787,7 @@ def main(): ...@@ -787,7 +787,7 @@ def main():
tast_test_parser.add_argument( tast_test_parser.add_argument(
'--conditional', '--attr-expr', type=str, dest='conditional', '--conditional', '--attr-expr', type=str, dest='conditional',
help='A boolean expression whose matching tests will run ' help='A boolean expression whose matching tests will run '
'(eg: ("dep:chrome" || "dep:chrome_login")).') '(eg: ("dep:chrome")).')
tast_test_parser.add_argument( tast_test_parser.add_argument(
'--test', '-t', action='append', dest='tests', '--test', '-t', action='append', dest='tests',
help='A Tast test to run in the device (eg: "ui.ChromeLogin").') help='A Tast test to run in the device (eg: "ui.ChromeLogin").')
......
...@@ -204,8 +204,8 @@ template("tast_test") { ...@@ -204,8 +204,8 @@ template("tast_test") {
# Default the expression to match any chrome-related test. # Default the expression to match any chrome-related test.
if (!defined(tast_attr_expr) && !defined(tast_tests)) { if (!defined(tast_attr_expr) && !defined(tast_tests)) {
tast_attr_expr = "!disabled && !\"group:*\" && !informational" + tast_attr_expr =
" && (\"dep:chrome\" || \"dep:chrome_login\")" "!disabled && !\"group:*\" && !informational" + " && (\"dep:chrome\")"
} else { } else {
assert(defined(tast_attr_expr) != defined(tast_tests), assert(defined(tast_attr_expr) != defined(tast_tests),
"Specify one of tast_tests or tast_attr_expr.") "Specify one of tast_tests or tast_attr_expr.")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment