Gennadiy Civil
0d29f9702d
more fixes
2018-08-02 17:32:43 -04:00
Gennadiy Civil
95c313e685
add --no_stacktrace_support for json-output-unittest
2018-08-02 16:58:11 -04:00
Gennadiy Civil
94f2c6faa7
fixes tests
2018-08-02 16:51:03 -04:00
Gennadiy Civil
677df883ec
cmake test fixes
2018-08-02 16:24:09 -04:00
Gennadiy Civil
b7244ff37c
cmake fixes
2018-08-02 16:01:00 -04:00
Gennadiy Civil
930f0f86e3
cmake tests changes
2018-08-02 15:45:23 -04:00
Gennadiy Civil
f3511bf1c7
cleaning up and adding test changes to CMake
2018-08-02 14:56:33 -04:00
Gennadiy Civil
bbc0ac9b1a
Merge branch 'master' of https://github.com/google/googletest
2018-08-01 17:26:04 -04:00
Gennadiy Civil
5b9b39ff21
Corresponding CMake Changes
2018-08-01 17:25:56 -04:00
Gennadiy Civil
8dea630e88
various changes to tests
2018-08-01 17:06:17 -04:00
Gennadiy Civil
421f527df3
more test changes
2018-08-01 16:23:20 -04:00
Gennadiy Civil
7001dff4fc
adding googletest-json-output unitest
2018-08-01 16:12:09 -04:00
Gennadiy Civil
09fc73dde9
more test changes
2018-08-01 15:34:30 -04:00
Gennadiy Civil
96077bc9f3
more tests changes
2018-08-01 15:02:28 -04:00
Gennadiy Civil
b888e23fce
googletest list tests unitest
2018-08-01 13:49:29 -04:00
Gennadiy Civil
35aa4fe924
gtest catch exceptions test and gtest shuffle test
2018-08-01 13:32:07 -04:00
Gennadiy Civil
a28968d698
changes to googletest break on failure and googletest filter unittests
2018-08-01 11:46:43 -04:00
Gennadiy Civil
d75922ca1c
changes for googletest env var test
2018-08-01 11:35:13 -04:00
Gennadiy Civil
38486eb03e
googltest-color-test changes
2018-08-01 11:32:08 -04:00
Gennadiy Civil
6324796be1
googletest-output-test changes
2018-08-01 11:28:24 -04:00
Gennadiy Civil
16c65a476a
Merge branch 'master' into master
2018-08-01 11:09:34 -04:00
Gennadiy Civil
539ee4bc54
Formatting changes and upstreaming one test
2018-08-01 11:07:22 -04:00
Gennadiy Civil
f978c651ed
Merge branch 'master' into master
2018-07-30 14:01:17 -04:00
Gennadiy Civil
b7cb1bc6f9
small tweaks, OSS merge cl 206357486
2018-07-30 13:31:46 -04:00
Gennadiy Civil
ec13264af4
added missing comments
2018-07-27 15:05:20 -04:00
Gennadiy Civil
984cba30ed
Formatting changes for automatic code management
2018-07-27 11:15:08 -04:00
Piotr Kąkol
309e8a271e
Updated broken and outdated URLs
2018-07-25 19:19:26 +02:00
Gennadiy Civil
ed1edf641d
Formatting changes, code sync
2018-07-25 10:24:13 -04:00
Stian Valle
bb9fc6f66e
Update primer.md
2018-07-21 15:50:45 +02:00
Stian Valle
7abf99d941
Update primer.md
2018-07-21 15:40:57 +02:00
Stian Valle
baf2115a59
Update primer.md
2018-07-21 15:29:58 +02:00
Gennadiy Civil
a02af2f689
code merge
2018-07-20 11:28:58 -04:00
Gennadiy Civil
d41bfd732f
Fix link
2018-07-18 11:38:18 -04:00
Gennadiy Civil
7e73a7ae6e
Formatting and a link
2018-07-18 11:17:19 -04:00
Gennadiy Civil
20ef7944a4
Merge pull request #1667 from hckr/patch-1
...
Fix broken links to FAQ in primer.md
2018-07-18 10:21:46 -04:00
Gennadiy Civil
4abbb774c3
Merge branch 'master' of https://github.com/google/googletest
2018-07-17 17:47:54 -04:00
Gennadiy Civil
5437926b22
Docs sync
2018-07-17 17:47:25 -04:00
Jakub Młokosiewicz
021c308069
Fix broken links to FAQ in primer.md
2018-07-17 00:49:31 +02:00
Derek Mauro
82670da613
Merge branch 'master' into stacktrace
2018-07-12 16:51:04 -04:00
Derek Mauro
6c7878a151
Adds the UniversalPrinter for absl::variant.
2018-07-12 13:46:50 -04:00
Gennadiy Civil
d91b0de99e
Merge branch 'master' into googletest_for_asam
2018-07-11 10:08:04 -04:00
Gennadiy Civil
36066cfecf
more formatting [skip ci]
2018-07-11 09:42:48 -04:00
Gennadiy Civil
74cccf494a
formatting, [ci skip]
2018-07-11 09:38:47 -04:00
Gennadiy Civil
4f9194286c
Fix heading
...
[skip ci]
2018-07-10 17:30:28 -04:00
Gennadiy Civil
50daf299c2
Docs sync
...
[ci skip]
2018-07-10 17:16:03 -04:00
Derek Mauro
d772e2039b
Pass the --no_stacktrace_support argument to the CMake tests
...
This does the same thing to the CMake tests that is done to the
Bazel tests, and now makes the CMake tests pass.
2018-07-10 15:39:23 -04:00
Derek Mauro
4c41787764
Adds stacktrace support from Abseil to Google Test
...
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.
2018-07-10 14:30:42 -04:00
杜修杏
03ea2fdecb
VS2005 with SP1(_MSC_VER=1400) already supports __pragma
2018-06-29 11:19:46 +08:00
Rohan Joyce
0563b52d3a
Eliminate GTEST_TEST_FILTER_ENV_VAR_.
...
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.
2018-06-14 15:45:55 -04:00
Takuto Ikuta
a0d43a7bb8
Merge branch 'master' into stdstring
2018-06-14 09:34:15 +09:00