Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pacak committed Oct 9, 2024
1 parent 59c612a commit c78681a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/check-and-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ jobs:
run: |
cargo run -- --manifest-path sample_merged/Cargo.toml sample_merged::merged_0
cargo run -- --manifest-path sample_merged/Cargo.toml sample_merged::merged_1
cargo run -- --manifest-path sample_merged/Cargo.toml sample_merged::one
cargo run -- --manifest-path sample_merged/Cargo.toml sample_merged::one_num
cargo run -- --manifest-path sample_merged/Cargo.toml sample_merged::one_plus_one
cargo run -- --manifest-path sample_merged/Cargo.toml sample_merged::two
cargo run -- --manifest-path sample_merged/Cargo.toml sample_merged::two_num
cargo run -- --manifest-path sample_merged/Cargo.toml sample_merged::two_minus_one
windows:
Expand Down Expand Up @@ -164,9 +164,9 @@ jobs:
run: |
cargo run -- --manifest-path sample_merged/Cargo.toml sample_merged::merged_0
cargo run -- --manifest-path sample_merged/Cargo.toml sample_merged::merged_1
cargo run -- --manifest-path sample_merged/Cargo.toml sample_merged::one
cargo run -- --manifest-path sample_merged/Cargo.toml sample_merged::one_num
cargo run -- --manifest-path sample_merged/Cargo.toml sample_merged::one_plus_one
cargo run -- --manifest-path sample_merged/Cargo.toml sample_merged::two
cargo run -- --manifest-path sample_merged/Cargo.toml sample_merged::two_num
cargo run -- --manifest-path sample_merged/Cargo.toml sample_merged::two_minus_one
macos:
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:

- name: merged functions
run: |
cargo run -- --manifest-path sample_merged/Cargo.toml sample_merged::one
cargo run -- --manifest-path sample_merged/Cargo.toml sample_merged::one_num
cargo run -- --manifest-path sample_merged/Cargo.toml sample_merged::one_plus_one
cargo run -- --manifest-path sample_merged/Cargo.toml sample_merged::two
cargo run -- --manifest-path sample_merged/Cargo.toml sample_merged::two_num
cargo run -- --manifest-path sample_merged/Cargo.toml sample_merged::two_minus_one
4 changes: 2 additions & 2 deletions sample_merged/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ pub fn merged_1() {
}

#[inline(never)]
pub fn two() -> u32 {
pub fn two_num() -> u32 {
2
}

#[inline(never)]
pub fn one() -> u32 {
pub fn one_num() -> u32 {
1
}

Expand Down

0 comments on commit c78681a

Please sign in to comment.