Skip to content

Commit 8514b23

Browse files
authored
ExecuteResult: Surface a Data property so the full output can be accessed (#2096)
1 parent 8ed521f commit 8514b23

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/BenchmarkDotNet/Toolchains/Results/ExecuteResult.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ public class ExecuteResult
1414
public int? ExitCode { get; }
1515
public int? ProcessId { get; }
1616
public IReadOnlyList<string> Errors => errors;
17+
public IReadOnlyList<string> Data => data;
1718
public IReadOnlyList<Measurement> Measurements => measurements;
1819
public IReadOnlyList<string> ExtraOutput { get; }
1920
internal readonly GcStats GcStats;
@@ -123,4 +124,4 @@ private static void Parse(IReadOnlyList<string> data, int launchIndex, out List<
123124
}
124125
}
125126
}
126-
}
127+
}

0 commit comments

Comments
 (0)