diff --git a/chromeos/test_runner.py b/chromeos/test_runner.py index f07e025bd..93459a82e 100755 --- a/chromeos/test_runner.py +++ b/chromeos/test_runner.py @@ -787,7 +787,7 @@ def main(): tast_test_parser.add_argument( '--conditional', '--attr-expr', type=str, dest='conditional', help='A boolean expression whose matching tests will run ' - '(eg: ("dep:chrome" || "dep:chrome_login")).') + '(eg: ("dep:chrome")).') tast_test_parser.add_argument( '--test', '-t', action='append', dest='tests', help='A Tast test to run in the device (eg: "ui.ChromeLogin").') diff --git a/config/chromeos/rules.gni b/config/chromeos/rules.gni index f4e56520a..af91a1ba8 100644 --- a/config/chromeos/rules.gni +++ b/config/chromeos/rules.gni @@ -204,8 +204,8 @@ template("tast_test") { # Default the expression to match any chrome-related test. if (!defined(tast_attr_expr) && !defined(tast_tests)) { - tast_attr_expr = "!disabled && !\"group:*\" && !informational" + - " && (\"dep:chrome\" || \"dep:chrome_login\")" + tast_attr_expr = + "!disabled && !\"group:*\" && !informational" + " && (\"dep:chrome\")" } else { assert(defined(tast_attr_expr) != defined(tast_tests), "Specify one of tast_tests or tast_attr_expr.")