git-svn-id: https://www4.informatik.uni-erlangen.de/i4svn/danceos/trunk/devel/fail@1444 8c4709b5-6ec9-48aa-a5cd-a96041d1645a
20 lines
475 B
C++
20 lines
475 B
C++
#pragma once
|
|
|
|
#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"), log("eCos Kernel Test", false) {}
|
|
bool run();
|
|
|
|
bool retrieveGuestAddresses(); // step 0
|
|
bool establishState(); // step 1
|
|
bool performTrace(); // step 2
|
|
bool faultInjection(); // step 3
|
|
};
|
|
|