1. 31 Oct, 2019 2 commits
    • Abseil Team's avatar
      Googletest export · 2db3df9c
      Abseil Team authored
      Change variable name to match comment.
      
      PiperOrigin-RevId: 277713621
      2db3df9c
    • Abseil Team's avatar
      Googletest export · e2fc3a9c
      Abseil Team authored
      Tolerate std::string's explicit copy construction from std::string_view.
      
      PiperOrigin-RevId: 277583394
      e2fc3a9c
  2. 30 Oct, 2019 1 commit
    • misterg's avatar
      Googletest export · 0a034808
      misterg authored
      Remove outdated unsupported scripts
      
      PiperOrigin-RevId: 277556831
      0a034808
  3. 29 Oct, 2019 8 commits
  4. 25 Oct, 2019 8 commits
  5. 24 Oct, 2019 1 commit
  6. 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
  7. 22 Oct, 2019 9 commits
  8. 19 Oct, 2019 1 commit
  9. 18 Oct, 2019 2 commits
  10. 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