diff options
Diffstat (limited to 'DEVELOP.md')
-rw-r--r-- | DEVELOP.md | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/DEVELOP.md b/DEVELOP.md new file mode 100644 index 0000000..b480d5b --- /dev/null +++ b/DEVELOP.md @@ -0,0 +1,37 @@ +# Development information + +## Test + +All test cases are included under the test/ dir. +These test code depend on gtest. + +### configure option + + --enable-test + +### Install gtest packages on host linux. + +#### Ubuntu: +libgtest-dev googletest googletest-tools + +### Run + + ./tools/run-test.sh + + +## gcov support + +This library support gcov support build. + +### configure option + + --enable-gcov + +#### Ubuntu: +lcov + +### Run + + ./tools/gen-test-report.sh + + |