1. 07 Aug, 2020 3 commits
    • Abseil Team's avatar
      Googletest export · d0de618a
      Abseil Team authored
      Fixing exception-safety bug in googletest. Previously, if an exception was
      thrown during a call to a mock that would have triggered an error, the error
      was discarded.
      
      Fixes #2890
      
      PiperOrigin-RevId: 325017806
      d0de618a
    • Abseil Team's avatar
      Googletest export · 5a5caab3
      Abseil Team authored
      Fix DoAll to work with move-only sink arguments.
      
      This changes types of the first n - 1 actions so that they only get a readonly
      view of the arguments. The last action will accept move only objects.
      
      PiperOrigin-RevId: 324619666
      5a5caab3
    • Abseil Team's avatar
      Googletest export · 48ec6409
      Abseil Team authored
      Fix DoAll to work with move-only sink arguments.
      
      This changes types of the first n - 1 actions so that they only get a readonly
      view of the arguments. The last action will accept move only objects.
      
      PiperOrigin-RevId: 324600664
      48ec6409
  2. 31 Jul, 2020 2 commits
  3. 29 Jul, 2020 1 commit
    • Abseil Team's avatar
      Googletest export · 68ca04c2
      Abseil Team authored
      Updated documentation for Value-Parameterized Tests: Per-default, a TEST_P without a corresponding INSTANTIATE_TEST_SUITE_P now causes a failing test.
      
      PiperOrigin-RevId: 323622468
      68ca04c2
  4. 28 Jul, 2020 2 commits
    • Abseil Team's avatar
      Googletest export · 18a9aeda
      Abseil Team authored
      Internal documentation change.
      
      PiperOrigin-RevId: 323612305
      18a9aeda
    • ofats's avatar
      Googletest export · c6430992
      ofats authored
      Stop using ADL for InvokeArgument action.
      
      PiperOrigin-RevId: 323234396
      c6430992
  5. 19 Jul, 2020 1 commit
  6. 15 Jul, 2020 3 commits
  7. 11 Jul, 2020 1 commit
  8. 09 Jul, 2020 7 commits
  9. 05 Jul, 2020 1 commit
    • Abseil Team's avatar
      Googletest export · 356f2d26
      Abseil Team authored
      Improve compatibility with strict compilers targeting Windows
      
      Remove an unnecessary ##, which could result in warnings about invalid preprocessor tokens when pasting to an initial '('
      
      PiperOrigin-RevId: 319277617
      356f2d26
  10. 02 Jul, 2020 2 commits
  11. 26 Jun, 2020 7 commits
  12. 20 Jun, 2020 1 commit
  13. 19 Jun, 2020 1 commit
  14. 18 Jun, 2020 1 commit
    • Abseil Team's avatar
      Googletest export · c6e309b2
      Abseil Team authored
      gtest.cc: fix a couple typos
      
      s/paramaterized/parameterized/
      
      PiperOrigin-RevId: 316878900
      c6e309b2
  15. 15 Jun, 2020 1 commit
    • Abseil Team's avatar
      Googletest export · 549c5d06
      Abseil Team authored
      gMock Cookbook: Fix incorrect comment about EXPECT priority order
      
      It's actually the last matching expectation that's used, not the first.
      
      PiperOrigin-RevId: 316490770
      549c5d06
  16. 12 Jun, 2020 1 commit
    • dmauro's avatar
      Googletest export · 8567b092
      dmauro authored
      Adds support for printing pointers of types char8_t, char16_t, and char32_t.
      
      PiperOrigin-RevId: 316112767
      8567b092
  17. 10 Jun, 2020 5 commits
    • Abseil Team's avatar
      Googletest export · 13a433a9
      Abseil Team authored
      Change string matchers, like HasSubstr, to accept `string_view` input if available.
      
      PiperOrigin-RevId: 315726484
      13a433a9
    • Abseil Team's avatar
      Googletest export · 9f287b46
      Abseil Team authored
      Make visible ParseInt32 in case users have separate gmock/gtest libraries and hidden-by-default symbols.
      
      This function is still considered an internal implementation detail and is subject to change without notice. It is still unsafe/unsupported to link together libraries built at different commits.
      
      PiperOrigin-RevId: 315405429
      9f287b46
    • Abseil Team's avatar
      Googletest export · ec94d9f2
      Abseil Team authored
      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
      ec94d9f2
    • dmauro's avatar
      Googletest export · 1b0cdaae
      dmauro authored
      Add missing static_cast to char32_t printer
      
      PiperOrigin-RevId: 314925583
      1b0cdaae
    • Ryan Harrison's avatar
      Fix build issue for MinGW · 1eda5d82
      Ryan Harrison authored
      Fixes #2885
      1eda5d82