RAMpage experiment: output state machine in place

git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1642 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
hsc
2012-09-13 21:27:13 +00:00
parent c4899207af
commit 69934c7eef
2 changed files with 60 additions and 15 deletions

View File

@ -1,12 +1,21 @@
#ifndef __RAMPAGE_EXPERIMENT_HPP__
#define __RAMPAGE_EXPERIMENT_HPP__
#include <string>
#include "efw/ExperimentFlow.hpp"
#include "efw/JobClient.hpp"
#include "util/Logger.hpp"
class RAMpageExperiment : public fail::ExperimentFlow {
fail::JobClient m_jc;
fail::Logger m_log;
std::string m_output;
bool last_line_was_startingtestpass;
bool handleIO(char c);
public:
RAMpageExperiment() : m_log("RAMpage"), last_line_was_startingtestpass(false) {}
bool run();
};