mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-04 12:05:03 +00:00
982bccf0c9
Signed-off-by: Adrian.Conlon <adrian.conlon@gmail.com>
21 lines
437 B
C++
21 lines
437 B
C++
#include "stdafx.h"
|
|
#include "FuseExpectedTestResults.h"
|
|
|
|
void Fuse::ExpectedTestResults::read(std::ifstream& file) {
|
|
bool finished = false;
|
|
while (!file.eof()) {
|
|
ExpectedTestResult result;
|
|
result.read(file);
|
|
finished = result.finish;
|
|
if (!finished)
|
|
results[result.description] = result;
|
|
}
|
|
}
|
|
|
|
void Fuse::ExpectedTestResults::read(std::string path) {
|
|
std::ifstream file;
|
|
file >> std::hex;
|
|
file.open(path);
|
|
read(file);
|
|
}
|