Skip to content

Commit 3e79d36

Browse files
Abseil Teamvslashg
Abseil Team
authored andcommitted
Googletest export
Wire up things to support marking a type paramaterized test as allowed to be un-instantiated. PiperOrigin-RevId: 289699939
1 parent 7a8591e commit 3e79d36

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

googletest/src/gtest.cc

+8-1
Original file line numberDiff line numberDiff line change
@@ -515,8 +515,10 @@ void TypeParameterizedTestSuiteRegistry::RegisterInstantiation(
515515
}
516516

517517
void TypeParameterizedTestSuiteRegistry::CheckForInstantiations() {
518+
const auto& ignored = *GetIgnoredParameterizedTestSuites();
518519
for (const auto& testcase : suites_) {
519520
if (testcase.second.instantiated) continue;
521+
if (ignored.find(testcase.first) != ignored.end()) continue;
520522

521523
std::string message =
522524
"Type paramaterized test suite " + testcase.first +
@@ -526,7 +528,12 @@ void TypeParameterizedTestSuiteRegistry::CheckForInstantiations() {
526528
"Ideally, TYPED_TEST_P definitions should only ever be included as "
527529
"part of binaries that intend to use them. (As opposed to, for "
528530
"example, being placed in a library that may be linked in to get other "
529-
"utilities.)";
531+
"utilities.)"
532+
"\n\n"
533+
"To suppress this error for this test suite, insert the following line "
534+
"(in a non-header) in the namespace it is definedin in:"
535+
"\n\n"
536+
"GTEST_ALLOW_UNINSTANTIATED_PARAMTERIZED_TEST(" + testcase.first + ");";
530537

531538
std::string full_name =
532539
"UninstantiatedTypeParamaterizedTestSuite<" + testcase.first + ">";

googletest/test/googletest-output-test-golden-lin.txt

+4
Original file line numberDiff line numberDiff line change
@@ -996,6 +996,10 @@ GTEST_ALLOW_UNINSTANTIATED_PARAMTERIZED_TEST(DetectNotInstantiatedTest);
996996
Type paramaterized test suite DetectNotInstantiatedTypesTest is defined via REGISTER_TYPED_TEST_SUITE_P, but never instantiated via INSTANTIATE_TYPED_TEST_SUITE_P. None of the test cases will run.
997997

998998
Ideally, TYPED_TEST_P definitions should only ever be included as part of binaries that intend to use them. (As opposed to, for example, being placed in a library that may be linked in to get other utilities.)
999+
1000+
To suppress this error for this test suite, insert the following line (in a non-header) in the namespace it is definedin in:
1001+
1002+
GTEST_ALLOW_UNINSTANTIATED_PARAMTERIZED_TEST(DetectNotInstantiatedTypesTest);
9991003
[ OK ] GoogleTestVerification.UninstantiatedTypeParamaterizedTestSuite<DetectNotInstantiatedTypesTest>
10001004
[----------] Global test environment tear-down
10011005
BarEnvironment::TearDown() called.

googletest/test/googletest-param-test-test.cc

+10
Original file line numberDiff line numberDiff line change
@@ -1088,6 +1088,16 @@ TEST_P(NotInstantiatedTest, Used) { }
10881088
using OtherName = NotInstantiatedTest;
10891089
GTEST_ALLOW_UNINSTANTIATED_PARAMTERIZED_TEST(OtherName);
10901090
TEST_P(OtherName, Used) { }
1091+
1092+
// Used but not instantiated, this would fail. but...
1093+
template <typename T>
1094+
class NotInstantiatedTypeTest : public testing::Test {};
1095+
TYPED_TEST_SUITE_P(NotInstantiatedTypeTest);
1096+
// ... we mark is as allowed.
1097+
GTEST_ALLOW_UNINSTANTIATED_PARAMTERIZED_TEST(NotInstantiatedTypeTest);
1098+
1099+
TYPED_TEST_P(NotInstantiatedTypeTest, Used) { }
1100+
REGISTER_TYPED_TEST_SUITE_P(NotInstantiatedTypeTest, Used);
10911101
} // namespace works_here
10921102

10931103
int main(int argc, char **argv) {

0 commit comments

Comments
 (0)