1. 26 Apr, 2021 2 commits
  2. 21 Apr, 2021 4 commits
    • Andy Soffer's avatar
      Merge pull request #3314 from Vollstrecker:master · 23ef2955
      Andy Soffer authored
      PiperOrigin-RevId: 369550590
      23ef2955
    • Abseil Team's avatar
      Googletest export · f16d43cd
      Abseil Team authored
      This callsite was previously updated to use ZX_INFO_PROCESS_V2 as a part of a soft transition. It is now time to revert back to `ZX_INFO_PROCESS` (which is now an alias of the former). See fxbug.dev/30751 for more details.
      
      PiperOrigin-RevId: 369370855
      f16d43cd
    • Abseil Team's avatar
      Googletest export · 0d9daa99
      Abseil Team authored
      This callsite was previously updated to use ZX_INFO_PROCESS_V2 as a part of a soft transition. It is now time to revert back to `ZX_INFO_PROCESS` (which is now an alias of the former). See fxbug.dev/30751 for more details.
      
      PiperOrigin-RevId: 369349579
      0d9daa99
    • Andy Soffer's avatar
      Merge pull request #3364 from jbampton:fix-spelling · 566fdcc9
      Andy Soffer authored
      PiperOrigin-RevId: 369217358
      566fdcc9
  3. 20 Apr, 2021 1 commit
  4. 17 Apr, 2021 1 commit
    • dmauro's avatar
      Googletest export · eaf9a3fd
      dmauro authored
      Use the time_point from steady_clock instead of the template
      This fixes the build on some embedded compilers
      
      PiperOrigin-RevId: 368879480
      eaf9a3fd
  5. 16 Apr, 2021 1 commit
  6. 15 Apr, 2021 4 commits
  7. 14 Apr, 2021 4 commits
  8. 13 Apr, 2021 3 commits
  9. 09 Apr, 2021 2 commits
  10. 08 Apr, 2021 5 commits
    • Abseil Team's avatar
      Googletest export · 6a5eb807
      Abseil Team authored
      Update the example for Notify to use a lambda.
      It is much less boilerplate and easier to remember.
      
      PiperOrigin-RevId: 367284222
      6a5eb807
    • Abseil Team's avatar
      Googletest export · 8a65bc03
      Abseil Team authored
      Docs: Add examples for `FieldsAre` matcher
      PiperOrigin-RevId: 367263024
      8a65bc03
    • Abseil Team's avatar
      Googletest export · d0303e40
      Abseil Team authored
      Migrate away from deprecated --heap_check=strict
      
      PiperOrigin-RevId: 367226846
      d0303e40
    • Abseil Team's avatar
      Googletest export · 601a6815
      Abseil Team authored
      This is part of a soft transition over to having ZX_INFO_PROCESS
      populate a new struct. See fxbug.dev/30751 for more details.
      
      PiperOrigin-RevId: 367083068
      601a6815
    • Abseil Team's avatar
      Googletest export · 54689b19
      Abseil Team authored
      Docs: Clarifying matcher in `Pointwise` and `UnorderedPointwise`
      PiperOrigin-RevId: 367059198
      54689b19
  11. 05 Apr, 2021 2 commits
    • Abseil Team's avatar
      Googletest export · 5c8ca58e
      Abseil Team authored
      Disable blank issue template, delete question template
      
      PiperOrigin-RevId: 366874747
      5c8ca58e
    • Abseil Team's avatar
      Googletest export · 4048829d
      Abseil Team authored
      Add macros to omit {EXPECT,ASSERT}_{TRUE,FALSE}
      
      PiperOrigin-RevId: 366455905
      4048829d
  12. 30 Mar, 2021 1 commit
  13. 25 Mar, 2021 9 commits
  14. 22 Mar, 2021 1 commit
    • Abseil Team's avatar
      Googletest export · 1a8ecf18
      Abseil Team authored
      Print std::u8string, std::u16string, and std::u32string as string literals
      
      Previously, these types were printed as "{ U+123, U+456, U+789 }". However,
      printed output in that form is difficult to compare against any literals that
      might be defined in code. Instead, just treat these types like std::string
      and std::wstring, escaping non-ASCII characters with a hexadecimal escape
      sequence.
      
      The tests have also been updated to cover the new functionality: as a bonus,
      the tests now also pass with the MSVC toolchain.
      
      Internally, the code has been reorganized to primarily operate in terms of
      char32_t, under the assumption that char32_t will always be at least as big
      as wchar_t. While that assumption is currently true, perhaps it won't be in
      the future...
      
      PiperOrigin-RevId: 364033132
      1a8ecf18