Scilab 6.0.1
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
covMerge
Merges coverage results and exports to a file
Syntax
covMerge(binaryFiles, binaryFile)
Arguments
- binaryFiles
a set of coverage binary files
- binaryFile
a binary file
Description
This command is used to merge coverage results and export them to a single file. It is used for in-depth analysis for a set of functions and runs. This will output only the results for the passed paths.
Example
covStart(isempty) for i=1:1e5; isempty(i); end covWrite("binary", "TMPDIR/isempty1") // write runtime information covStop(); // clear instrumentation covStart(isempty) for i=1:1e5; isempty(string(i)); end covWrite("binary", "TMPDIR/isempty2") // write other runtime information covStop(); covMerge(["TMPDIR/isempty1" "TMPDIR/isempty2"], "TMPDIR/isempty") // merge them covWrite("html", "TMPDIR/isempty", "TMPDIR/coverage") // render the information as HTML
See also
Report an issue | ||
<< Scilab code coverage | Scilab code coverage | covStart >> |