]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/rocksdb/monitoring/iostats_context_test.cc
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / rocksdb / monitoring / iostats_context_test.cc
index a2884f8a63d6021447becbe9efc279af78b62b55..74d3e43291dca378e5ea4d5557ad962a27069dba 100644 (file)
@@ -1,7 +1,7 @@
 // Copyright (c) 2011-present, Facebook, Inc.  All rights reserved.
-// This source code is licensed under the BSD-style license found in the
-// LICENSE file in the root directory of this source tree. An additional grant
-// of patent rights can be found in the PATENTS file in the same directory.
+//  This source code is licensed under both the GPLv2 (found in the
+//  COPYING file in the root directory) and Apache 2.0 License
+//  (found in the LICENSE.Apache file in the root directory).
 
 #include "rocksdb/iostats_context.h"
 #include "util/testharness.h"
@@ -9,14 +9,14 @@
 namespace rocksdb {
 
 TEST(IOStatsContextTest, ToString) {
-  iostats_context.Reset();
-  iostats_context.bytes_read = 12345;
+  get_iostats_context()->Reset();
+  get_iostats_context()->bytes_read = 12345;
 
-  std::string zero_included = iostats_context.ToString();
+  std::string zero_included = get_iostats_context()->ToString();
   ASSERT_NE(std::string::npos, zero_included.find("= 0"));
   ASSERT_NE(std::string::npos, zero_included.find("= 12345"));
 
-  std::string zero_excluded = iostats_context.ToString(true);
+  std::string zero_excluded = get_iostats_context()->ToString(true);
   ASSERT_EQ(std::string::npos, zero_excluded.find("= 0"));
   ASSERT_NE(std::string::npos, zero_excluded.find("= 12345"));
 }