Skip to content

Commit

Permalink
ExecuteResult: Surface a Data property so the full output can be acce…
Browse files Browse the repository at this point in the history
…ssed (#2096)
  • Loading branch information
radical committed Sep 12, 2022
1 parent 8ed521f commit 8514b23
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/BenchmarkDotNet/Toolchains/Results/ExecuteResult.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public class ExecuteResult
public int? ExitCode { get; }
public int? ProcessId { get; }
public IReadOnlyList<string> Errors => errors;
public IReadOnlyList<string> Data => data;
public IReadOnlyList<Measurement> Measurements => measurements;
public IReadOnlyList<string> ExtraOutput { get; }
internal readonly GcStats GcStats;
Expand Down Expand Up @@ -123,4 +124,4 @@ private static void Parse(IReadOnlyList<string> data, int launchIndex, out List<
}
}
}
}
}

0 comments on commit 8514b23

Please sign in to comment.