Home | History | Annotate | Download | only in video_JEAPerf
      1 # Copyright 2018 The Chromium Authors. All rights reserved.
      2 # Use of this source code is governed by a BSD-style license that can be
      3 # found in the LICENSE file.
      4 
      5 AUTHOR = "Chrome OS Team, chromeos-video (a] google.com"
      6 NAME = "video_JEAPerf"
      7 PURPOSE = "Monitor the performance of the Chromium JEA."
      8 CRITERIA = """
      9 The test fails if the jpeg_encode_accelerator_unittest fails or crashes.
     10 """
     11 ATTRIBUTES = "suite:crosbolt_perf_nightly"
     12 TIME = "SHORT"
     13 TEST_CATEGORY = "Performance"
     14 TEST_CLASS = "video"
     15 TEST_TYPE = "client"
     16 DEPENDENCIES='hw_jpeg_acc_enc'
     17 BUG_TEMPLATE = {
     18     'labels': ['OS-Chrome', 'VideoTestFailure'],
     19     'cc': ['chromeos-video-test-failures (a] google.com'],
     20 }
     21 
     22 DOC = """
     23 This test utilizes the jpeg_encode_accelerator_unittest to measure the
     24 performance of the Chromium Jpeg Encode Accelerator.
     25 """
     26 
     27 test_cases = [
     28     ('jpeg_test/lake_4160x3120.yuv', 4160, 3120)
     29 ]
     30 
     31 job.run_test('video_JEAPerf', test_cases=test_cases)
     32 
     33