1. 14 Aug, 2018 1 commit
  2. 09 Aug, 2018 5 commits
  3. 08 Aug, 2018 1 commit
  4. 07 Aug, 2018 1 commit
  5. 03 Aug, 2018 1 commit
  6. 30 Jul, 2018 1 commit
  7. 25 Jul, 2018 1 commit
  8. 18 Jul, 2018 2 commits
    • Gennadiy Civil's avatar
      · d41bfd73
      Gennadiy Civil authored
      Fix link
      d41bfd73
    • Gennadiy Civil's avatar
      · 7e73a7ae
      Gennadiy Civil authored
      Formatting and a link
      7e73a7ae
  9. 10 Jul, 2018 1 commit
    • Derek Mauro's avatar
      Adds stacktrace support from Abseil to Google Test · 4c417877
      Derek Mauro authored
      This change adds the ability to generate stacktraces in Google Test on
      both failures of assertions/expectations and on crashes. The
      stacktrace support is conditionally available only when using Abseil
      with Google Test.
      
      To use this support, run the test under Bazel with a command like this:
      
      bazel test --define absl=1 --test_env=GTEST_INSTALL_FAILURE_SIGNAL_HANDLER=1 //path/to/your:test
      
      The "--define absl=1" part enables stacktraces on assertion/expectation
      failures.
      
      The "--test_env=GTEST_INSTALL_FAILURE_SIGNAL_HANDLER=1" part enables
      the signal handler that logs a stacktrace in the event of a crash
      (this also requires the "--define absl=1" part). This is not the
      default since it may interfere with existing tests.
      4c417877
  10. 14 Jun, 2018 1 commit
    • Rohan Joyce's avatar
      Eliminate GTEST_TEST_FILTER_ENV_VAR_. · 0563b52d
      Rohan Joyce authored
      GTEST_TEST_FILTER_ENV_VAR_ was used to specify an environment variable to obtain
      the default test filter from. By default it was unset which broke
      "--test_filter" for bazel. This CL eliminates GTEST_TEST_FILTER_ENV_VAR_ and
      explicitly obtains the default test filter from the environment variable
      TESTBRIDGE_TEST_ONLY if it exists.
      0563b52d
  11. 12 Jun, 2018 1 commit
    • Takuto Ikuta's avatar
      Reduce the number of strcmp calling while initialization · f4d0631a
      Takuto Ikuta authored
      When we do parallel test execution with a process for a test,
      initialization of gtest become performance bottleneck when the test
      binary contains many testcases.
      
      Especially, some parameterlized test in chromium browser affected by
      largely when address sanitizer is enabled.
      Address sanitizer does not allow using optimized strcmp function and
      test addition in parameterized test require lookup of test case using
      strcmp.
      
      This patch reduces the number of strcmp, it is called when registering
      parameterized test. Using reverse iterator improves the time to find
      registered tests in such case.
      
      Some tests for chromium browser using address sanitizer finished 2x
      faster with this patch.
      f4d0631a
  12. 11 Jun, 2018 1 commit
    • Gennadiy Civil's avatar
      · 8f87d003
      Gennadiy Civil authored
      Rename AdvancedGuide.md to advanced.md and adjust the links. 
      Part of documentation rationalization work
      8f87d003
  13. 07 Jun, 2018 1 commit
  14. 31 May, 2018 2 commits
  15. 23 May, 2018 1 commit
  16. 11 May, 2018 1 commit
  17. 09 May, 2018 1 commit
  18. 07 May, 2018 1 commit
  19. 03 May, 2018 4 commits
  20. 02 May, 2018 2 commits
  21. 01 May, 2018 1 commit
  22. 04 Apr, 2018 1 commit
  23. 29 Mar, 2018 1 commit
  24. 28 Mar, 2018 1 commit
  25. 26 Mar, 2018 1 commit
  26. 22 Mar, 2018 1 commit
  27. 21 Mar, 2018 1 commit
  28. 15 Mar, 2018 1 commit
  29. 07 Mar, 2018 1 commit
  30. 05 Mar, 2018 1 commit