1# Copyright 2014 The Chromium OS Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5AUTHOR = "mohsinally" 6NAME = "login_LoginSuccess.stress" 7ATTRIBUTES = "suite:stress" 8TIME = "LONG" 9TEST_CATEGORY = "Stress" 10TEST_CLASS = "login" 11TEST_TYPE = "client" 12PY_VERSION = 3 13 14DOC = """ 15This test stress tests and verifies that signing in via the UI (using Telemetry) 16works correctly. This includes listening to DBus to verify that the session_manager 17announces the start of a user session upon sign in, as well as the end of one on sign out. 18""" 19iterations = 50 20timeout_per_iteration = 120 21job.run_test('login_LoginSuccess', 22 tag='stress', 23 iterations=iterations, 24 timeout=iterations * timeout_per_iteration, 25 stress_run=True) 26