diff options
author | John Wren Kennedy <[email protected]> | 2018-02-28 10:38:37 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2018-02-28 10:38:37 -0800 |
commit | e086e717c3fc2c5b0867ee4b5ec07200a53b8dac (patch) | |
tree | 46414f6e3f06a53cae542fba7e8694c6254f27da /tests/runfiles | |
parent | d699aaef09fd8d71ad72c92f18219e97dc1f45e6 (diff) |
Add ZFS perf test for dbuf cache
This change adds a test for sequential reads out of the dbuf cache.
It's essentially a copy of sequential_reads_cached, using a smaller
data set. The sequential read tests are renamed to differentiate them.
Authored by: Dan Kimmel <[email protected]>
Reviewed by: Paul Dagnelie <[email protected]>
Reviewed by: Matt Ahrens <[email protected]>
Reviewed by: George Wilson <[email protected]>
Reviewed by: Brian Behlendorf <[email protected]>
Signed-off-by: John Wren Kennedy <[email protected]>
Closes #7225
Diffstat (limited to 'tests/runfiles')
-rw-r--r-- | tests/runfiles/perf-regression.run | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/runfiles/perf-regression.run b/tests/runfiles/perf-regression.run index 3b571dddd..cb068e887 100644 --- a/tests/runfiles/perf-regression.run +++ b/tests/runfiles/perf-regression.run @@ -25,8 +25,8 @@ outputdir = /var/tmp/test_results tags = ['perf'] [tests/perf/regression] -tests = ['sequential_writes', 'sequential_reads', 'sequential_reads_cached', - 'sequential_reads_cached_clone', 'random_reads', 'random_writes', - 'random_readwrite'] +tests = ['sequential_writes', 'sequential_reads', 'sequential_reads_arc_cached', + 'sequential_reads_arc_cached_clone', 'sequential_reads_dbuf_cached', + 'random_reads', 'random_writes', 'random_readwrite'] post = tags = ['perf', 'regression'] |