ElfReader: Constructor tries to get ELF from ENV FAIL_ELF_PATH

git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@2002 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
hoffmann
2013-01-15 12:53:49 +00:00
parent d721ce7041
commit ac7cec7684
5 changed files with 181 additions and 154 deletions

View File

@ -3,10 +3,19 @@
#include "efw/ExperimentFlow.hpp"
#include "efw/JobClient.hpp"
#include "util/Logger.hpp"
#include "util/ElfReader.hpp"
class VEZSExperiment : public fail::ExperimentFlow {
fail::JobClient m_jc;
fail::JobClient m_jc;
fail::ElfReader m_elf;
fail::Logger m_log;
void printEIP();
public:
VEZSExperiment() : m_log("VEZS-example", false) {};
bool run();
};