OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stressor
(Results
1 - 6
of
6
) sorted by null
/external/autotest/server/cros/
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
...]
stress.py
14
Implements common functionality for *
Stressor
classes.
16
@var
stressor
: callable which performs a single stress event.
18
def __init__(self,
stressor
, on_exit=None, escalate_exceptions=True):
22
@param
stressor
: callable which performs a single stress event.
29
self.
stressor
=
stressor
39
Optionally takes a wait condition before the
stressor
loop. Returns
43
callable returns True before running the
stressor
.
54
Wait for |_start_condition|, and then start the
stressor
loop.
94
Apply
stressor
in a loop
[
all
...]
/external/autotest/server/site_tests/network_WiFi_SuspendStress/
network_WiFi_SuspendStress.py
140
stressor
= stress.CountedStressor(self.stress_wifi_suspend)
143
stressor
= stress.CountedStressor(
146
stressor
.start(suspends)
147
stressor
.wait()
/external/autotest/server/site_tests/platform_ExternalUSBBootStress/
platform_ExternalUSBBootStress.py
94
stressor
= stress.ControlledStressor(stress_hotplug)
103
stressor
.start()
106
stressor
.start()
108
logging.info('Reboot complete, shutting down
stressor
.')
109
stressor
.stop()
/external/autotest/server/site_tests/firmware_EmmcWriteLoad/
firmware_EmmcWriteLoad.py
114
stressor
= stress.ControlledStressor(self.install_chrome_os)
121
stressor
.start()
128
stressor
.stop(timeout=300)
/external/autotest/server/site_tests/network_FirewallHolePunchServer/
network_FirewallHolePunchServer.py
193
stressor
= stress.CountedStressor(self.perform_tests)
194
stressor
.start(1)
Completed in 154 milliseconds