googletest-env-var-test_.cc (googletest-release-1.10.0) | : | googletest-env-var-test_.cc (googletest-release-1.11.0) | ||
---|---|---|---|---|
skipping to change at line 74 | skipping to change at line 74 | |||
if (strcmp(flag, "death_test_style") == 0) { | if (strcmp(flag, "death_test_style") == 0) { | |||
cout << GTEST_FLAG(death_test_style); | cout << GTEST_FLAG(death_test_style); | |||
return; | return; | |||
} | } | |||
if (strcmp(flag, "death_test_use_fork") == 0) { | if (strcmp(flag, "death_test_use_fork") == 0) { | |||
cout << GTEST_FLAG(death_test_use_fork); | cout << GTEST_FLAG(death_test_use_fork); | |||
return; | return; | |||
} | } | |||
if (strcmp(flag, "fail_fast") == 0) { | ||||
cout << GTEST_FLAG(fail_fast); | ||||
return; | ||||
} | ||||
if (strcmp(flag, "filter") == 0) { | if (strcmp(flag, "filter") == 0) { | |||
cout << GTEST_FLAG(filter); | cout << GTEST_FLAG(filter); | |||
return; | return; | |||
} | } | |||
if (strcmp(flag, "output") == 0) { | if (strcmp(flag, "output") == 0) { | |||
cout << GTEST_FLAG(output); | cout << GTEST_FLAG(output); | |||
return; | return; | |||
} | } | |||
if (strcmp(flag, "brief") == 0) { | ||||
cout << GTEST_FLAG(brief); | ||||
return; | ||||
} | ||||
if (strcmp(flag, "print_time") == 0) { | if (strcmp(flag, "print_time") == 0) { | |||
cout << GTEST_FLAG(print_time); | cout << GTEST_FLAG(print_time); | |||
return; | return; | |||
} | } | |||
if (strcmp(flag, "repeat") == 0) { | if (strcmp(flag, "repeat") == 0) { | |||
cout << GTEST_FLAG(repeat); | cout << GTEST_FLAG(repeat); | |||
return; | return; | |||
} | } | |||
End of changes. 2 change blocks. | ||||
0 lines changed or deleted | 10 lines changed or added |