Skip to content

Commit

Permalink
Temporary fix for issue #63.
Browse files Browse the repository at this point in the history
  • Loading branch information
BenSpencer committed Jul 17, 2013
1 parent fe7d32f commit 33ce910
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions artemis-code/src/concolic/executiontree/tracebuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,13 @@ void TraceBuilder::addDetector(QSharedPointer<TraceEventDetector> detector)
void TraceBuilder::beginRecording()
{
if(mRecording){
Log::fatal("TraceRecorder: Began recording during an existing recording.");
exit(1);
//Log::fatal("TraceRecorder: Began recording during an existing recording.");
//exit(1);
return;
// TODO: this is to fix issue #63, which seems to be introduced in 1e89249e8c49a94668d94e912a5a1fa17b76910e.
// It seems that commit has trace recording on every page load (see webkitexecutor in that commit),
// presumably to have a consistent start point for multiple runs of traces. I need to ask Casper about this
// before I know this fix is ok.
}

mRecording = true;
Expand Down

0 comments on commit 33ce910

Please sign in to comment.