Commit e45682b4 by Cody Northrop Committed by Angle LUCI CQ

Tests: Add Township trace

Test: angle_perftests --gtest_filter="*township*" Tbr: jmadill@google.com, timvp@google.com Bug: b/192402770 Bug: angleproject:6120 Change-Id: I3ef0bb6e896a081c17a07f18037805be5494af2e Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2993882Reviewed-by: 's avatarCody Northrop <cnorthrop@google.com> Commit-Queue: Cody Northrop <cnorthrop@google.com>
parent 1c39335a
...@@ -1504,6 +1504,16 @@ deps = { ...@@ -1504,6 +1504,16 @@ deps = {
'dep_type': 'cipd', 'dep_type': 'cipd',
'condition': 'checkout_angle_restricted_traces', 'condition': 'checkout_angle_restricted_traces',
}, },
'src/tests/restricted_traces/township': {
'packages': [
{
'package': 'angle/traces/township',
'version': 'version:1',
},
],
'dep_type': 'cipd',
'condition': 'checkout_angle_restricted_traces',
},
'src/tests/restricted_traces/trex_200': { 'src/tests/restricted_traces/trex_200': {
'packages': [ 'packages': [
{ {
......
{ {
"src/tests/restricted_traces/.gitignore": "src/tests/restricted_traces/.gitignore":
"fa07e2ba79f2d7b5789debcc882e2702", "3fac752741a08c1fff57d3e06c8c06e8",
"src/tests/restricted_traces/gen_restricted_traces.py": "src/tests/restricted_traces/gen_restricted_traces.py":
"f700505c2ba8299a6ce68962763d7f2d", "f700505c2ba8299a6ce68962763d7f2d",
"src/tests/restricted_traces/restricted_traces.json": "src/tests/restricted_traces/restricted_traces.json":
"3409d8686ef2ddca6e33a0e28e3523d8", "e036038a0a7669daad623d96a0f8146a",
"src/tests/restricted_traces/restricted_traces_autogen.cpp": "src/tests/restricted_traces/restricted_traces_autogen.cpp":
"5dfe8648339ff04b9ff5c92a5571701f", "5ab2d4a2b5b57cb1149015219c443400",
"src/tests/restricted_traces/restricted_traces_autogen.gni": "src/tests/restricted_traces/restricted_traces_autogen.gni":
"2317225d9ebc0d69dca31c35623fc541", "2c2bd83a10aa587d1639f7187119c7a7",
"src/tests/restricted_traces/restricted_traces_autogen.h": "src/tests/restricted_traces/restricted_traces_autogen.h":
"54984e740a62f26dc180f560761bb65f" "f9cf930325ddd44f7a876b1fbe3d75bc"
} }
\ No newline at end of file
...@@ -85,6 +85,7 @@ summoners_war/ ...@@ -85,6 +85,7 @@ summoners_war/
talking_tom_hero_dash/ talking_tom_hero_dash/
temple_run_2/ temple_run_2/
temple_run_300/ temple_run_300/
township/
trex_200/ trex_200/
whatsapp/ whatsapp/
world_of_tanks_blitz/ world_of_tanks_blitz/
......
...@@ -95,6 +95,7 @@ ...@@ -95,6 +95,7 @@
"talking_tom_hero_dash 1", "talking_tom_hero_dash 1",
"temple_run_2 1", "temple_run_2 1",
"temple_run_300 1", "temple_run_300 1",
"township 1",
"trex_200 1", "trex_200 1",
"whatsapp 1", "whatsapp 1",
"world_of_tanks_blitz 1", "world_of_tanks_blitz 1",
......
...@@ -99,6 +99,7 @@ ...@@ -99,6 +99,7 @@
#include "talking_tom_hero_dash/talking_tom_hero_dash_capture_context1.h" #include "talking_tom_hero_dash/talking_tom_hero_dash_capture_context1.h"
#include "temple_run_2/temple_run_2_capture_context1.h" #include "temple_run_2/temple_run_2_capture_context1.h"
#include "temple_run_300/temple_run_300_capture_context1.h" #include "temple_run_300/temple_run_300_capture_context1.h"
#include "township/township_capture_context2.h"
#include "trex_200/trex_200_capture_context1.h" #include "trex_200/trex_200_capture_context1.h"
#include "whatsapp/whatsapp_capture_context1.h" #include "whatsapp/whatsapp_capture_context1.h"
#include "world_of_tanks_blitz/world_of_tanks_blitz_capture_context1.h" #include "world_of_tanks_blitz/world_of_tanks_blitz_capture_context1.h"
...@@ -539,6 +540,10 @@ constexpr angle::PackedEnumMap<RestrictedTraceID, TraceInfo> kTraceInfos = { ...@@ -539,6 +540,10 @@ constexpr angle::PackedEnumMap<RestrictedTraceID, TraceInfo> kTraceInfos = {
temple_run_300::kReplayContextClientMinorVersion, temple_run_300::kReplayFrameStart, temple_run_300::kReplayContextClientMinorVersion, temple_run_300::kReplayFrameStart,
temple_run_300::kReplayFrameEnd, temple_run_300::kReplayDrawSurfaceWidth, temple_run_300::kReplayFrameEnd, temple_run_300::kReplayDrawSurfaceWidth,
temple_run_300::kReplayDrawSurfaceHeight, "temple_run_300"}}, temple_run_300::kReplayDrawSurfaceHeight, "temple_run_300"}},
{RestrictedTraceID::township,
{township::kReplayContextClientMajorVersion, township::kReplayContextClientMinorVersion,
township::kReplayFrameStart, township::kReplayFrameEnd, township::kReplayDrawSurfaceWidth,
township::kReplayDrawSurfaceHeight, "township"}},
{RestrictedTraceID::trex_200, {RestrictedTraceID::trex_200,
{trex_200::kReplayContextClientMajorVersion, trex_200::kReplayContextClientMinorVersion, {trex_200::kReplayContextClientMajorVersion, trex_200::kReplayContextClientMinorVersion,
trex_200::kReplayFrameStart, trex_200::kReplayFrameEnd, trex_200::kReplayDrawSurfaceWidth, trex_200::kReplayFrameStart, trex_200::kReplayFrameEnd, trex_200::kReplayDrawSurfaceWidth,
......
...@@ -4328,6 +4328,22 @@ angle_restricted_traces = [ ...@@ -4328,6 +4328,22 @@ angle_restricted_traces = [
], ],
], ],
[ [
"township",
2,
[
"township/township_capture_context2_frame001.cpp",
"township/township_capture_context2_frame002.cpp",
"township/township_capture_context2_frame003.cpp",
"township/township_capture_context2_frame004.cpp",
"township/township_capture_context2_frame005.cpp",
"township/township_capture_context2_frame006.cpp",
"township/township_capture_context2_frame007.cpp",
"township/township_capture_context2_frame008.cpp",
"township/township_capture_context2_frame009.cpp",
"township/township_capture_context2_frame010.cpp",
],
],
[
"trex_200", "trex_200",
1, 1,
[ [
......
...@@ -141,6 +141,7 @@ enum class RestrictedTraceID ...@@ -141,6 +141,7 @@ enum class RestrictedTraceID
talking_tom_hero_dash, talking_tom_hero_dash,
temple_run_2, temple_run_2,
temple_run_300, temple_run_300,
township,
trex_200, trex_200,
whatsapp, whatsapp,
world_of_tanks_blitz, world_of_tanks_blitz,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment