| 86 | //------------------------------------------------------------------------------ |
| 87 | |
| 88 | static void compareFiles( |
| 89 | const boost::filesystem::path& test_filename, |
| 90 | const boost::filesystem::path& ref_filename) |
| 91 | { |
| 92 | std::vector<uint8_t> test_data = FileUtil::readFile(test_filename); |
| 93 | std::vector<uint8_t> ref_data = FileUtil::readFile(ref_filename); |
| 94 | |
| 95 | compare(test_data, ref_data); |
| 96 | } |
| 97 | |
| 98 | //------------------------------------------------------------------------------ |
| 99 |