Skip to content

Commit dbf201f

Browse files
committed
build: Rename repo to exper-code-coverage
1 parent 0f365f7 commit dbf201f

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
2-
name = "expr-code-coverage"
3-
version = "0.1.0"
2+
name = "exper-code-coverage"
3+
version = "0.2.0"
44
authors = ["Wink Saville <[email protected]>"]
55
edition = "2021"
66

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Experiment with code coverage
22

3-
![ci-stable](https://github.com/winksaville/expr-code-coverage/actions/workflows/ci-stable.yml/badge.svg)
4-
![ci-nightly](https://github.com/winksaville/expr-code-coverage/actions/workflows/ci-nightly.yml/badge.svg)
5-
[![codecov](https://codecov.io/gh/winksaville/expr-code-coverage/branch/main/graph/badge.svg?token=cowZtK1KK1)](https://codecov.io/gh/winksaville/expr-code-coverage)
3+
![ci-stable](https://github.com/winksaville/exper-code-coverage/actions/workflows/ci-stable.yml/badge.svg)
4+
![ci-nightly](https://github.com/winksaville/exper-code-coverage/actions/workflows/ci-nightly.yml/badge.svg)
5+
[![codecov](https://codecov.io/gh/winksaville/exper-code-coverage/branch/main/graph/badge.svg?token=cowZtK1KK1)](https://codecov.io/gh/winksaville/exper-code-coverage)
66

77
Experiment with code coverage and see how well [LLVM source-based code coverage](https://rustc-dev-guide.rust-lang.org/llvm-coverage-instrumentation.html) works.
88

@@ -17,11 +17,11 @@ cargo install cargo-tarpaulin
1717
Currently "100%"
1818

1919
```
20-
wink@3900x:~/prgs/rust/myrepos/expr-code-coverage (main)
20+
wink@3900x:~/prgs/rust/myrepos/exper-code-coverage (main)
2121
$ cargo llvm-cov
22-
Compiling expr-code-coverage v0.1.0 (/home/wink/prgs/rust/myrepos/expr-code-coverage)
22+
Compiling exper-code-coverage v0.1.0 (/home/wink/prgs/rust/myrepos/exper-code-coverage)
2323
Finished test [unoptimized + debuginfo] target(s) in 0.79s
24-
Running unittests (target/llvm-cov-target/debug/deps/expr_code_coverage-ae7fad6d44ba68fc)
24+
Running unittests (target/llvm-cov-target/debug/deps/exper_code_coverage-ae7fad6d44ba68fc)
2525
2626
running 0 tests
2727
@@ -36,14 +36,14 @@ test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; fini
3636
3737
Filename Regions Missed Regions Cover Functions Missed Functions Executed Lines Missed Lines Cover Branches Missed Branches Cover
3838
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
39-
/home/wink/prgs/rust/myrepos/expr-code-coverage/src/main.rs 2 0 100.00% 2 0 100.00% 4 0 100.00% 0 0 -
39+
/home/wink/prgs/rust/myrepos/exper-code-coverage/src/main.rs 2 0 100.00% 2 0 100.00% 4 0 100.00% 0 0 -
4040
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
4141
TOTAL 2 0 100.00% 2 0 100.00% 4 0 100.00% 0 0 -
42-
wink@3900x:~/prgs/rust/myrepos/expr-code-coverage (main)
42+
wink@3900x:~/prgs/rust/myrepos/exper-code-coverage (main)
4343
$ cargo llvm-cov
44-
Compiling expr-code-coverage v0.1.0 (/home/wink/prgs/rust/myrepos/expr-code-coverage)
44+
Compiling exper-code-coverage v0.1.0 (/home/wink/prgs/rust/myrepos/exper-code-coverage)
4545
Finished test [unoptimized + debuginfo] target(s) in 0.79s
46-
Running unittests (target/llvm-cov-target/debug/deps/expr_code_coverage-ae7fad6d44ba68fc)
46+
Running unittests (target/llvm-cov-target/debug/deps/exper_code_coverage-ae7fad6d44ba68fc)
4747
4848
running 0 tests
4949
@@ -58,7 +58,7 @@ test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; fini
5858
5959
Filename Regions Missed Regions Cover Functions Missed Functions Executed Lines Missed Lines Cover Branches Missed Branches Cover
6060
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
61-
/home/wink/prgs/rust/myrepos/expr-code-coverage/src/main.rs 2 0 100.00% 2 0 100.00% 4 0 100.00% 0 0 -
61+
/home/wink/prgs/rust/myrepos/exper-code-coverage/src/main.rs 2 0 100.00% 2 0 100.00% 4 0 100.00% 0 0 -
6262
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
6363
TOTAL
6464
```
@@ -68,7 +68,7 @@ TOTAL
6868
Currently "100%" 2/2.
6969

7070
```
71-
wink@3900x:~/prgs/rust/myrepos/expr-code-coverage (main)
71+
wink@3900x:~/prgs/rust/myrepos/exper-code-coverage (main)
7272
$ cargo tarpaulin
7373
Apr 08 11:33:14.839 INFO cargo_tarpaulin::config: Creating config
7474
Apr 08 11:33:14.852 INFO cargo_tarpaulin: Running config test_config
@@ -87,7 +87,7 @@ Apr 08 11:33:14.852 INFO cargo_tarpaulin::cargo: Cleaning project
8787
Compiling difflib v0.4.0
8888
Compiling termtree v0.2.4
8989
Compiling regex-automata v0.1.10
90-
Compiling expr-code-coverage v0.1.0 (/home/wink/prgs/rust/myrepos/expr-code-coverage)
90+
Compiling exper-code-coverage v0.1.0 (/home/wink/prgs/rust/myrepos/exper-code-coverage)
9191
Compiling itertools v0.10.3
9292
Compiling predicates-tree v1.0.5
9393
Compiling num-traits v0.2.14
@@ -100,14 +100,14 @@ Apr 08 11:33:14.852 INFO cargo_tarpaulin::cargo: Cleaning project
100100
Compiling assert_cmd v2.0.4
101101
Finished test [unoptimized + debuginfo] target(s) in 3.51s
102102
Apr 08 11:33:18.446 INFO cargo_tarpaulin::process_handling::linux: Launching test
103-
Apr 08 11:33:18.446 INFO cargo_tarpaulin::process_handling: running /home/wink/prgs/rust/myrepos/expr-code-coverage/target/debug/deps/expr_code_coverage-d676e043ae6e11c6
103+
Apr 08 11:33:18.446 INFO cargo_tarpaulin::process_handling: running /home/wink/prgs/rust/myrepos/exper-code-coverage/target/debug/deps/exper_code_coverage-d676e043ae6e11c6
104104
105105
running 0 tests
106106
107107
test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
108108
109109
Apr 08 11:33:18.579 INFO cargo_tarpaulin::process_handling::linux: Launching test
110-
Apr 08 11:33:18.579 INFO cargo_tarpaulin::process_handling: running /home/wink/prgs/rust/myrepos/expr-code-coverage/target/debug/deps/cli-d86d8363bb9f499e
110+
Apr 08 11:33:18.579 INFO cargo_tarpaulin::process_handling: running /home/wink/prgs/rust/myrepos/exper-code-coverage/target/debug/deps/cli-d86d8363bb9f499e
111111
112112
running 1 test
113113
test test_no_params ... ok

tests/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use predicates::prelude::*;
33
use std::error::Error;
44
use std::process::Command;
55

6-
const APP_NAME: &str = "expr-code-coverage";
6+
const APP_NAME: &str = "exper-code-coverage";
77

88
// If tarpaulin starts failing during github Actions disable
99
// by uncommenting #[cfg(not(tarpauling))]. This will reduce

0 commit comments

Comments
 (0)