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_sanity 6 7 8class telemetry_Sanity(test.test): 9 """Run telemetry_sanity.""" 10 version = 1 11 12 def run_once(self, count, run_cryptohome, run_incognito, run_screenlock): 13 telemetry_sanity.TelemetrySanity( 14 count=count, 15 run_cryptohome=run_cryptohome, 16 run_incognito=run_incognito, 17 run_screenlock=run_screenlock).Run() 18