Skip to content

Commit

Permalink
add e2e communications test
Browse files Browse the repository at this point in the history
  • Loading branch information
rcgoodfellow committed Dec 28, 2023
1 parent 1be2f07 commit 97e6bc4
Show file tree
Hide file tree
Showing 8 changed files with 1,384 additions and 641 deletions.
4 changes: 3 additions & 1 deletion .github/buildomat/jobs/ci-tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,10 @@ export CARGO_INCREMENTAL=0
ptime -m cargo build --locked -p end-to-end-tests --tests --bin bootstrap \
--message-format json-render-diagnostics >/tmp/output.end-to-end.json

ptime -m cargo build --locked -p end-to-end-tests --tests --bin commtest

mkdir -p /work/end-to-end-tests
for p in target/debug/bootstrap $(/opt/ooce/bin/jq -r 'select(.profile.test) | .executable' /tmp/output.end-to-end.json); do
for p in target/debug/bootstrap target/debug/commtest $(/opt/ooce/bin/jq -r 'select(.profile.test) | .executable' /tmp/output.end-to-end.json); do
# shellcheck disable=SC2094
ptime -m gzip < "$p" > /work/end-to-end-tests/"$(basename "$p").gz"
done
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ debug.out
rusty-tags.vi
*.sw*
tags
connectivity-report.json
Loading

0 comments on commit 97e6bc4

Please sign in to comment.