Skip to content

Commit

Permalink
Make test progress tracing in runWorkload consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-tclinkenbeard committed Apr 24, 2023
1 parent 7249203 commit 5047cc9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fdbserver/tester.actor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1105,7 +1105,7 @@ ACTOR Future<DistributedTestResults> runWorkload(Database cx,
}

state std::vector<Future<ErrorOr<CheckReply>>> checks;
TraceEvent("CheckingResults").log();
TraceEvent("TestCheckingResults").detail("WorkloadTitle", spec.title);

printf("checking test (%s)...\n", printable(spec.title).c_str());

Expand All @@ -1122,6 +1122,7 @@ ACTOR Future<DistributedTestResults> runWorkload(Database cx,
else
failure++;
}
TraceEvent("TestCheckComplete").detail("WorkloadTitle", spec.title);
}

if (spec.phases & TestWorkload::METRICS) {
Expand Down

0 comments on commit 5047cc9

Please sign in to comment.