Skip to content
Snippets Groups Projects
  1. Jan 17, 2020
    • Abseil Team's avatar
      Googletest export · 0b024bd9
      Abseil Team authored
      Add GTEST_ALLOW_UNINSTANTIATED_PARAMTERIZED_TEST to mark a paramaterized test as allowed to be un-instantiated.
      
      This allows test suites, that are defined in libraries and, for other reasons, get linked in (which should probably be avoided, but isn't always possible) to be marked as allowed to go uninstantiated.
      
      This can also be used to grandfather existing issues and expedite adoption of the checks with regards to new cases before they can be fixed.
      
      PiperOrigin-RevId: 289581573
      0b024bd9
    • Abseil Team's avatar
      Googletest export · ed16134f
      Abseil Team authored
      Change testing::TempDir() return value for Android
      
      PiperOrigin-RevId: 289102017
      ed16134f
  2. Jan 10, 2020
    • Abseil Team's avatar
      Googletest export · d854bd6a
      Abseil Team authored
      Removing GTEST_API from TrueWithString.
      This type is only used in test code on one side of a DLL boundary so it is not
      necessary.
      
      PiperOrigin-RevId: 288927929
      d854bd6a
    • Abseil Team's avatar
      Googletest export · c901f67d
      Abseil Team authored
      Move part of functionality of Action* class to the base one. Reduce copypaste.
      
      Make constructor and conversion operator of Action* class independent of pump.
      
      PiperOrigin-RevId: 288907005
      c901f67d
    • Abseil Team's avatar
      Googletest export · 8417b733
      Abseil Team authored
      Close #2658
      Mark test case destrucors as override.
      
      PiperOrigin-RevId: 288507991
      8417b733
    • Abseil Team's avatar
      Googletest export · 4b9c1691
      Abseil Team authored
      Use C++11 variadic templates for Invoke in gmock-generated-actions.h.
      
      Replace InvokeArgumentAdl with Invoke that uses C++11 variadic templates.
      
      PiperOrigin-RevId: 288449236
      4b9c1691
  3. Jan 03, 2020
    • Abseil Team's avatar
      Googletest export · 306f3754
      Abseil Team authored
      Explicitly default copy constructor in BoundSecondMatcher
      
      Since C++11, implicit defaulting of copy constructors is deprecated for types
      with user-defined copy assignment operators, so we should explicitly default the
      copy constructor of BoundSecondMatcher.
      
      PiperOrigin-RevId: 287587847
      306f3754
    • Andy Soffer's avatar
      Merge pull request #2632 from Kravlalala:cmake/mingw_msys_build · 07ab939a
      Andy Soffer authored
      PiperOrigin-RevId: 287587126
      07ab939a
    • Abseil Team's avatar
      Googletest export · 0d98d87e
      Abseil Team authored
      Add missing period.
      
      PiperOrigin-RevId: 287553550
      0d98d87e
    • Abseil Team's avatar
      Googletest export · 153909f0
      Abseil Team authored
      Fix typo in example.
      
      PiperOrigin-RevId: 287212448
      153909f0
    • Andy Soffer's avatar
      Merge pull request #2639 from trzecieu:trzeci/move_ctor_assign · fbe34cec
      Andy Soffer authored
      PiperOrigin-RevId: 286896167
      fbe34cec
    • Abseil Team's avatar
      Googletest export · a13a0626
      Abseil Team authored
      Add option (default to disabled) to make C++ type parameterized tests (TYPED_TEST_P) fail when they're not instantiated.
      
      When an un-instantiated TYPED_TEST_P is found, a new test will be inserted that emits a suitable message. For now, that is just a notice, but the hope it to flip the bit to make it fail by default.
      
      PiperOrigin-RevId: 286408038
      a13a0626
    • Andy Soffer's avatar
      Merge pull request #2624 from ShabbyX:master · 008629ae
      Andy Soffer authored
      PiperOrigin-RevId: 286397298
      008629ae
    • Abseil Team's avatar
      Googletest export · d0a52125
      Abseil Team authored
      Use C++11 variadic templates for InvokeArgumentAdl in gmock-generated-actions.h.
      
      Make InvokeArgumentAdl use variadic templates to generate its overloads instead
      of using pump.py syntax.
      
      PiperOrigin-RevId: 286267615
      d0a52125
    • Abseil Team's avatar
      Googletest export · 6f1a8ffd
      Abseil Team authored
      Use C++11 variadic templates for InvokeArgumentAdl in gmock-generated-actions.h.
      
      Make InvokeArgumentAdl use variadic templates to generate its overloads instead
      of using pump.py syntax.
      
      PiperOrigin-RevId: 286148805
      6f1a8ffd
  4. Dec 20, 2019
  5. Dec 18, 2019
  6. Dec 17, 2019
    • CJ Johnson's avatar
      Merge pull request #2590 from kuzkry:remove-workaround_g++-stale-comments · d166e094
      CJ Johnson authored
      PiperOrigin-RevId: 285812343
      d166e094
    • krzysio's avatar
      Googletest export · 0a0c8266
      krzysio authored
      Don't use fully qualified ::std types in code examples.
      
      Having a nested user-defined 'std' namespace anywhere in a program is a minefield and shouldn't be either explicitly supported or implicitly condoned.
      
      PiperOrigin-RevId: 285790182
      0a0c8266
    • Shahbaz Youssefi's avatar
      Revert "Googletest export": disallow empty prefix · 1800a38f
      Shahbaz Youssefi authored
      This reverts commit 20b5b8ec.
      Reason for revert: Breaks existing applications, such as ANGLE
      (angleproject.org), requires adding an extra prefix that needs to be
      typed for no reason (when testing from command line) and increases the
      logs' sizes by a non-trivial amount due to the very large number of
      tests ANGLE runs.
      
      Original commit message:
      
          Add a compile time check to ensure that the parameters to TEST_P and
          INSTANTIATE_TEST_SUITE_P are not empty. Some compilers already fail
          in that case and, even where it works, it's likely to result in
          technically invalid code by virtue of creating reserved identifiers:
          https://en.cppreference.com/w/cpp/language/identifiers
      
      First, every project is perfectly capable of adding a prefix if they
      want to support such a compiler. This change penalizes every
      project.
      
      Second, using a prefix such as `_p` also results in reserved
      identifiers, so this change is not really solving the problem.  For that
      matter, instead of generating `gtest_##prefix##...`, you can generate
      `gtest_x##prefix##...` to correctly fix the issue, including when empty
      prefixes are used.
      1800a38f
    • Shahbaz Youssefi's avatar
      Revert "Googletest export": Remove test for empty prefix · 4b7809c2
      Shahbaz Youssefi authored
      This reverts commit 4c25e2b8.
      Reason for revert: Reverting the commit that disallows empty prefixes.
      
      Original commit message:
      
          Remove a test case rendered obsolete by disallowing empty argument for INSTANTIATE_TEST_SUITE_P.
          Remove the code that it was testing.
      4b7809c2
    • Shahbaz Youssefi's avatar
      Workaround VS bug w.r.t empty arguments to macros · d2016469
      Shahbaz Youssefi authored
      Empty arguments can be passed to macros per C99 and C++11 specs, which
      can then be forwarded to other macros.
      
      Visual Studio's compiler has a bug in the following situation:
      
          #define A(x) #x
          #define B(x, y) A(x)
          B(, b)
      
      In the above case, Visual Studio first expands x to nothing, then
      complains that A is not invoked with the right amount of arguments.
      However, x in A(x) is still one argument, even if it expands to no
      preprocessing tokens.  See also https://stackoverflow.com/a/7674214.
      d2016469
  7. Dec 14, 2019
  8. Dec 13, 2019
  9. Dec 07, 2019
  10. Dec 06, 2019
  11. Dec 03, 2019
Loading