ecos_kernel_test experiment update

git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1444 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
This commit is contained in:
chb
2012-07-10 10:38:16 +00:00
parent bc922a98d3
commit 0fbe3d7cfd
3 changed files with 208 additions and 167 deletions

View File

@ -2,11 +2,18 @@
#include "efw/ExperimentFlow.hpp"
#include "efw/JobClient.hpp"
#include "util/Logger.hpp"
class EcosKernelTestExperiment : public fail::ExperimentFlow {
fail::JobClient m_jc;
fail::Logger log;
public:
EcosKernelTestExperiment() : m_jc("ios.cs.tu-dortmund.de") {}
EcosKernelTestExperiment() : m_jc("ios.cs.tu-dortmund.de"), log("eCos Kernel Test", false) {}
bool run();
bool retrieveGuestAddresses(); // step 0
bool establishState(); // step 1
bool performTrace(); // step 2
bool faultInjection(); // step 3
};