mirror of
https://github.com/MoleskiCoder/EightBit.git
synced 2024-11-17 20:04:35 +00:00
21 lines
369 B
C++
21 lines
369 B
C++
|
#include "stdafx.h"
|
||
|
#include "FuseTests.h"
|
||
|
|
||
|
void Fuse::Tests::read(std::ifstream& file) {
|
||
|
bool finished = false;
|
||
|
while (!file.eof()) {
|
||
|
Test test;
|
||
|
test.read(file);
|
||
|
finished = test.finish;
|
||
|
if (!finished)
|
||
|
tests[test.description] = test;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
void Fuse::Tests::read(std::string path) {
|
||
|
std::ifstream file;
|
||
|
file >> std::hex;
|
||
|
file.open(path);
|
||
|
read(file);
|
||
|
}
|