Searched refs:stressor (Results 1 – 6 of 6) sorted by relevance
/external/autotest/server/cros/ |
D | stress_unittest.py | 21 stressor = stress.CountedStressor(stress_event) 22 stressor.start(1) 23 self.assertRaises(StopThreadForTesting, stressor.wait) 32 stressor = stress.CountedStressor(stress_event, 34 stressor.start(1) 35 stressor.wait() 47 stressor = stress.CountedStressor(stress_event, on_exit=on_exit) 48 stressor.start(1) 49 stressor.wait() 61 stressor = stress.CountedStressor(stress_event, on_exit=on_exit) [all …]
|
D | stress.py | 18 def __init__(self, stressor, on_exit=None, escalate_exceptions=True): argument 29 self.stressor = stressor 119 def __init__(self, stressor, on_exit=None, escalate_exceptions=True): argument 129 super(ControlledStressor, self).__init__(stressor, on_exit, 139 self.stressor() 183 self.stressor()
|
/external/autotest/server/site_tests/platform_ExternalUSBBootStress/ |
D | platform_ExternalUSBBootStress.py | 94 stressor = stress.ControlledStressor(stress_hotplug) 103 stressor.start() 106 stressor.start() 109 stressor.stop()
|
/external/autotest/server/site_tests/firmware_EmmcWriteLoad/ |
D | firmware_EmmcWriteLoad.py | 123 stressor = stress.ControlledStressor(self.install_chrome_os) 130 stressor.start() 137 stressor.stop(timeout=300)
|
/external/autotest/server/site_tests/network_WiFi_SuspendStress/ |
D | network_WiFi_SuspendStress.py | 107 stressor = stress.CountedStressor(self.stress_wifi_suspend, 109 stressor.start(suspends, 113 stressor.wait()
|
/external/autotest/server/site_tests/network_FirewallHolePunchServer/ |
D | network_FirewallHolePunchServer.py | 193 stressor = stress.CountedStressor(self.perform_tests) 194 stressor.start(1)
|