1# Lint as: python2, python3
2# Copyright 2021 The Chromium OS Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5"""Implementation of the graphics_TraceReplayExtended server test."""
6
7from autotest_lib.server.cros.graphics.graphics_tracereplayextended import (
8    GraphicsTraceReplayExtendedBase)
9
10
11class graphics_TraceReplayExtended(GraphicsTraceReplayExtendedBase):
12    """Autotest server test for running repeated trace replays in Crostini."""
13    version = 1
14
15    def run_once(self, *args, **kwargs):
16        kwargs['client_tast_test'] = 'graphics.TraceReplayExtended.' + kwargs[
17            'client_tast_test']
18        kwargs.setdefault('pdash_note', 'vm:crostini')
19        super(graphics_TraceReplayExtended, self).run_once(*args, **kwargs)
20