A few more bits in bin/decode_typed_test.
This commit is contained in:
parent
2e5a42c8fe
commit
bee76d3668
1 changed files with 8 additions and 1 deletions
|
@ -3,4 +3,11 @@ set -ex
|
||||||
|
|
||||||
# A manual test for framed_decode.
|
# A manual test for framed_decode.
|
||||||
|
|
||||||
cargo run -p framed_test_type | cargo run -p framed_decode
|
repo_dir="$(cd $(dirname ${BASH_SOURCE[0]} )/..; pwd )"
|
||||||
|
|
||||||
|
cd ${repo_dir};
|
||||||
|
|
||||||
|
cargo run -p framed_test_type > target/test_output;
|
||||||
|
cat target/test_output | hd;
|
||||||
|
cat target/test_output | cargo run -p framed_decode;
|
||||||
|
seq 5 | xargs -I% cat target/test_output | cargo run -p framed_decode;
|
||||||
|
|
Loading…
Reference in a new issue