diff options
author | wangmy <wangmy@fujitsu.com> | 2022-06-27 14:59:17 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-07-02 11:37:02 -0400 |
commit | 05cf0fdf464988c50e0559f864609f0aa8e44b58 (patch) | |
tree | 4722728c77971bef983bdcb21c952aaf34b4c458 /meta-oe/recipes-test/googletest | |
parent | c3377acd2321b8b6b95fc08b9937ea8e886553a4 (diff) | |
download | meta-openembedded-05cf0fdf464988c50e0559f864609f0aa8e44b58.tar.gz |
googletest: upgrade 1.11.0 -> 1.12.0
Changelog:
==========
C++ Language Support
----------------------
This will be the last release to support C++11. Future releases will require at least C++14.
Mocking
---------
Support for move-only values to Return (5126f71)
Matchers
--------------
New matchers
WhenBase64Unescaped (652ec31)
ResultOf() now has a 3-arg overload that takes a description string for better error messages (0e40217)
Build & Test
----------------
CMake minimum increased to 3.5
Bazel users that build GoogleTest using the Abseil library as a dependency now also require a dependency on RE2 (e33c2b2)
Bazel users that build GoogleTest using the Abseil library now use the Abseil library to parse all command-line flags (25dcdc7)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-test/googletest')
-rw-r--r-- | meta-oe/recipes-test/googletest/googletest_git.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-oe/recipes-test/googletest/googletest_git.bb b/meta-oe/recipes-test/googletest/googletest_git.bb index 869c2c86b..b8088a31a 100644 --- a/meta-oe/recipes-test/googletest/googletest_git.bb +++ b/meta-oe/recipes-test/googletest/googletest_git.bb | |||
@@ -4,12 +4,12 @@ SECTION = "libs" | |||
4 | LICENSE = "BSD-3-Clause" | 4 | LICENSE = "BSD-3-Clause" |
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=cbbd27594afd089daa160d3a16dd515a" | 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=cbbd27594afd089daa160d3a16dd515a" |
6 | 6 | ||
7 | PV = "1.11.0+git${SRCPV}" | 7 | PV = "1.12.0" |
8 | 8 | ||
9 | PROVIDES += "gmock gtest" | 9 | PROVIDES += "gmock gtest" |
10 | 10 | ||
11 | S = "${WORKDIR}/git" | 11 | S = "${WORKDIR}/git" |
12 | SRCREV = "9e712372214d75bb30ec2847a44bf124d48096f3" | 12 | SRCREV = "15460959cbbfa20e66ef0b5ab497367e47fc0a04" |
13 | SRC_URI = "git://github.com/google/googletest.git;branch=main;protocol=https" | 13 | SRC_URI = "git://github.com/google/googletest.git;branch=main;protocol=https" |
14 | 14 | ||
15 | inherit cmake | 15 | inherit cmake |