From 6f5ac5017157fb991dfe651d2c3f58005176d9c9 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 27 Nov 2015 11:07:36 -0500 Subject: [PATCH] ceph_test_objectstore: less verbose Signed-off-by: Sage Weil --- src/test/objectstore/store_test.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/test/objectstore/store_test.cc b/src/test/objectstore/store_test.cc index e1fc44616f0e0..5ed2bf974865b 100644 --- a/src/test/objectstore/store_test.cc +++ b/src/test/objectstore/store_test.cc @@ -1636,7 +1636,7 @@ public: set objects_set, objects_set2; ghobject_t next, current; while (1) { - cerr << "scanning..." << std::endl; + //cerr << "scanning..." << std::endl; int r = store->collection_list(cid, current, ghobject_t::get_max(), true, 100, &objects, &next); @@ -1771,11 +1771,11 @@ TEST_P(StoreTest, Synthetic) { SyntheticWorkloadState test_obj(store.get(), &gen, &rng, &osr, cid); test_obj.init(); for (int i = 0; i < 1000; ++i) { - if (!(i % 10)) cerr << "seeding object " << i << std::endl; + if (!(i % 500)) cerr << "seeding object " << i << std::endl; test_obj.touch(); } - for (int i = 0; i < 10000; ++i) { - if (!(i % 10)) { + for (int i = 0; i < 100000; ++i) { + if (!(i % 1000)) { cerr << "Op " << i << std::endl; test_obj.print_internal_state(); } @@ -1815,7 +1815,7 @@ TEST_P(StoreTest, AttrSynthetic) { test_obj.touch(); } for (int i = 0; i < 10000; ++i) { - if (!(i % 10)) { + if (!(i % 100)) { cerr << "Op " << i << std::endl; test_obj.print_internal_state(); } -- 2.39.5