mirror of
https://github.com/ToruNiina/toml11.git
synced 2024-11-09 22:30:07 +00:00
10fd14f8b9
This patch consistently changes the inclusion order for unit test files to the following: 1. The header of the unit under test (using <> includes). 2. The unit_test.hpp header (using "" includes). 3. Any additional auxiliary test headers (using "" includes and sorted alphabetically). 4. Additional system headers needed for the test (using <> includes and sorted alphabetically). 5. Conditionally included system headers (using <> includes). Putting the unit under test's header at the very beginning has the advantage of also testing that the header is self-contained. It also makes it very quick to tell what unit is tested in this file.
43 lines
796 B
C++
43 lines
796 B
C++
#include <toml.hpp>
|
|
|
|
#include <iostream>
|
|
#include <iomanip>
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
if(argc != 3)
|
|
{
|
|
std::cerr << "usage: ./check [filename] [valid|invalid]" << std::endl;
|
|
return 1;
|
|
}
|
|
|
|
const std::string file_kind(argv[2]);
|
|
|
|
try
|
|
{
|
|
const auto data = toml::parse(argv[1]);
|
|
std::cout << std::setprecision(16) << std::setw(80) << data;
|
|
if(file_kind == "valid")
|
|
{
|
|
return 0;
|
|
}
|
|
else
|
|
{
|
|
return 1;
|
|
}
|
|
}
|
|
catch(const toml::syntax_error& err)
|
|
{
|
|
std::cout << "what(): " << err.what() << std::endl;
|
|
if(file_kind == "invalid")
|
|
{
|
|
return 0;
|
|
}
|
|
else
|
|
{
|
|
return 1;
|
|
}
|
|
}
|
|
return 127;
|
|
}
|