googletest/googlemock/test
Yonggang Luo 6f1c4b3d7b Fixes the test gmock_output_test.py with MSVC
For MSVC, gmock_output_test.py output struct std::pair<int,bool>, for GCC, it's output
std::pair<int, bool>, it's not the same, my intention is getting these to be same by removing
struct  for MSVC's outptu, and strip redundant space for GCC.

As a by-product,
```
#ifdef _MSC_VER
#define ERROR_DESC "class std::runtime_error"
#else
#define ERROR_DESC "std::runtime_error"
#endif
```
can be simplified to

```
#define ERROR_DESC "std::runtime_error"
```

Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
2023-03-01 00:13:32 +08:00
..
BUILD.bazel Split gmock-matchers_test into 4 smaller test #3653 2022-03-23 09:08:04 -07:00
gmock_all_test.cc Split gmock-matchers_test into 4 smaller test #3653 2022-03-23 09:08:04 -07:00
gmock_ex_test.cc Running clang-format over all of GoogleTest 2022-03-15 13:42:11 -07:00
gmock_leak_test_.cc Remove the legacy internal GTEST_DISALLOW_* macros 2022-04-22 11:26:03 -07:00
gmock_leak_test.py Fix formatting in subset of Python files 2023-01-25 09:14:26 -08:00
gmock_link2_test.cc Running clang-format over all of GoogleTest 2022-03-15 13:42:11 -07:00
gmock_link_test.cc Running clang-format over all of GoogleTest 2022-03-15 13:42:11 -07:00
gmock_link_test.h Use GTEST_DISABLE_MSC_WARNINGS macros to disable warnings 2023-01-30 13:45:46 -08:00
gmock_output_test_.cc Revert "Fix gmock_output_test when using MSVC" 2023-02-09 15:29:01 +08:00
gmock_output_test_golden.txt Fixes the test gmock_output_test.py with MSVC 2023-03-01 00:13:32 +08:00
gmock_output_test.py Fix formatting in subset of Python files 2023-01-25 09:14:26 -08:00
gmock_stress_test.cc Running clang-format over all of GoogleTest 2022-03-15 13:42:11 -07:00
gmock_test_utils.py Remove pylint disable comments that no longer trigger warnings 2023-01-25 12:35:34 -08:00
gmock_test.cc Running clang-format over all of GoogleTest 2022-03-15 13:42:11 -07:00
gmock-actions_test.cc Use GTEST_DISABLE_MSC_WARNINGS macros to disable warnings 2023-01-30 13:45:46 -08:00
gmock-cardinalities_test.cc Remove the legacy internal GTEST_DISALLOW_* macros 2022-04-22 11:26:03 -07:00
gmock-function-mocker_test.cc Use GTEST_DISABLE_MSC_WARNINGS macros to disable warnings 2023-01-30 13:45:46 -08:00
gmock-internal-utils_test.cc Running clang-format over all of GoogleTest 2022-03-15 13:42:11 -07:00
gmock-matchers_test.h Fix formatting of C++ files 2023-01-24 11:10:09 -08:00
gmock-matchers-arithmetic_test.cc Fix include order 2023-02-01 14:32:28 -08:00
gmock-matchers-comparisons_test.cc Add support for the alternative base64 encoding in RFC 4648 section 5 to WhenBase64Unescaped. 2023-02-06 11:00:05 -08:00
gmock-matchers-containers_test.cc Use GTEST_DISABLE_MSC_WARNINGS macros to disable warnings 2023-01-30 13:45:46 -08:00
gmock-matchers-misc_test.cc Use GTEST_DISABLE_MSC_WARNINGS macros to disable warnings 2023-01-30 13:45:46 -08:00
gmock-more-actions_test.cc Use GTEST_DISABLE_MSC_WARNINGS macros to disable warnings 2023-01-30 13:45:46 -08:00
gmock-nice-strict_test.cc Remove the legacy internal GTEST_DISALLOW_* macros 2022-04-22 11:26:03 -07:00
gmock-port_test.cc Running clang-format over all of GoogleTest 2022-03-15 13:42:11 -07:00
gmock-pp_test.cc Merge pull request #2514 from thejcannon:msvc_macro_issue 2019-10-23 13:35:26 -04:00
gmock-pp-string_test.cc Running clang-format over all of GoogleTest 2022-03-15 13:42:11 -07:00
gmock-spec-builders_test.cc Remove GTEST_USES_PCRE references 2023-02-07 10:38:08 -08:00