Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
googletest
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
googletest
Commits
471f5bc4
Commit
471f5bc4
authored
Feb 04, 2019
by
Gennadiy Civil
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2098 from ciband:feat/finish_platformio_support
PiperOrigin-RevId: 232028696
parents
0ea2d8f8
53798de9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
README.md
README.md
+1
-0
gtest-filepath.cc
googletest/src/gtest-filepath.cc
+3
-2
library.json
library.json
+2
-0
No files found.
README.md
View file @
471f5bc4
...
@@ -56,6 +56,7 @@ Google test has been used on a variety of platforms:
...
@@ -56,6 +56,7 @@ Google test has been used on a variety of platforms:
*
MinGW
*
MinGW
*
Windows Mobile
*
Windows Mobile
*
Symbian
*
Symbian
*
PlatformIO
## Who Is Using Google Test? ##
## Who Is Using Google Test? ##
...
...
googletest/src/gtest-filepath.cc
View file @
471f5bc4
...
@@ -92,8 +92,9 @@ static bool IsPathSeparator(char c) {
...
@@ -92,8 +92,9 @@ static bool IsPathSeparator(char c) {
// Returns the current working directory, or "" if unsuccessful.
// Returns the current working directory, or "" if unsuccessful.
FilePath
FilePath
::
GetCurrentDir
()
{
FilePath
FilePath
::
GetCurrentDir
()
{
#if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_WINDOWS_PHONE || GTEST_OS_WINDOWS_RT
#if GTEST_OS_WINDOWS_MOBILE || GTEST_OS_WINDOWS_PHONE || \
// Windows CE doesn't have a current directory, so we just return
GTEST_OS_WINDOWS_RT || ARDUINO
// Windows CE and Arduino don't have a current directory, so we just return
// something reasonable.
// something reasonable.
return
FilePath
(
kCurrentDirectoryString
);
return
FilePath
(
kCurrentDirectoryString
);
#elif GTEST_OS_WINDOWS
#elif GTEST_OS_WINDOWS
...
...
library.json
View file @
471f5bc4
...
@@ -27,6 +27,7 @@
...
@@ -27,6 +27,7 @@
"googlemock/make"
,
"googlemock/make"
,
"googlemock/msvc"
,
"googlemock/msvc"
,
"googlemock/scripts"
,
"googlemock/scripts"
,
"googlemock/src/gmock_all.cc"
,
"googlemock/src/gmock_main.cc"
,
"googlemock/src/gmock_main.cc"
,
"googlemock/test"
,
"googlemock/test"
,
"googlemock/CMakeLists.txt"
,
"googlemock/CMakeLists.txt"
,
...
@@ -38,6 +39,7 @@
...
@@ -38,6 +39,7 @@
"googletest/make"
,
"googletest/make"
,
"googletest/msvc"
,
"googletest/msvc"
,
"googletest/scripts"
,
"googletest/scripts"
,
"googletest/src/gtest_all.cc"
,
"googletest/src/gtest_main.cc"
,
"googletest/src/gtest_main.cc"
,
"googletest/test"
,
"googletest/test"
,
"googletest/xcode"
,
"googletest/xcode"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment