- 17 Jul, 2018 1 commit
-
-
duxiuxing authored
Fix warning C4819: The file contains a character that cannot be represented in the current code page (936). Save the file in Unicode format to prevent data loss
-
- 16 Jul, 2018 1 commit
-
-
Gennadiy Civil authored
Fix issue #1654.
-
- 13 Jul, 2018 2 commits
-
-
Adrian Moran authored
-
Adrian Moran authored
Signed-off-by:Adrian Moran <amoran@ikerlan.es>
-
- 12 Jul, 2018 5 commits
-
-
Gennadiy Civil authored
Adds stacktrace support from Abseil to Google Test
-
Derek Mauro authored
-
Gennadiy Civil authored
Adds the UniversalPrinter for absl::variant.
-
Derek Mauro authored
-
Adrian Moran authored
Signed-off-by:Adrian Moran <amoran@ikerlan.es>
-
- 11 Jul, 2018 7 commits
-
-
Gennadiy Civil authored
-
Gennadiy Civil authored
VS2005 with SP1(_MSC_VER=1400) already supports __pragma
-
Gennadiy Civil authored
-
Gennadiy Civil authored
docs sync, formatting
-
Gennadiy Civil authored
more formatting [skip ci]
-
Gennadiy Civil authored
formatting, [ci skip]
-
Adrian Moran authored
Signed-off-by:Adrian Moran <amoran@ikerlan.es>
-
- 10 Jul, 2018 4 commits
-
-
Gennadiy Civil authored
[skip ci]
-
Gennadiy Civil authored
[ci skip]
-
Derek Mauro authored
This does the same thing to the CMake tests that is done to the Bazel tests, and now makes the CMake tests pass.
-
Derek Mauro authored
This change adds the ability to generate stacktraces in Google Test on both failures of assertions/expectations and on crashes. The stacktrace support is conditionally available only when using Abseil with Google Test. To use this support, run the test under Bazel with a command like this: bazel test --define absl=1 --test_env=GTEST_INSTALL_FAILURE_SIGNAL_HANDLER=1 //path/to/your:test The "--define absl=1" part enables stacktraces on assertion/expectation failures. The "--test_env=GTEST_INSTALL_FAILURE_SIGNAL_HANDLER=1" part enables the signal handler that logs a stacktrace in the event of a crash (this also requires the "--define absl=1" part). This is not the default since it may interfere with existing tests.
-
- 29 Jun, 2018 1 commit
-
-
杜修杏 authored
-
- 14 Jun, 2018 6 commits
-
-
Gennadiy Civil authored
Support bazel test filtering
-
Rohan Joyce authored
GTEST_TEST_FILTER_ENV_VAR_ was used to specify an environment variable to obtain the default test filter from. By default it was unset which broke "--test_filter" for bazel. This CL eliminates GTEST_TEST_FILTER_ENV_VAR_ and explicitly obtains the default test filter from the environment variable TESTBRIDGE_TEST_ONLY if it exists.
-
Gennadiy Civil authored
ignore .md for appveyor builds
-
Gennadiy Civil authored
-
Gennadiy Civil authored
Reduce the number of strcmp calling while initialization
-
Takuto Ikuta authored
-
- 13 Jun, 2018 7 commits
-
-
Gennadiy Civil authored
-
Gennadiy Civil authored
doc sync
-
Gennadiy Civil authored
-
-
Gennadiy Civil authored
Doc sync/internal
-
Gennadiy Civil authored
-
Gennadiy Civil authored
Sync with internal docs
-
- 12 Jun, 2018 1 commit
-
-
Takuto Ikuta authored
When we do parallel test execution with a process for a test, initialization of gtest become performance bottleneck when the test binary contains many testcases. Especially, some parameterlized test in chromium browser affected by largely when address sanitizer is enabled. Address sanitizer does not allow using optimized strcmp function and test addition in parameterized test require lookup of test case using strcmp. This patch reduces the number of strcmp, it is called when registering parameterized test. Using reverse iterator improves the time to find registered tests in such case. Some tests for chromium browser using address sanitizer finished 2x faster with this patch.
-
- 11 Jun, 2018 5 commits
-
-
Gennadiy Civil authored
-
Gennadiy Civil authored
doc sync
-
-
Gennadiy Civil authored
Sync with internal docs
-
Gennadiy Civil authored
Adjust documentation files and links.
-