1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
gpu / config / gpu_util_unittest.cc [blame]
// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "gpu/config/gpu_util.h"
#include "base/command_line.h"
#include "base/test/scoped_feature_list.h"
#include "gpu/config/gpu_blocklist.h"
#include "gpu/config/gpu_driver_bug_workaround_type.h"
#include "gpu/config/gpu_finch_features.h"
#include "gpu/config/gpu_info.h"
#include "gpu/config/gpu_preferences.h"
#include "gpu/config/gpu_switches.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace gpu {
namespace {
std::vector<uint32_t> GetActiveBlocklistEntryIDs() {
GPUInfo gpu_info;
base::CommandLine command_line(base::CommandLine::NO_PROGRAM);
GpuFeatureInfo gpu_feature_info =
ComputeGpuFeatureInfo(gpu_info, GpuPreferences(), &command_line, nullptr);
std::unique_ptr<gpu::GpuBlocklist> blocklist(gpu::GpuBlocklist::Create());
CHECK(blocklist.get());
CHECK_GT(blocklist->max_entry_id(), 0u);
std::vector<uint32_t> active_blocklist_entry_ids =
blocklist->GetEntryIDsFromIndices(
gpu_feature_info.applied_gpu_blocklist_entries);
EXPECT_EQ(gpu_feature_info.applied_gpu_blocklist_entries.size(),
active_blocklist_entry_ids.size());
return active_blocklist_entry_ids;
}
} // namespace
TEST(GpuUtilTest, GetGpuFeatureInfo_WorkaroundFromCommandLine) {
{
base::CommandLine command_line(base::CommandLine::NO_PROGRAM);
GPUInfo gpu_info;
GpuFeatureInfo gpu_feature_info = ComputeGpuFeatureInfo(
gpu_info, GpuPreferences(), &command_line, nullptr);
EXPECT_FALSE(gpu_feature_info.IsWorkaroundEnabled(
USE_GPU_DRIVER_WORKAROUND_FOR_TESTING));
}
{
base::CommandLine command_line(base::CommandLine::NO_PROGRAM);
command_line.AppendSwitchASCII(GpuDriverBugWorkaroundTypeToString(
USE_GPU_DRIVER_WORKAROUND_FOR_TESTING),
"1");
GPUInfo gpu_info;
GpuFeatureInfo gpu_feature_info = ComputeGpuFeatureInfo(
gpu_info, GpuPreferences(), &command_line, nullptr);
EXPECT_TRUE(gpu_feature_info.IsWorkaroundEnabled(
USE_GPU_DRIVER_WORKAROUND_FOR_TESTING));
}
{
base::CommandLine command_line(base::CommandLine::NO_PROGRAM);
command_line.AppendSwitchASCII(switches::kGpuDriverBugListTestGroup, "1");
// See gpu/config/gpu_driver_bug_list.json, test_group 1, entry 215.
GPUInfo gpu_info;
GpuFeatureInfo gpu_feature_info = ComputeGpuFeatureInfo(
gpu_info, GpuPreferences(), &command_line, nullptr);
EXPECT_TRUE(gpu_feature_info.IsWorkaroundEnabled(
USE_GPU_DRIVER_WORKAROUND_FOR_TESTING));
}
{
base::CommandLine command_line(base::CommandLine::NO_PROGRAM);
command_line.AppendSwitchASCII(switches::kGpuDriverBugListTestGroup, "1");
command_line.AppendSwitchASCII(GpuDriverBugWorkaroundTypeToString(
USE_GPU_DRIVER_WORKAROUND_FOR_TESTING),
"0");
// See gpu/config/gpu_driver_bug_list.json, test_group 1, entry 215.
GPUInfo gpu_info;
GpuFeatureInfo gpu_feature_info = ComputeGpuFeatureInfo(
gpu_info, GpuPreferences(), &command_line, nullptr);
EXPECT_FALSE(gpu_feature_info.IsWorkaroundEnabled(
USE_GPU_DRIVER_WORKAROUND_FOR_TESTING));
}
}
TEST(GpuUtilTest, GetGpuFeatureInfo_WorkaroundFromFeatureFlag) {
{
GPUInfo gpu_info;
base::CommandLine command_line(base::CommandLine::NO_PROGRAM);
GpuFeatureInfo gpu_feature_info = ComputeGpuFeatureInfo(
gpu_info, GpuPreferences(), &command_line, nullptr);
EXPECT_FALSE(gpu_feature_info.IsWorkaroundEnabled(
USE_GPU_DRIVER_WORKAROUND_FOR_TESTING));
}
{
base::test::ScopedFeatureList enable_feature;
enable_feature.InitAndEnableFeatureWithParameters(
features::kGPUDriverBugListTestGroup, {{"test_group", "1"}});
// See gpu/config/gpu_driver_bug_list.json, test_group 1, entry 215.
GPUInfo gpu_info;
base::CommandLine command_line(base::CommandLine::NO_PROGRAM);
GpuFeatureInfo gpu_feature_info = ComputeGpuFeatureInfo(
gpu_info, GpuPreferences(), &command_line, nullptr);
EXPECT_TRUE(gpu_feature_info.IsWorkaroundEnabled(
USE_GPU_DRIVER_WORKAROUND_FOR_TESTING));
}
{
base::test::ScopedFeatureList enable_feature;
enable_feature.InitAndEnableFeature(features::kGPUDriverBugListTestGroup);
// See gpu/config/gpu_driver_bug_list.json, test_group 1, entry 215.
GPUInfo gpu_info;
base::CommandLine command_line(base::CommandLine::NO_PROGRAM);
GpuFeatureInfo gpu_feature_info = ComputeGpuFeatureInfo(
gpu_info, GpuPreferences(), &command_line, nullptr);
EXPECT_FALSE(gpu_feature_info.IsWorkaroundEnabled(
USE_GPU_DRIVER_WORKAROUND_FOR_TESTING));
}
} // namespace
TEST(GpuUtilTest, GetGpuFeatureInfo_SoftwareRenderingFromFeatureFlag) {
{
std::vector<uint32_t> active_blocklist_entry_ids =
GetActiveBlocklistEntryIDs();
// See software_rendering_list.json, test_group 1, entry 152.
EXPECT_EQ(std::count(active_blocklist_entry_ids.begin(),
active_blocklist_entry_ids.end(), 152),
0);
EXPECT_EQ(std::count(active_blocklist_entry_ids.begin(),
active_blocklist_entry_ids.end(), 153),
0);
}
{
base::test::ScopedFeatureList enable_feature;
enable_feature.InitAndEnableFeatureWithParameters(
features::kGPUBlockListTestGroup, {{"test_group", "1"}});
std::vector<uint32_t> active_blocklist_entry_ids =
GetActiveBlocklistEntryIDs();
// See software_rendering_list.json, test_group 1, entry 152.
EXPECT_EQ(std::count(active_blocklist_entry_ids.begin(),
active_blocklist_entry_ids.end(), 152),
1);
// See software_rendering_list.json, test_group 2, entry 153
EXPECT_EQ(std::count(active_blocklist_entry_ids.begin(),
active_blocklist_entry_ids.end(), 153),
0);
}
}
} // namespace gpu