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

Unified 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, 11 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 side-by-side diff with in-line comments
Download patch
Index: client/site_tests/platform_CryptohomeStress/control
diff --git a/client/site_tests/platform_CryptohomeStress/control b/client/site_tests/platform_CryptohomeStress/control
new file mode 100644
index 0000000000000000000000000000000000000000..c6b16606426cfa133f0caf44ca0605d90627f6fa
--- /dev/null
+++ b/client/site_tests/platform_CryptohomeStress/control
@@ -0,0 +1,28 @@
+AUTHOR = "Chromium OS Team"
+NAME = "platform_CryptoHomeStress"
+PURPOSE = "Stress test the encrypted file system in Chromium OS."
+TIME = "LONG"
+TEST_CATEGORY = "Security"
+TEST_CLASS = "security"
+TEST_TYPE = "client"
+
+DOC = """
+This is a stress test of the file system in Chromium OS. While performing the
+test, we will cycle through power states, and interrupt disk activity.
+"""
+
+# The time in seconds to run this stress for, passed to the individual tests.
+RUNTIME = 120
+
+def run_sleeper():
+ job.run_test('platform_SuspendStress', runtime=RUNTIME)
+
+def run_fio():
+ job.run_test('platform_CryptohomeFio', runtime=RUNTIME,
+ script='seq_write_verified')
+
+def run_cryptohomestress():
+ job.run_test('platform_CryptohomeStress', runtime=RUNTIME,
+ script='seq_write_verified')
+
+job.parallel([run_sleeper], [run_fio], [run_cryptohomestress])

Powered by Google App Engine
This is Rietveld 408576698