macosx プラットフォームでのカバレッジ テストに gcov を使用しています。セットごとに xcode の構成を終了します。
1. Build Settings ==> Generate Test Coverage Files == Yes
2. Build Settings ==> Instrument Progaram Flow == Yes
3. Build Phases ==> Link Binary with library ==> add "libprofile_rt.dylib"
次に、ファイルを生成します " Test.d, Test.dia, Test.gcno, Test.gcda, Test.o
" 次にgcov-4.2 -b Test.gcno
、コマンドを使用してTest.m.gcov
ファイルを生成します (これが必要です) が、次にテスト ケースを再度実行すると、ファイル " Test.d, Test.dia, Test.gcno, Test.gcda, Test.o
" が再び生成され、データがリセットされます。
だから私は2つの質問があります:
- これらのカバレッジ ファイルのデータを蓄積して、プロジェクトを何度も実行し、最後にファイルを生成できるようにする方法はありますか。
1番がダメなら、
merge two Test.gcno
(2回の実行で生成された)ファイルを1つにする方法を教えてください。ターミナルで gcov を試します。以下は gcov コマンドのオプションです。gcov-4.2 -help Usage: gcov [OPTION]... SOURCEFILE Print code coverage information. -h, --help Print this help, then exit -v, --version Print version number, then exit -a, --all-blocks Show information for every basic block -b, --branch-probabilities Include branch probabilities in output -c, --branch-counts Given counts of branches taken rather than percentages -n, --no-output Do not create an output file -l, --long-file-names Use long output file names for included source files -f, --function-summaries Output summaries for each function -o, --object-directory DIR|FILE Search for object files in DIR or called FILE -p, --preserve-paths Preserve all pathname components -u, --unconditional-branches Show unconditional branch counts too For bug reporting instructions, please see: <URL:http://developer.apple.com/bugreporter>.
事前にご協力いただきありがとうございます