1# Copyright 2018 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 5from autotest_lib.client.bin import test, telemetry_check 6 7 8class telemetry_Check(test.test): 9 """Run telemetry_check.""" 10 version = 1 11 12 def run_once(self, count, run_cryptohome, run_incognito, run_screenlock): 13 telemetry_check.TelemetryCheck(count=count, 14 run_cryptohome=run_cryptohome, 15 run_incognito=run_incognito, 16 run_screenlock=run_screenlock).Run() 17