summaryrefslogtreecommitdiffstats
path: root/googletest/src
diff options
context:
space:
mode:
authorCopybara-Service <copybara-worker@google.com>2023-06-26 20:23:58 (GMT)
committerCopybara-Service <copybara-worker@google.com>2023-06-26 20:23:58 (GMT)
commit372e81d8141783ff2914349bf6c02819ec08d980 (patch)
treec7a7268259498bd3a4c7137c0889178af3c7c2b4 /googletest/src
parentec4fed93217bc2830959bb8e86798c1d86956949 (diff)
parentb2a2d36f3a28921af8ccbed92c47fbfe8570173c (diff)
downloadgoogletest-372e81d8141783ff2914349bf6c02819ec08d980.zip
googletest-372e81d8141783ff2914349bf6c02819ec08d980.tar.gz
googletest-372e81d8141783ff2914349bf6c02819ec08d980.tar.bz2
Merge pull request #4301 from ciband:feat/qn9090
PiperOrigin-RevId: 543523833 Change-Id: I602373a321e2b8080264e3f418ef5b2254f615fb
Diffstat (limited to 'googletest/src')
-rw-r--r--googletest/src/gtest-filepath.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/googletest/src/gtest-filepath.cc b/googletest/src/gtest-filepath.cc
index 75f52bc..1d30c95 100644
--- a/googletest/src/gtest-filepath.cc
+++ b/googletest/src/gtest-filepath.cc
@@ -102,7 +102,7 @@ FilePath FilePath::GetCurrentDir() {
#if defined(GTEST_OS_WINDOWS_MOBILE) || defined(GTEST_OS_WINDOWS_PHONE) || \
defined(GTEST_OS_WINDOWS_RT) || defined(GTEST_OS_ESP8266) || \
defined(GTEST_OS_ESP32) || defined(GTEST_OS_XTENSA) || \
- defined(GTEST_OS_QURT)
+ defined(GTEST_OS_QURT) || defined(GTEST_OS_NXP_QN9090)
// These platforms do not have a current directory, so we just return
// something reasonable.
return FilePath(kCurrentDirectoryString);
@@ -356,7 +356,7 @@ bool FilePath::CreateFolder() const {
#elif defined(GTEST_OS_WINDOWS)
int result = _mkdir(pathname_.c_str());
#elif defined(GTEST_OS_ESP8266) || defined(GTEST_OS_XTENSA) || \
- defined(GTEST_OS_QURT)
+ defined(GTEST_OS_QURT) || defined(GTEST_OS_NXP_QN9090)
// do nothing
int result = 0;
#else