Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gabime/spdlog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/utils.cpp')
-rw-r--r--tests/utils.cpp20
1 files changed, 8 insertions, 12 deletions
diff --git a/tests/utils.cpp b/tests/utils.cpp
index e179147b..2c50ce36 100644
--- a/tests/utils.cpp
+++ b/tests/utils.cpp
@@ -1,6 +1,5 @@
#include "includes.h"
-
void prepare_logdir()
{
spdlog::drop_all();
@@ -14,18 +13,15 @@ void prepare_logdir()
#endif
}
-
-std::string file_contents(const std::string& filename)
+std::string file_contents(const std::string &filename)
{
std::ifstream ifs(filename);
if (!ifs)
throw std::runtime_error("Failed open file ");
- return std::string((std::istreambuf_iterator<char>(ifs)),
- (std::istreambuf_iterator<char>()));
-
+ return std::string((std::istreambuf_iterator<char>(ifs)), (std::istreambuf_iterator<char>()));
}
-std::size_t count_lines(const std::string& filename)
+std::size_t count_lines(const std::string &filename)
{
std::ifstream ifs(filename);
if (!ifs)
@@ -33,12 +29,12 @@ std::size_t count_lines(const std::string& filename)
std::string line;
size_t counter = 0;
- while(std::getline(ifs, line))
+ while (std::getline(ifs, line))
counter++;
return counter;
}
-std::size_t get_filesize(const std::string& filename)
+std::size_t get_filesize(const std::string &filename)
{
std::ifstream ifs(filename, std::ifstream::ate | std::ifstream::binary);
if (!ifs)
@@ -47,10 +43,10 @@ std::size_t get_filesize(const std::string& filename)
return static_cast<std::size_t>(ifs.tellg());
}
-
// source: https://stackoverflow.com/a/2072890/192001
-bool ends_with(std::string const & value, std::string const & ending)
+bool ends_with(std::string const &value, std::string const &ending)
{
- if (ending.size() > value.size()) return false;
+ if (ending.size() > value.size())
+ return false;
return std::equal(ending.rbegin(), ending.rend(), value.rbegin());
}