mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
deps: update googletest to d1467f5
PR-URL: https://github.com/nodejs/node/pull/49676 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il>
This commit is contained in:
parent
db5e9930e8
commit
e329a11515
32
deps/googletest/src/gtest-port.cc
vendored
32
deps/googletest/src/gtest-port.cc
vendored
@ -158,13 +158,13 @@ size_t GetThreadCount() {
|
||||
// we cannot detect it.
|
||||
size_t GetThreadCount() {
|
||||
int mib[] = {
|
||||
CTL_KERN,
|
||||
KERN_PROC,
|
||||
KERN_PROC_PID,
|
||||
getpid(),
|
||||
CTL_KERN,
|
||||
KERN_PROC,
|
||||
KERN_PROC_PID,
|
||||
getpid(),
|
||||
#ifdef GTEST_OS_NETBSD
|
||||
sizeof(struct kinfo_proc),
|
||||
1,
|
||||
sizeof(struct kinfo_proc),
|
||||
1,
|
||||
#endif
|
||||
};
|
||||
u_int miblen = sizeof(mib) / sizeof(mib[0]);
|
||||
@ -1028,6 +1028,16 @@ GTEST_DISABLE_MSC_DEPRECATED_PUSH_()
|
||||
|
||||
#if GTEST_HAS_STREAM_REDIRECTION
|
||||
|
||||
namespace {
|
||||
|
||||
#if defined(GTEST_OS_LINUX_ANDROID) || defined(GTEST_OS_IOS)
|
||||
bool EndsWithPathSeparator(const std::string& path) {
|
||||
return !path.empty() && path.back() == GTEST_PATH_SEP_[0];
|
||||
}
|
||||
#endif
|
||||
|
||||
} // namespace
|
||||
|
||||
// Object that captures an output stream (stdout/stderr).
|
||||
class CapturedStream {
|
||||
public:
|
||||
@ -1064,7 +1074,13 @@ class CapturedStream {
|
||||
// The location /data/local/tmp is directly accessible from native code.
|
||||
// '/sdcard' and other variants cannot be relied on, as they are not
|
||||
// guaranteed to be mounted, or may have a delay in mounting.
|
||||
name_template = "/data/local/tmp/";
|
||||
//
|
||||
// However, prefer using the TMPDIR environment variable if set, as newer
|
||||
// devices may have /data/local/tmp read-only.
|
||||
name_template = TempDir();
|
||||
if (!EndsWithPathSeparator(name_template))
|
||||
name_template.push_back(GTEST_PATH_SEP_[0]);
|
||||
|
||||
#elif defined(GTEST_OS_IOS)
|
||||
char user_temp_dir[PATH_MAX + 1];
|
||||
|
||||
@ -1084,7 +1100,7 @@ class CapturedStream {
|
||||
::confstr(_CS_DARWIN_USER_TEMP_DIR, user_temp_dir, sizeof(user_temp_dir));
|
||||
|
||||
name_template = user_temp_dir;
|
||||
if (name_template.back() != GTEST_PATH_SEP_[0])
|
||||
if (!EndsWithPathSeparator(name_template))
|
||||
name_template.push_back(GTEST_PATH_SEP_[0]);
|
||||
#else
|
||||
name_template = "/tmp/";
|
||||
|
@ -15,7 +15,7 @@ This a list of all the dependencies:
|
||||
* [c-ares 1.19.0][]
|
||||
* [cjs-module-lexer 1.2.2][]
|
||||
* [corepack][]
|
||||
* [googletest 8a6feab][]
|
||||
* [googletest d1467f5][]
|
||||
* [histogram 0.11.8][]
|
||||
* [icu-small 73.2][]
|
||||
* [libuv 1.46.0][]
|
||||
@ -189,7 +189,7 @@ In practical terms, Corepack will let you use Yarn and pnpm without having to
|
||||
install them - just like what currently happens with npm, which is shipped
|
||||
by Node.js by default.
|
||||
|
||||
### googletest 8a6feab
|
||||
### googletest d1467f5
|
||||
|
||||
The [googletest](https://github.com/google/googletest) dependency is Google’s
|
||||
C++ testing and mocking framework.
|
||||
@ -326,7 +326,7 @@ performance improvements not currently available in standard zlib.
|
||||
[cjs-module-lexer 1.2.2]: #cjs-module-lexer-122
|
||||
[corepack]: #corepack
|
||||
[dependency-update-action]: ../../../.github/workflows/tools.yml
|
||||
[googletest 8a6feab]: #googletest-8a6feab
|
||||
[googletest d1467f5]: #googletest-d1467f5
|
||||
[histogram 0.11.8]: #histogram-0118
|
||||
[icu-small 73.2]: #icu-small-732
|
||||
[libuv 1.46.0]: #libuv-1460
|
||||
|
Loading…
Reference in New Issue
Block a user