Skip to content

Commit ec94d9f

Browse files
Abseil Teamvslashg
Abseil Team
authored andcommitted
Googletest export
Fail TEST_Ps or TYPED_TEST_Ps that are defined but are not instantiated, as well as the opposite case, where INSTANTIATE_TEST_SUITE_P or INSTANTIATE_TYPED_TEST_SUITE_P is used but without any matching TEST_P or TYPED_TEST_P. PiperOrigin-RevId: 315255779
1 parent 1b0cdaa commit ec94d9f

File tree

2 files changed

+20
-8
lines changed

2 files changed

+20
-8
lines changed

googletest/src/gtest.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -432,8 +432,8 @@ namespace {
432432
// inserted to report ether an error or a log message.
433433
//
434434
// This configuration bit will likely be removed at some point.
435-
constexpr bool kErrorOnUninstantiatedParameterizedTest = false;
436-
constexpr bool kErrorOnUninstantiatedTypeParameterizedTest = false;
435+
constexpr bool kErrorOnUninstantiatedParameterizedTest = true;
436+
constexpr bool kErrorOnUninstantiatedTypeParameterizedTest = true;
437437

438438
// A test that fails at a given file/line location with a given message.
439439
class FailureTest : public Test {

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

+18-6
Original file line numberDiff line numberDiff line change
@@ -984,32 +984,41 @@ Stack trace: (omitted)
984984
[ FAILED ] PrintingStrings/ParamTest.Failure/a, where GetParam() = "a"
985985
[----------] 3 tests from GoogleTestVerification
986986
[ RUN ] GoogleTestVerification.UninstantiatedParamaterizedTestSuite<NoTests>
987+
googletest-output-test_.cc:#: Failure
987988
Paramaterized test suite NoTests is instantiated via INSTANTIATE_TEST_SUITE_P, but no tests are defined via TEST_P . No test cases will run.
988989

989990
Ideally, INSTANTIATE_TEST_SUITE_P should only ever be invoked from code that always depend on code that provides TEST_P. Failing to do so is often an indication of dead code, e.g. the last TEST_P was removed but the rest got left behind.
990991

991992
To suppress this error for this test suite, insert the following line (in a non-header) in the namespace it is defined in:
992993

993994
GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(NoTests);
994-
[ OK ] GoogleTestVerification.UninstantiatedParamaterizedTestSuite<NoTests>
995+
Stack trace: (omitted)
996+
997+
[ FAILED ] GoogleTestVerification.UninstantiatedParamaterizedTestSuite<NoTests>
995998
[ RUN ] GoogleTestVerification.UninstantiatedParamaterizedTestSuite<DetectNotInstantiatedTest>
999+
googletest-output-test_.cc:#: Failure
9961000
Paramaterized test suite DetectNotInstantiatedTest is defined via TEST_P, but never instantiated. None of the test cases will run. Either no INSTANTIATE_TEST_SUITE_P is provided or the only ones provided expand to nothing.
9971001

9981002
Ideally, 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.)
9991003

10001004
To suppress this error for this test suite, insert the following line (in a non-header) in the namespace it is defined in:
10011005

10021006
GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(DetectNotInstantiatedTest);
1003-
[ OK ] GoogleTestVerification.UninstantiatedParamaterizedTestSuite<DetectNotInstantiatedTest>
1007+
Stack trace: (omitted)
1008+
1009+
[ FAILED ] GoogleTestVerification.UninstantiatedParamaterizedTestSuite<DetectNotInstantiatedTest>
10041010
[ RUN ] GoogleTestVerification.UninstantiatedTypeParamaterizedTestSuite<DetectNotInstantiatedTypesTest>
1011+
googletest-output-test_.cc:#: Failure
10051012
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.
10061013

10071014
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.)
10081015

10091016
To suppress this error for this test suite, insert the following line (in a non-header) in the namespace it is definedin in:
10101017

10111018
GTEST_ALLOW_UNINSTANTIATED_PARAMETERIZED_TEST(DetectNotInstantiatedTypesTest);
1012-
[ OK ] GoogleTestVerification.UninstantiatedTypeParamaterizedTestSuite<DetectNotInstantiatedTypesTest>
1019+
Stack trace: (omitted)
1020+
1021+
[ FAILED ] GoogleTestVerification.UninstantiatedTypeParamaterizedTestSuite<DetectNotInstantiatedTypesTest>
10131022
[----------] Global test environment tear-down
10141023
BarEnvironment::TearDown() called.
10151024
googletest-output-test_.cc:#: Failure
@@ -1024,8 +1033,8 @@ Expected fatal failure.
10241033
Stack trace: (omitted)
10251034

10261035
[==========] 88 tests from 41 test suites ran.
1027-
[ PASSED ] 34 tests.
1028-
[ FAILED ] 54 tests, listed below:
1036+
[ PASSED ] 31 tests.
1037+
[ FAILED ] 57 tests, listed below:
10291038
[ FAILED ] NonfatalFailureTest.EscapesStringOperands
10301039
[ FAILED ] NonfatalFailureTest.DiffForLongStrings
10311040
[ FAILED ] FatalFailureTest.FatalFailureInSubroutine
@@ -1080,8 +1089,11 @@ Stack trace: (omitted)
10801089
[ FAILED ] BadDynamicFixture2.Derived
10811090
[ FAILED ] PrintingFailingParams/FailingParamTest.Fails/0, where GetParam() = 2
10821091
[ FAILED ] PrintingStrings/ParamTest.Failure/a, where GetParam() = "a"
1092+
[ FAILED ] GoogleTestVerification.UninstantiatedParamaterizedTestSuite<NoTests>
1093+
[ FAILED ] GoogleTestVerification.UninstantiatedParamaterizedTestSuite<DetectNotInstantiatedTest>
1094+
[ FAILED ] GoogleTestVerification.UninstantiatedTypeParamaterizedTestSuite<DetectNotInstantiatedTypesTest>
10831095

1084-
54 FAILED TESTS
1096+
57 FAILED TESTS
10851097
 YOU HAVE 1 DISABLED TEST
10861098

10871099
Note: Google Test filter = FatalFailureTest.*:LoggingTest.*

0 commit comments

Comments
 (0)