diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2020-05-06 23:57:44 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-06 23:57:44 +0300 |
commit | 4ea7c6ee123b3a86a40d0b67c25562aa2405524a (patch) | |
tree | 23ed1fd2f6ee6e2be297147f504770a3d3247aa8 /docs/markdown/snippets | |
parent | ec8db6a1b53072a08674bf2b4301dee7ab3dd589 (diff) | |
parent | dbe00dfe95e9630bd733a45f32076bab6ff80226 (diff) | |
download | meson-4ea7c6ee123b3a86a40d0b67c25562aa2405524a.zip meson-4ea7c6ee123b3a86a40d0b67c25562aa2405524a.tar.gz meson-4ea7c6ee123b3a86a40d0b67c25562aa2405524a.tar.bz2 |
Merge pull request #7064 from dcbaker/gtest-protocol
Add support for Gtest as a test protocol
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/gtest_protocol.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/markdown/snippets/gtest_protocol.md b/docs/markdown/snippets/gtest_protocol.md new file mode 100644 index 0000000..14f3af9 --- /dev/null +++ b/docs/markdown/snippets/gtest_protocol.md @@ -0,0 +1,6 @@ +## Test protocol for gtest + +Due to the popularity of Gtest (google test) among C and C++ developers meson +now supports a special protocol for gtest. With this protocol meson injects +arguments to gtests to output JUnit, reads that JUnit, and adds the output to +the JUnit it generates. |