README.gcov
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. To be able to see the level of coverage with the current test suite,
  2. do the following:
  3.   - make sure gcov is installed
  4.   - compile with BUILD/compile-pentium-gcov ( if your machine is not pentium, hack
  5. this script, or just live with the pentium-specific stuff)
  6.   - ./mysql-test-run -gcov
  7.   - to see the level of coverage for a given source file:
  8.      grep source_file_name /tmp/gcov.out
  9.   - to see which lines are not yet covered, look at source_file_name.gcov in the source tree. Then think hard about a test case that will cover those
  10. lines, and write one!