Skip to content

Commit

Permalink
Add lazy reader tests
Browse files Browse the repository at this point in the history
Including fuzzing tests
  • Loading branch information
XuJiandong committed Aug 14, 2023
1 parent 21b248b commit d1e5b0a
Show file tree
Hide file tree
Showing 22 changed files with 24,526 additions and 289 deletions.
12 changes: 11 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ ci:
@set -eu; \
export RUSTFLAGS='-D warnings'; \
make fmt clippy; \
make ci-lazy-reader; \
make ci-examples ci-crates; \
echo "Success!"

Expand Down Expand Up @@ -63,4 +64,13 @@ ci-crates:
ci-examples:
@set -eu; \
cd examples/ci-tests; \
make clean test
make clean test; \
cd - > /dev/null; \

ci-lazy-reader:
@set -eu; \
cd examples/lazy-reader-tests; \
make test; \
cd - > /dev/null; \


2 changes: 1 addition & 1 deletion examples/lazy-reader-tests/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
target/
target
314 changes: 38 additions & 276 deletions examples/lazy-reader-tests/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit d1e5b0a

Please sign in to comment.