diff options
author | Gennadiy Civil <gennadiycivil@users.noreply.github.com> | 2018-10-23 11:16:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-23 11:16:46 -0400 |
commit | a743780ad03ba3cbcb2f76f8a74249f0cae46acc (patch) | |
tree | 1b2faa5bab55b6490bf652f61814597b51753af5 | |
parent | b974af79239be20ddec2b170a77af0a6ca92b856 (diff) | |
download | googletest-a743780ad03ba3cbcb2f76f8a74249f0cae46acc.tar.gz googletest-a743780ad03ba3cbcb2f76f8a74249f0cae46acc.tar.bz2 googletest-a743780ad03ba3cbcb2f76f8a74249f0cae46acc.zip |
Update advanced.md
Fixes #1755
-rw-r--r-- | googletest/docs/advanced.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/googletest/docs/advanced.md b/googletest/docs/advanced.md index 05524809..481b1fe9 100644 --- a/googletest/docs/advanced.md +++ b/googletest/docs/advanced.md @@ -2204,8 +2204,7 @@ environment variable to `0`. googletest can emit a detailed XML report to a file in addition to its normal textual output. The report contains the duration of each test, and thus can help -you identify slow tests. The report is also used by the http://unittest -dashboard to show per-test-method error messages. +you identify slow tests. To generate the XML report, set the `GTEST_OUTPUT` environment variable or the `--gtest_output` flag to the string `"xml:path_to_output_file"`, which will |