Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(150)

Side by Side Diff: client/site_tests/platform_CryptohomeStress/control

Issue 3412036: Basis for cryptohome+power_SuspendResume stress test. (Closed) Base URL: http://git.chromium.org/git/autotest.git
Patch Set: tweaks to test params Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 AUTHOR = "Chromium OS Team"
2 NAME = "platform_CryptoHomeStress"
3 PURPOSE = "Stress test the encrypted file system in Chromium OS."
4 TIME = "LONG"
5 TEST_CATEGORY = "Security"
6 TEST_CLASS = "security"
7 TEST_TYPE = "client"
8
9 DOC = """
10 This is a stress test of the file system in Chromium OS. While performing the
11 test, we will cycle through power states, and interrupt disk activity.
12 """
13
14 # The time in seconds to run this stress for, passed to the individual tests.
15 RUNTIME = 120
16
17 def run_sleeper():
18 job.run_test('platform_SuspendStress', runtime=RUNTIME)
19
20 def run_fio():
21 job.run_test('platform_CryptohomeFio', runtime=RUNTIME,
22 script='seq_write_verified')
23
24 def run_cryptohomestress():
25 job.run_test('platform_CryptohomeStress', runtime=RUNTIME,
26 script='seq_write_verified')
27
28 job.parallel([run_sleeper], [run_fio], [run_cryptohomestress])
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698