gtest-use-json-output-for-discovery.rst 735 B

123456789101112
  1. gtest-use-json-output-for-discovery
  2. -----------------------------------
  3. * The :command:`gtest_discover_tests()` command from the :module:`GoogleTest`
  4. module now sets the ``DEF_SOURCE_LINE`` test property for each discovered
  5. test if gtest supports the ``--gtest_output=json`` option. This test
  6. property is used by some IDEs to locate the source for each test.
  7. * The :command:`gtest_discover_tests()` command from the :module:`GoogleTest`
  8. module previously parsed certain type-parameterized test names incorrectly.
  9. Their names ended up with raw characters from gtest's output and were
  10. very obviously misparsed. Those names are now parsed correctly, so projects
  11. may see different test names to before for affected tests.