Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/google/googletest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-11-11Defined a testing::SrcDir() function that returns the name of a directoryHEADmainAbseil Team
where ancillary data files can be found. PiperOrigin-RevId: 487896836 Change-Id: Ie6b1ba734e900fa33872b63090879ee6efe33411
2022-11-10Merge pull request #4039 from zloylos:fix-return-fail-at-4038Copybara-Service
PiperOrigin-RevId: 487516335 Change-Id: Ib475750586fc7e6ab01729f65253e3a86916b994
2022-11-08Remove incorrect GTEST_ATTRIBUTE_UNUSED_ from InSequence class.Abseil Team
Fixes: #4048 PiperOrigin-RevId: 486951561 Change-Id: I4fae101b5ac5ed4f46c32aba8c36519e1f784db1
2022-11-07RecordProperty serializes ints and 64-bit ints, including size_tsAbseil Team
PiperOrigin-RevId: 486685761 Change-Id: I164d2646e65670d341dbf437ee571953c456677a
2022-11-05Fix typo in documentation of ConvertGenerator()Abseil Team
PiperOrigin-RevId: 486316328 Change-Id: I91d5d5ba1aaf4a4ab14019c8963e7fe181722f95
2022-11-03Add documentation for `--gunit_recreate_environments_when_repeating`.Abseil Team
PiperOrigin-RevId: 485895339 Change-Id: I09b0f535941531ef7bcb74593d385891d56b3e32
2022-10-25Merge pull request #4041 from zloylos:allow-naming-expectationsCopybara-Service
PiperOrigin-RevId: 483683590 Change-Id: Id22de3a22018324e5c1e21e262ac5e027a83bf3e
2022-10-25Use git commit hash in CMake quickstartDino Radakovic
Commit hashes reflect GoogleTest's live-at-head stance. Credits to @shinfd. Fixes #4000 PiperOrigin-RevId: 483655943 Change-Id: Ieeb162859348dbe3657e18f283bac81412f2585d
2022-10-24Clarify that parameter generator does not evaluate immediatelyAbseil Team
This aims to avoid confusion as to what kinds of computations are valid inside a parameter generator expression, calling out flags as a supported use case. PiperOrigin-RevId: 483397027 Change-Id: I2d036fae95120d617f30a5566ea7498ce1f9bfb6
2022-10-21Fix format without expectation nameDenis Hananein
Signed-off-by: Denis Hananein <i@zloylos.me>
2022-10-21Change messagesDenis Hananein
Signed-off-by: Denis Hananein <i@zloylos.me>
2022-10-21Allow naming expectations #3970Denis Hananein
Signed-off-by: Denis Hananein <i@zloylos.me>
2022-10-19Merge pull request #4036 from zloylos:fix-output-json-3884Copybara-Service
PiperOrigin-RevId: 482287697 Change-Id: I1179a1570cd64fcb156bda26e5c779b876c51742
2022-10-19CMake: Add GTEST_HAS_ABSL build option for using AbslAbseil Team
PiperOrigin-RevId: 482101793 Change-Id: I1bd140fd6a325f573c8a0c464e4dccd4acd0d0a3
2022-10-18Adds Win32 UNC path support to FilePath::IsAbsolutePath() and ↵Abseil Team
FilePath::IsRootDirectory() in GoogleTest Fixes: #3025 PiperOrigin-RevId: 481932601 Change-Id: I90fcb5b3d189aea79a0fd18735bad038b3511270
2022-10-18Fix detection of the no_sanitize("hwaddress") attributeDerek Mauro
PiperOrigin-RevId: 481765573 Change-Id: I1ba829c3cbf364a51d3ba383ee3b474c0e109578
2022-10-18Merge pull request #4037 from KloolK:patch-1Copybara-Service
PiperOrigin-RevId: 481734961 Change-Id: I629dc1ca3b10bf5fc6afc179b651a09081f5c919
2022-10-17Add Windows CI scriptDino Radakovic
PiperOrigin-RevId: 481680362 Change-Id: I87b2b71427a8ad2603f5445d6ef794c3fa84746e
2022-10-16Add return for GTEST_FAIL_ATDenis Hananein
2022-10-14Use attribute testing to simplify portable attribute macrosDerek Mauro
Fixes #4025 PiperOrigin-RevId: 481186097 Change-Id: Id7d09e4626e5ccf564e8cfaa65581c1cd827918d
2022-10-14Terse printing of std::reference_wrapper hides pointerAbseil Team
This matches the intention and documentation of terse printing which generally avoids printing the pointer. PiperOrigin-RevId: 481178950 Change-Id: I27039dac1870934d2d5b212e2cc7e97ab82c5b34
2022-10-14Fix table markup in testing.mdJan
2022-10-12Merge pull request #4035 from Vertexwahn:update-depsCopybara-Service
PiperOrigin-RevId: 480696284 Change-Id: I633043f29883583efda7fa5a6dff754d096d6f7a
2022-10-12Workaround for Visual C++ error C2039 with std::tuple_element_t.Abseil Team
Fixes #3931 PiperOrigin-RevId: 480659507 Change-Id: I6fabef63b1285189a06375227273d9de2456e37a
2022-10-11Fix JSON output format #3884Denis Hananein
2022-10-10Merge pull request #4032 from Ferenc-:suggest-fixed-versionCopybara-Service
PiperOrigin-RevId: 480170766 Change-Id: Id596e5698bea789e431f7a50d4a662ffa7b5d9aa
2022-10-09Suggests a release with fixed CMakeLists.txtFerenc Géczi
Signed-off-by: Ferenc Géczi <ferenc.gm@gmail.com>
2022-10-08Update rules_python, bazel_skylib and platfromsVertexwahn
2022-10-08Update the POSIX Extended section of the Regular Expression Wikipedia pageAbseil Team
PiperOrigin-RevId: 479667644 Change-Id: I4ab03bd5f0520f8586667de8bd1b9443f241337a
2022-10-06[fuchsia] Use __builtin_trap to trigger gunit_break_on_failure on non-x86 archAbseil Team
In developing tests for the fuchsia debugger, it was found that in addition to catching gtest failures (which are implemented as software breakpoints) we also see PageFault exceptions, caused by this nullptr dereference. PiperOrigin-RevId: 479365782 Change-Id: I84d805d94c2e46b6f3c982ca1ae49c6ac3ed3430
2022-10-05Makes Clang compilations via Ninja on Windows define _DLL only for shared ↵Abseil Team
CRT builds, as one would already expect from MSVC builds. (Previously, static Clang/Ninja builds on Windows also implicitly defined _DLL, which was problematic.) PiperOrigin-RevId: 479113168 Change-Id: I252d9be90fd33df75dab922e62b197208830d124
2022-10-05Merge pull request #4020 from cclauss:patch-1Copybara-Service
PiperOrigin-RevId: 478883171 Change-Id: I29c57a554000d051290bb66660fcf6132027f963
2022-10-04Merge pull request #3967 from BMBurstein:custom_type_combineCopybara-Service
PiperOrigin-RevId: 478775323 Change-Id: I92231bb8edd8e01b9b7cbe445c43dcf84f458521
2022-09-30Uses a simpler mechanism to disable the copying of GoogleTest test suites, ↵Abseil Team
to move code out of the TEST_P macro. PiperOrigin-RevId: 478031678 Change-Id: I45f0ce17a4add526c86b8212d836d98d63b3a193
2022-09-29Merge branch 'google:main' into custom_type_combineBaruch
2022-09-29Rollback: Moves boilerplate disabling copy constructor/assignment from ↵Abseil Team
GoogleTest's TEST_P macro into a header file to avoid triggering warnings in user code. PiperOrigin-RevId: 477566426 Change-Id: Ia417e295d839f43be6e61a5699457866108f2a01
2022-09-29Rollback: Uses a simpler mechanism to disable the copying of GoogleTest test ↵Abseil Team
suites. PiperOrigin-RevId: 477560280 Change-Id: I1c1f5a1d6645859ec38cb1a75cd267816d2aff35
2022-09-29Uses a simpler mechanism to disable the copying of GoogleTest test suites.Abseil Team
PiperOrigin-RevId: 477549427 Change-Id: I6421ca09f0f1296cebdc3e54565049f1542dfa8a
2022-09-28Moves boilerplate disabling copy constructor/assignment from GoogleTest's ↵Abseil Team
TEST_P macro into a header file to avoid triggering warnings in user code. Fixes #4015 PiperOrigin-RevId: 477513399 Change-Id: Ia21928ee12e85946b4c8db86835d225cb257eecc
2022-09-28Merge branch 'google:main' into custom_type_combineBaruch
2022-09-27Merge pull request #4016 from Maratyszcza:qurtCopybara-Service
PiperOrigin-RevId: 477265396 Change-Id: I781dae4ef2c5b6c771d960f1ec5a3c5cff0e97ad
2022-09-27Add GoogleTest workaround for MSVC crash with Address Sanitizer (ASAN) on ↵Abseil Team
version 17.3.3 PiperOrigin-RevId: 477240422 Change-Id: I894037850617252e462783c0885e30fc8e7ad122
2022-09-27Branding: macOSChristian Clauss
2022-09-27Upgrade GitHub Actions CheckoutChristian Clauss
https://github.com/actions/checkout/releases
2022-09-27Port GoogleTest to QuRT (Hexagon RTOS)Marat Dukhan
2022-09-25Merge branch 'google:main' into custom_type_combineBaruch
2022-09-22Merge pull request #4011 from softwaregravy:patch-1Copybara-Service
PiperOrigin-RevId: 475928562 Change-Id: I0539fa76b788410dd88b3285056a3b6a324dbc52
2022-09-18Update link to Bazel installation guideJohn Hinnegan
The Bazel docs have moved!
2022-09-14Merge branch 'google:main' into custom_type_combineBaruch
2022-09-13Fix MSVC C++14 flag for GitHub workflowDerek Mauro
PiperOrigin-RevId: 474053482 Change-Id: If5cdf7458139ba3ad04b8c078734d6890199a348