]> git-server-git.apps.pok.os.sepia.ceph.com Git - googletest.git/log
googletest.git
4 years agoGoogletest export
Abseil Team [Thu, 10 Jun 2021 16:52:12 +0000 (09:52 -0700)]
Googletest export

Internal change

PiperOrigin-RevId: 378672633

4 years agoGoogletest export
Abseil Team [Thu, 10 Jun 2021 02:02:13 +0000 (19:02 -0700)]
Googletest export

Add feature request issue template

PiperOrigin-RevId: 378552571

4 years agoGoogletest export
dmauro [Wed, 9 Jun 2021 20:21:44 +0000 (13:21 -0700)]
Googletest export

Delete Travis config file

PiperOrigin-RevId: 378483262

4 years agoGoogletest export
Abseil Team [Wed, 9 Jun 2021 16:55:55 +0000 (09:55 -0700)]
Googletest export

cleanup: fix spurious MSAN warnings with Clang 12
PiperOrigin-RevId: 378430614

4 years agoGoogletest export
Abseil Team [Wed, 9 Jun 2021 12:38:06 +0000 (08:38 -0400)]
Googletest export

Add CNAME file for custom domain

PiperOrigin-RevId: 378384525

4 years agoGoogletest export
Abseil Team [Tue, 8 Jun 2021 23:22:46 +0000 (19:22 -0400)]
Googletest export

Update broken link

PiperOrigin-RevId: 378272186

4 years agoGoogletest export
Abseil Team [Fri, 4 Jun 2021 22:39:30 +0000 (18:39 -0400)]
Googletest export

Add CNAME file for custom domain

PiperOrigin-RevId: 377604116

4 years agoMerge pull request #3421 from florin-crisan:bugfix/3420-dll-link-failure
Derek Mauro [Tue, 8 Jun 2021 22:36:29 +0000 (18:36 -0400)]
Merge pull request #3421 from florin-crisan:bugfix/3420-dll-link-failure

PiperOrigin-RevId: 377367006

4 years agoGoogletest export
dmauro [Thu, 3 Jun 2021 19:52:34 +0000 (15:52 -0400)]
Googletest export

Fix MSVC warning C4275: non dll-interface class
'testing::MatcherDescriberInterface' used as base for dll-interface
class 'testing::internal::MatcherBase<std::string>'

Fixes #3415

PiperOrigin-RevId: 377352684

4 years ago#3420 Declare MarkAsIgnored as a DLL export
Florin Crișan [Fri, 28 May 2021 09:05:04 +0000 (12:05 +0300)]
#3420 Declare MarkAsIgnored as a DLL export

This was causing the following linker error on Microsoft Visual C++ when compiling as a DLL:

```
googletest-param-test-test.cc.obj : error LNK2019: unresolved external symbol "public: __cdecl testing::internal::MarkAsIgnored::MarkAsIgnored(char const *)" (??0MarkAsIgnored@internal@testing@@QEAA@PEBD@Z) referenced in function "void __cdecl works_here::`dynamic initializer for 'gtest_allow_ignore_NotInstantiatedTest''(void)" (??__Egtest_allow_ignore_NotInstantiatedTest@works_here@@YAXXZ)
```