summaryrefslogtreecommitdiff
diff options
authorJeff Lane <jeffrey.lane@canonical.com>2020-03-20 10:25:42 -0400
committerJeff Lane <jeffrey.lane@canonical.com>2020-03-20 10:25:42 -0400
commit589487fae20e50e1f8428c2934f36d253dd0d788 (patch)
tree2141bed8b426a53f647af2d06395f599e918ca83
parente5479c1080ce5f9c0a1d350c0971d868aca7fe3b (diff)
stress_ng_test: Reintroduced missing af-alg stressor in the cpu stress test lp: #1868269
-rwxr-xr-xbin/stress_ng_test6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/stress_ng_test b/bin/stress_ng_test
index ced8455..1bc384a 100755
--- a/bin/stress_ng_test
+++ b/bin/stress_ng_test
@@ -123,9 +123,9 @@ def stress_cpu(args):
"""Run stress-ng tests on CPUs."""
retval = 0
- stressors = ['bsearch', 'context', 'cpu', 'crypt', 'hsearch', 'longjmp',
- 'lsearch', 'matrix', 'qsort', 'str', 'stream', 'tsearch',
- 'vecmath', 'wcs']
+ stressors = ['af-alg', 'bsearch', 'context', 'cpu', 'crypt', 'hsearch',
+ 'longjmp', 'lsearch', 'matrix', 'qsort', 'str', 'stream',
+ 'tsearch', 'vecmath', 'wcs']
# Add 10% to runtime; will forcefully terminate if stress-ng
# fails to return in that time.
end_time = args.base_time * 11 / 10