experiments/dciao-kernelstructs: new database driven experiment for DCiAO
The dciao-kernelstructs experiment does a trace imported by the DCiAOKernelImporter: bin/import-trace -t trace.pb -i DCiAOKernelImporter --elf-file app.elf Pruned by the basic method: bin/prune-trace and does CiAO fault injection experiments, where the results are stored in the database. Change-Id: I485dc2e5097b3ebaf354241f474ee3d317213707
This commit is contained in:
@ -4,7 +4,10 @@
|
||||
#include "Pruner.hpp"
|
||||
|
||||
class BasicPruner : public Pruner {
|
||||
virtual std::string method_name() { return "basic"; }
|
||||
bool use_instr1;
|
||||
public:
|
||||
BasicPruner(bool use_instr1 = false) : Pruner(), use_instr1(use_instr1) {}
|
||||
virtual std::string method_name() { return std::string("basic") + (use_instr1 ? "-left" : ""); }
|
||||
virtual bool prune_all();
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user