Skip to content

Commit

Permalink
feat(cm): an usable RDMA CM interface with cmtime as example
Browse files Browse the repository at this point in the history
Signed-off-by: Luke Yue <[email protected]>
  • Loading branch information
dragonJACson committed Dec 1, 2024
1 parent 1049148 commit 757f1ca
Show file tree
Hide file tree
Showing 5 changed files with 1,037 additions and 33 deletions.
1 change: 1 addition & 0 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ task:
- export LD_LIBRARY_PATH=./rdma-core/build/lib
- just test-basic-with-cov
- just test-rc-pingpong-with-cov
- just test-cmtime-with-cov
- just generate-cov
- sed -i 's#/tmp/cirrus-ci-build/##g' lcov.info
- ./codecov --verbose upload-process --disable-search --fail-on-error -t $CODECOV_TOKEN --git-service github -f ./lcov.info
5 changes: 5 additions & 0 deletions Justfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,10 @@ test-rc-pingpong-with-cov:
sleep 2
cargo llvm-cov --no-report run --features="debug" --example rc_pingpong_split -- -d {{rdma_dev}} -g 1 127.0.0.1

test-cmtime-with-cov:
cargo llvm-cov --no-report run --example cmtime -- -b {{ip}} &
sleep 2
cargo llvm-cov --no-report run --example cmtime -- -b {{ip}} -s {{ip}}

generate-cov:
cargo llvm-cov report --lcov --output-path lcov.info
Loading

0 comments on commit 757f1ca

Please sign in to comment.