mirror of
https://github.com/google/googletest.git
synced 2025-01-01 23:07:58 +08:00
more merges
This commit is contained in:
parent
691e38e518
commit
0f6567954f
@ -2675,7 +2675,7 @@ bool ParseInt32(const Message& src_text, const char* str, Int32* value);
|
||||
// corresponding to the given Google Test flag.
|
||||
bool BoolFromGTestEnv(const char* flag, bool default_val);
|
||||
GTEST_API_ Int32 Int32FromGTestEnv(const char* flag, Int32 default_val);
|
||||
std::string SpecialCase_Output_Flag_XML_OUTPUT_FILE_Env();
|
||||
std::string OutputFlagAlsoCheckEnvVar();
|
||||
const char* StringFromGTestEnv(const char* flag, const char* default_val);
|
||||
|
||||
} // namespace internal
|
||||
|
@ -1228,7 +1228,7 @@ Int32 Int32FromGTestEnv(const char* flag, Int32 default_value) {
|
||||
// not check that the flag is 'output'
|
||||
// In essence this checks env. variable called XML_OUTPUT_FILE
|
||||
// if it is set we prepend "xml:" to its value , if it not set we return ""
|
||||
std::string SpecialCase_Output_Flag_XML_OUTPUT_FILE_Env(){
|
||||
std::string OutputFlagAlsoCheckEnvVar(){
|
||||
std::string default_value_for_output_flag = "";
|
||||
const char* xml_output_file_env = posix::GetEnv("XML_OUTPUT_FILE");
|
||||
if (NULL != xml_output_file_env) {
|
||||
|
@ -238,7 +238,7 @@ GTEST_DEFINE_bool_(list_tests, false,
|
||||
GTEST_DEFINE_string_(
|
||||
output,
|
||||
internal::StringFromGTestEnv("output",
|
||||
internal::SpecialCase_Output_Flag_XML_OUTPUT_FILE_Env().c_str()),
|
||||
internal::OutputFlagAlsoCheckEnvVar().c_str()),
|
||||
"A format (defaults to \"xml\" but can be specified to be \"json\"), "
|
||||
"optionally followed by a colon and an output file name or directory. "
|
||||
"A directory is indicated by a trailing pathname separator. "
|
||||
|
@ -70,7 +70,7 @@ FooTest\.
|
||||
TypedTest/0\. # TypeParam = (VeryLo{245}|class VeryLo{239})\.\.\.
|
||||
TestA
|
||||
TestB
|
||||
TypedTest/1\. # TypeParam = int\s*\*( __ptr64)?
|
||||
TypedTest/1\. # TypeParam = int\s*\*
|
||||
TestA
|
||||
TestB
|
||||
TypedTest/2\. # TypeParam = .*MyArray<bool,\s*42>
|
||||
@ -79,7 +79,7 @@ TypedTest/2\. # TypeParam = .*MyArray<bool,\s*42>
|
||||
My/TypeParamTest/0\. # TypeParam = (VeryLo{245}|class VeryLo{239})\.\.\.
|
||||
TestA
|
||||
TestB
|
||||
My/TypeParamTest/1\. # TypeParam = int\s*\*( __ptr64)?
|
||||
My/TypeParamTest/1\. # TypeParam = int\s*\*
|
||||
TestA
|
||||
TestB
|
||||
My/TypeParamTest/2\. # TypeParam = .*MyArray<bool,\s*42>
|
||||
|
Loading…
x
Reference in New Issue
Block a user