1. 15 Apr, 2020 1 commit
    • Victor Costan's avatar
      Roll v8/third_party/googletest/src/ 10b1902d8..e3f0319d8 (43 commits) · b78080dd
      Victor Costan authored
      https://chromium.googlesource.com/external/github.com/google/googletest.git/+log/10b1902d893e..e3f0319d89f4
      
      This CL also removes references to gmock-generated-matchers.h, which was
      removed from googletest in commit
      41b5f149ab306e96b5b2faf523505d75acffd98a, and to
      gmock-generated-function-mockers.h, which was removed from googletest in
      commit fbf67a70d07543f40832d0cd7a58f304bc6ab1d1.
      
      $ git log 10b1902d8..e3f0319d8 --date=short --no-merges --format='%ad %ae %s'
      2020-04-01 absl-team Googletest export
      2020-03-30 absl-team Googletest export
      2020-03-23 absl-team Googletest export
      2020-03-24 krystian.kuzniarek remove chapters on Autotools, Meson and plain Makefiles
      2020-03-24 krystian.kuzniarek remove dead code in googletest-output-test
      2020-03-24 pkryger Swap settimer and sigaction calls to avoid SIGPROF
      2020-03-20 absl-team Googletest export
      2019-07-11 adam.f.badura Add support for std::function in MockFunction (#2277)
      2019-12-26 adam.f.badura Add tests for MockFunction deduction (#2277)
      2020-03-17 absl-team Googletest export
      2020-03-16 dmauro Googletest export
      2020-03-13 absl-team Googletest export
      2020-03-06 absl-team Googletest export
      2020-03-03 absl-team Googletest export
      2020-03-03 absl-team Googletest export
      2020-03-11 romain.geissler Make sure IsATTY does not clobber errno.
      2020-02-27 absl-team Googletest export
      2020-02-25 absl-team Googletest export
      2020-02-19 absl-team Googletest export
      2020-02-21 johan.mabille Fixed warnings
      2020-02-12 absl-team Googletest export
      2020-02-11 absl-team Googletest export
      2020-02-11 absl-team Googletest export
      2020-02-10 absl-team Googletest export
      2020-02-10 absl-team Googletest export
      2020-02-07 absl-team Googletest export
      2020-02-07 absl-team Googletest export
      2020-02-06 durandal Googletest export
      2020-02-05 absl-team Googletest export
      2020-02-05 absl-team Googletest export
      2020-02-03 absl-team Googletest export
      2020-02-03 absl-team Googletest export
      2020-01-31 absl-team Googletest export
      2020-01-31 absl-team Googletest export
      2020-01-29 absl-team Googletest export
      2020-01-27 absl-team Googletest export
      2020-01-27 absl-team Googletest export
      2020-01-27 absl-team Googletest export
      2020-01-24 absl-team Googletest export
      2020-01-24 absl-team Googletest export
      2020-01-23 absl-team Googletest export
      2020-01-29 krystian.kuzniarek remove a dead reference to the Autotools script
      2019-11-11 krystian.kuzniarek add documentation for the premature-exit-file protocol
      
      Created with:
        roll-dep v8/third_party/googletest/src
      
      Bug: chromium:1070043
      Change-Id: If63ebef3355a8e9da53cfa131c50ba03a0ea650d
      Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2150068Reviewed-by: 's avatarMichael Achenbach <machenbach@chromium.org>
      Commit-Queue: Victor Costan <pwnall@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#67138}
      b78080dd
  2. 12 Aug, 2019 1 commit
  3. 31 May, 2019 1 commit
  4. 27 Mar, 2018 1 commit
  5. 23 Mar, 2018 1 commit
    • Victor Costan's avatar
      Roll googletest to 1.8.0+. · 539e9072
      Victor Costan authored
      This is the V8 equivalent to https://crrev.com/2779193002 and must be landed
      before //build/secondary/{gtest,gmock} are removed from Chromium. This started
      out as https://crrev.com/2847693002
      
      The changes in tools/ were authored by yangguo@chromium.org and
      initially shared in http://crrev.com/2849783003.
      
      GoogleTest (gtest) and GoogleMock (gmock) are now hosted into the same
      googletest repository. In order to cope with this, the googletest
      repository is now sourced at third_party/googletest.
      
      The file/directory layout of Google Test is not yet considered stable.
      To minimize disruption while Google Test stabilizes, Chromium code will
      be insulated from third_party/googletest.
      
      * testing/gtest/include/gtest/ and testing/gmock/include/gmock have
        been populated with headers that forward into the appropriate
        locations of third_party/googletest
      
      * testing/BUILD.gn has been populated with the targets
        //testing/gtest(:gtest_main) and //testing/gmock(:gmock_main),
        which depend on the appropriate //third_party/googletest targets.
      
      All Chromium code should keep depending on the targets and
      headers in testing/{gtest,gmock} for now.
      
      BUG=chromium:630705
      
      Change-Id: I12b07ae78c8039aeff6ada7a3335e4e2b5d308ab
      Reviewed-on: https://chromium-review.googlesource.com/639953Reviewed-by: 's avatarMichael Achenbach <machenbach@chromium.org>
      Commit-Queue: Victor Costan <pwnall@chromium.org>
      Cr-Commit-Position: refs/heads/master@{#52170}
      539e9072
  6. 22 Mar, 2018 1 commit
  7. 30 Jan, 2018 1 commit
  8. 25 Jul, 2016 1 commit
    • tzik's avatar
      Use GTEST_LANG_CXX11 in V8 · 497e10bf
      tzik authored
      For GYP build, V8 configures gtest and gmock in its //testing, and OTOH for
      GN build, it imports BUILD.gn from chromium and uses other configurations
      from its own. However, a recent chromium change on the BUILD.gn requires
      //testing update too. That prevents //build roll of V8.
      
      BUG=chromium:630299
      
      Review-Url: https://codereview.chromium.org/2179743002
      Cr-Commit-Position: refs/heads/master@{#38021}
      497e10bf
  9. 28 May, 2015 1 commit
  10. 22 May, 2015 1 commit
  11. 19 May, 2015 1 commit
  12. 30 Apr, 2015 1 commit
  13. 14 Apr, 2015 1 commit
  14. 09 Apr, 2015 1 commit
  15. 02 Apr, 2015 1 commit
  16. 30 Mar, 2015 1 commit
  17. 26 Mar, 2015 1 commit
  18. 24 Mar, 2015 1 commit
  19. 24 Feb, 2015 1 commit
  20. 20 Feb, 2015 2 commits
  21. 27 Jan, 2015 1 commit
  22. 16 Jan, 2015 1 commit
  23. 07 Jan, 2015 1 commit
  24. 05 Jan, 2015 1 commit
  25. 21 Oct, 2014 1 commit
  26. 06 Oct, 2014 1 commit
  27. 23 Sep, 2014 1 commit
  28. 04 Sep, 2014 1 commit
  29. 26 Aug, 2014 1 commit
  30. 18 Aug, 2014 1 commit
  31. 14 Aug, 2014 1 commit
  32. 12 Aug, 2014 3 commits
  33. 11 Aug, 2014 1 commit
  34. 07 Aug, 2014 1 commit
  35. 05 Aug, 2014 3 commits