diff options
author | unknown <sasha@mysql.sashanet.com> | 2000-12-13 18:23:55 -0700 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2000-12-13 18:23:55 -0700 |
commit | 0006e8e6569ba942f749fefb495f81aff2700adb (patch) | |
tree | 5ab0647c2a5502b00ddbacef80efb01f9985737b /mysql-test/README.gcov | |
parent | 582705289f583da8dd1d86c9aa6369b2fafb9a88 (diff) | |
download | mariadb-git-0006e8e6569ba942f749fefb495f81aff2700adb.tar.gz |
fixes for parallel make, re-added the lost README files in mysql-test
BUILD/compile-pentium-debug:
fox for parallel make
BUILD/compile-pentium-gcov:
fix for parallel make
BUILD/compile-pentium:
fix to enable parallel make when recursing to subdirectories
Build-tools/Do-all-build-steps:
fix for parallel make, remove the stale comment to make Tim happy
Build-tools/Do-rpm:
fix for parallel make
Diffstat (limited to 'mysql-test/README.gcov')
-rw-r--r-- | mysql-test/README.gcov | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/README.gcov b/mysql-test/README.gcov new file mode 100644 index 00000000000..83ddd6df2e1 --- /dev/null +++ b/mysql-test/README.gcov @@ -0,0 +1,11 @@ +To be able to see the level of coverage with the current test suite, +do the following: + + - make sure gcov is installed + - compile with BUILD/compile-pentium-gcov ( if your machine is not pentium, hack +this script, or just live with the pentium-specific stuff) + - ./mysql-test-run -gcov + - to see the level of coverage for a given source file: + grep source_file_name /tmp/gcov.out + - 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 +lines, and write one! |