Commit 8af8f1e1 authored by David Staessens's avatar David Staessens Committed by Commit Bot

media/gpu/test: Update import mode blacklist with guado-kernelnext.

This CL adds guado-kernelnext to the import mode blacklist used by the
video_decode_accelerator(_perf)_tests. The blacklist makes sure the tests are
run in allocate mode on devices not supporting import mode. Currently only guado
is on the blacklist, this CL adds guado-kernelnext.

TEST=compiled video_decode_accelerator_tests

BUG=b:139841588

Change-Id: Icee92dffa9134d3da06542d130f522f5b7b48e4b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1844751Reviewed-by: default avatarHirokazu Honda <hiroh@chromium.org>
Commit-Queue: David Staessens <dstaessens@chromium.org>
Cr-Commit-Position: refs/heads/master@{#703535}
parent 6604012b
...@@ -63,7 +63,8 @@ void VideoPlayerTestEnvironment::SetUp() { ...@@ -63,7 +63,8 @@ void VideoPlayerTestEnvironment::SetUp() {
// support import mode. // support import mode.
#if defined(OS_CHROMEOS) #if defined(OS_CHROMEOS)
constexpr const char* kImportModeBlacklist[] = { constexpr const char* kImportModeBlacklist[] = {
"buddy", "guado", "nyan_big", "nyan_blaze", "nyan_kitty", "rikku"}; "buddy", "guado", "guado-kernelnext", "nyan_big", "nyan_blaze",
"nyan_kitty", "rikku"};
const std::string board = base::SysInfo::GetLsbReleaseBoard(); const std::string board = base::SysInfo::GetLsbReleaseBoard();
import_supported_ = (std::find(std::begin(kImportModeBlacklist), import_supported_ = (std::find(std::begin(kImportModeBlacklist),
std::end(kImportModeBlacklist), std::end(kImportModeBlacklist),
......
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