diff options
author | kosak <kosak@google.com> | 2015-07-17 21:56:19 +0000 |
---|---|---|
committer | kosak <kosak@google.com> | 2015-07-17 21:56:19 +0000 |
commit | 195610d30c2234b76bef70a85426ac8d7dbdf9f3 (patch) | |
tree | f981dbe5c35701863d9076862f7d58d5fbc4b9f7 /test/gtest-filepath_test.cc | |
parent | 0928adbfea9b7645e884bd95fee23cfd669729cd (diff) | |
download | googletest-195610d30c2234b76bef70a85426ac8d7dbdf9f3.tar.gz googletest-195610d30c2234b76bef70a85426ac8d7dbdf9f3.tar.bz2 googletest-195610d30c2234b76bef70a85426ac8d7dbdf9f3.zip |
Add support for --gtest_flagfile
Diffstat (limited to 'test/gtest-filepath_test.cc')
-rw-r--r-- | test/gtest-filepath_test.cc | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/test/gtest-filepath_test.cc b/test/gtest-filepath_test.cc index ae9f55a0..da729869 100644 --- a/test/gtest-filepath_test.cc +++ b/test/gtest-filepath_test.cc @@ -514,24 +514,6 @@ class DirectoryCreationTest : public Test { posix::RmDir(testdata_path_.c_str()); } - std::string TempDir() const { -#if GTEST_OS_WINDOWS_MOBILE - return "\\temp\\"; -#elif GTEST_OS_WINDOWS - const char* temp_dir = posix::GetEnv("TEMP"); - if (temp_dir == NULL || temp_dir[0] == '\0') - return "\\temp\\"; - else if (temp_dir[strlen(temp_dir) - 1] == '\\') - return temp_dir; - else - return std::string(temp_dir) + "\\"; -#elif GTEST_OS_LINUX_ANDROID - return "/sdcard/"; -#else - return "/tmp/"; -#endif // GTEST_OS_WINDOWS_MOBILE - } - void CreateTextFile(const char* filename) { FILE* f = posix::FOpen(filename, "w"); fprintf(f, "text\n"); |