diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2020-11-09 09:45:17 -0500 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2020-11-09 09:45:17 -0500 |
commit | 6d6a18fdde8b86b919b740ad629153de432d12a8 (patch) | |
tree | cbc9a252881d99fe6ab8a9deffe6949f9752d82d /tools | |
parent | 4fd94ec7d566ee2f0b52111cc6d26dd311f8a7c3 (diff) | |
download | linux-6d6a18fdde8b86b919b740ad629153de432d12a8.tar.gz linux-6d6a18fdde8b86b919b740ad629153de432d12a8.tar.bz2 linux-6d6a18fdde8b86b919b740ad629153de432d12a8.zip |
KVM: selftests: allow two iterations of dirty_log_perf_test
Even though one iteration is not enough for the dirty log performance
test (due to the cost of building page tables, zeroing memory etc.)
two is okay and it is the default. Without this patch,
"./dirty_log_perf_test" without any further arguments fails.
Cc: Ben Gardon <bgardon@google.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/kvm/dirty_log_perf_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/kvm/dirty_log_perf_test.c b/tools/testing/selftests/kvm/dirty_log_perf_test.c index cda7b000b1bc..85c9b8f73142 100644 --- a/tools/testing/selftests/kvm/dirty_log_perf_test.c +++ b/tools/testing/selftests/kvm/dirty_log_perf_test.c @@ -359,7 +359,7 @@ int main(int argc, char *argv[]) } } - TEST_ASSERT(iterations > 2, "Iterations must be greater than two"); + TEST_ASSERT(iterations >= 2, "The test should have at least two iterations"); pr_info("Test iterations: %"PRIu64"\n", iterations); |