pub const DONE_MARKER: &str = "DONE: A long-running `fuchsia.fuzzer.Controller` workflow is complete.";
Expand description
Marker indicating the last message in a diagnostic output stream.
In addition to an Artifact
, long-running workflows may also produce the
standard output, standard error, and system logs. These fuzzer output
streams are provided by fuchsia.test_manager/RunBuilder
and have no
guaranteed order with respect to FIDL responses. As a result, the streams
need to include an “in-band” signal that indicates when they are complete
for a particular workflow. Clients processing the fuzzer output may use this
marker to synchronize the streams and the FIDL response for GetArtifact
.
The string is intentionally somewhat long to mitigate the likelihood of it being emitted by the code under test.