Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generating the coverage map #74091

Merged
merged 1 commit into from
Jul 19, 2020
Merged

Commits on Jul 17, 2020

  1. Generating the coverage map

    rustc now generates the coverage map and can support (limited)
    coverage report generation, at the function level.
    
    Example:
    
    $ BUILD=$HOME/rust/build/x86_64-unknown-linux-gnu
    $ $BUILD/stage1/bin/rustc -Zinstrument-coverage \
    $HOME/rust/src/test/run-make-fulldeps/instrument-coverage/main.rs
    $ LLVM_PROFILE_FILE="main.profraw" ./main
    called
    $ $BUILD/llvm/bin/llvm-profdata merge -sparse main.profraw -o main.profdata
    $ $BUILD/llvm/bin/llvm-cov show --instr-profile=main.profdata main
        1|      1|pub fn will_be_called() {
        2|      1|    println!("called");
        3|      1|}
        4|       |
        5|      0|pub fn will_not_be_called() {
        6|      0|    println!("should not have been called");
        7|      0|}
        8|       |
        9|      1|fn main() {
       10|      1|    let less = 1;
       11|      1|    let more = 100;
       12|      1|
       13|      1|    if less < more {
       14|      1|        will_be_called();
       15|      1|    } else {
       16|      1|        will_not_be_called();
       17|      1|    }
       18|      1|}
    richkadel committed Jul 17, 2020
    Configuration menu
    Copy the full SHA
    a6f8b8a View commit details
    Browse the repository at this point in the history