tools/src/resultsdb: Request 'test_id' field

Required as the test name tag field is limited to 256 bytes.

Bug: dawn:1342
Change-Id: I9f604181561acb6b7b9250599508474c0190333a
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/87221
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
Commit-Queue: Ben Clayton <bclayton@google.com>
This commit is contained in:
Ben Clayton 2022-04-20 00:29:05 +00:00 committed by Dawn LUCI CQ
parent ba9404dac2
commit 529747b041
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ func (r *ResultsDB) QueryTestResults(
TestIdRegexp: filterRegex,
},
ReadMask: &fieldmaskpb.FieldMask{Paths: []string{
"status", "tags", "failure_reason",
"test_id", "status", "tags", "failure_reason",
}},
PageSize: 1000, // Maximum page size.
PageToken: pageToken,