summaryrefslogtreecommitdiff
path: root/test-all.sh
blob: 7cdb9e90712cb350b0f3cfc0a9e702438d190cd0 (plain)
1
2
3
4
5
6
7
#!/bin/sh

# test all feature sets
for mode in '' '--release'; do
	cargo test $mode || exit 1
	cargo test $mode --features adler || exit 1
done