summaryrefslogtreecommitdiffstats
path: root/googletest/src/gtest-filepath.cc
diff options
context:
space:
mode:
authorChris Johnson <chrisjohnsonmail@gmail.com>2019-08-29 17:34:26 (GMT)
committerChris Johnson <chrisjohnsonmail@gmail.com>2019-10-11 16:47:49 (GMT)
commitc2206b05aa0f2fbdf5b353b32cd565b0e89d3fa6 (patch)
tree9174a533f344d2a13ab1802767a86be0ffcbb7e0 /googletest/src/gtest-filepath.cc
parent40a6b9662199890b20ccbac3b964ce04713d8ede (diff)
downloadgoogletest-c2206b05aa0f2fbdf5b353b32cd565b0e89d3fa6.zip
googletest-c2206b05aa0f2fbdf5b353b32cd565b0e89d3fa6.tar.gz
googletest-c2206b05aa0f2fbdf5b353b32cd565b0e89d3fa6.tar.bz2
Add ESP8266 configs to PlatformIO build
Added various conditional compliations for ESP8266 to stub out missing functionality.
Diffstat (limited to 'googletest/src/gtest-filepath.cc')
-rw-r--r--googletest/src/gtest-filepath.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/googletest/src/gtest-filepath.cc b/googletest/src/gtest-filepath.cc
index eb1024e..7e03e81 100644
--- a/googletest/src/gtest-filepath.cc
+++ b/googletest/src/gtest-filepath.cc
@@ -236,7 +236,7 @@ bool FilePath::DirectoryExists() const {
result = true;
}
#else
- posix::StatStruct file_stat;
+ posix::StatStruct file_stat = {};
result = posix::Stat(path.c_str(), &file_stat) == 0 &&
posix::IsDir(file_stat);
#endif // GTEST_OS_WINDOWS_MOBILE
@@ -323,6 +323,9 @@ bool FilePath::CreateFolder() const {
delete [] unicode;
#elif GTEST_OS_WINDOWS
int result = _mkdir(pathname_.c_str());
+#elif GTEST_OS_ESP8266
+ // do nothing
+ int result = 0;
#else
int result = mkdir(pathname_.c_str(), 0777);
#endif // GTEST_OS_WINDOWS_MOBILE