1. 29 Oct, 2019 5 commits
  2. 25 Oct, 2019 8 commits
  3. 24 Oct, 2019 1 commit
  4. 23 Oct, 2019 5 commits
    • Abseil Team's avatar
      Googletest export · 37f32278
      Abseil Team authored
      Add a matcher `testing::ReturnRoundRobin` which, on each call, returns the next element in the sequence, restarting at the beginning once it has reached the end.
      
      PiperOrigin-RevId: 276312136
      37f32278
    • vslashg's avatar
      Merge pull request #2522 from cloudrex:patch-1 · 1110c471
      vslashg authored
      PiperOrigin-RevId: 276271201
      1110c471
    • vslashg's avatar
      Merge pull request #2514 from thejcannon:msvc_macro_issue · 8bab7883
      vslashg authored
      PiperOrigin-RevId: 276134684
      8bab7883
    • Abseil Team's avatar
      Googletest export · aa1146da
      Abseil Team authored
      Split the scoped trace examples into two snippets.
      
      This doesn't have an effect in the github markdown renderer, but in some other renderers/templates, this leads them to be independently copy-pastable. In particular, the markdown rendering that Google uses internally has a copy button for each code snippet, which, before this change, would copy both lines. Bad copy button, no cookie! After this change, there will be two such buttons, one per line, and clicking a copy button will copy only the one snippet it is next to, and not the other. This is desirable because nobody will ever want to copy both lines, only one or the other.
      
      PiperOrigin-RevId: 276079009
      aa1146da
    • Piotr Nycz's avatar
      Added more tests to verify: ReturnRef not accept temporary · 37590da6
      Piotr Nycz authored
      Issue 2471
      37590da6
  5. 22 Oct, 2019 9 commits
  6. 19 Oct, 2019 1 commit
  7. 18 Oct, 2019 2 commits
  8. 17 Oct, 2019 3 commits
    • Abseil Team's avatar
      Googletest export · bbe4b736
      Abseil Team authored
      Added IsNan matcher
      
      PiperOrigin-RevId: 275278634
      bbe4b736
    • Gennadiy Civil's avatar
      Merge pull request #2507 from roblub:master · 2995ca56
      Gennadiy Civil authored
      PiperOrigin-RevId: 275076905
      2995ca56
    • Alexey Spiridonov's avatar
      [googletest] Output skip message · cbf019de
      Alexey Spiridonov authored
      Closes #2208
      
      Previously, skip messages were invisible, so debugging skips was hard.
      
      Now we have this:
      
      ```
      $ ./googletest/gtest_skip_test
      Running main() from /home/lesha/github/snarkmaster/googletest/googletest/src/gtest_main.cc
      [==========] Running 3 tests from 2 test suites.
      [----------] Global test environment set-up.
      [----------] 1 test from SkipTest
      [ RUN      ] SkipTest.DoesSkip
      /home/lesha/github/snarkmaster/googletest/googletest/test/gtest_skip_test.cc:38: Skipped
      skipping single test
      [  SKIPPED ] SkipTest.DoesSkip (0 ms)
      [----------] 1 test from SkipTest (1 ms total)
      ...
      ```
      cbf019de
  9. 16 Oct, 2019 3 commits
  10. 14 Oct, 2019 1 commit
    • Chris's avatar
      feat: Add ESP8266 support · 778733f9
      Chris authored
      * Added support for ESP8266
      * Removed previous Arduino defines in favor
        of GTEST_OS_* syntax
      * Improved PlatformIO library file to be more
        stable when consumed in client applications.
      778733f9
  11. 11 Oct, 2019 2 commits
    • Joshua Cannon's avatar
      Avoid recursive macros · e1b67b07
      Joshua Cannon authored
      e1b67b07
    • Robert Luberda's avatar
      Add more override keywords · 3cddd56e
      Robert Luberda authored
      Mark more functions with "override" keyword, just like
      it was done in commit 2460f971.
      
      This should prevent compiler from complaining while compiling both
      user code, and the googletest code itself with the -Wsuggest-override
      option turned on; with the exception of:
       * calls to new MOCK_METHOD() in test/gmock-function-mocker_test.cc
       * calls to old MOCK_METHODx()/MOCK_CONST_METHODx() in other
         unit test files.
      
      Closes #2493
      3cddd56e