We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f12d0b commit 999ecafCopy full SHA for 999ecaf
fuzztest/internal/googletest_adaptor.cc
@@ -171,6 +171,9 @@ void SetFuzzTestListingModeValidatorForGoogleTest(bool listing_mode) {
171
std::vector<const testing::TestInfo*> GetRegisteredTests() {
172
std::vector<const testing::TestInfo*> result;
173
auto& unit_test = *testing::UnitTest::GetInstance();
174
+ // TODO(b/416466508): Remove this call once the bug is fixed. This function is
175
+ // internal to GoogleTest.
176
+ unit_test.parameterized_test_registry().RegisterTests();
177
for (int i = 0; i < unit_test.total_test_suite_count(); ++i) {
178
for (int j = 0; j < unit_test.GetTestSuite(i)->total_test_count(); ++j) {
179
result.push_back(unit_test.GetTestSuite(i)->GetTestInfo(j));
0 commit comments