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 /include/gtest/internal/gtest-internal.h | |
parent | 0928adbfea9b7645e884bd95fee23cfd669729cd (diff) | |
download | googletest-195610d30c2234b76bef70a85426ac8d7dbdf9f3.tar.gz googletest-195610d30c2234b76bef70a85426ac8d7dbdf9f3.tar.bz2 googletest-195610d30c2234b76bef70a85426ac8d7dbdf9f3.zip |
Add support for --gtest_flagfile
Diffstat (limited to 'include/gtest/internal/gtest-internal.h')
-rw-r--r-- | include/gtest/internal/gtest-internal.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/gtest/internal/gtest-internal.h b/include/gtest/internal/gtest-internal.h index ba7175cf..b48075c5 100644 --- a/include/gtest/internal/gtest-internal.h +++ b/include/gtest/internal/gtest-internal.h @@ -587,6 +587,11 @@ inline std::string GetPrefixUntilComma(const char* str) { return comma == NULL ? str : std::string(str, comma); } +// Splits a given string on a given delimiter, populating a given +// vector with the fields. +void SplitString(const ::std::string& str, char delimiter, + ::std::vector< ::std::string>* dest); + // TypeParameterizedTest<Fixture, TestSel, Types>::Register() // registers a list of type-parameterized tests with Google Test. The // return value is insignificant - we just need to return something |