2019-10-02 01:04:56 +00:00
|
|
|
.PHONY: tests
|
2019-09-07 18:19:54 +00:00
|
|
|
|
2019-10-02 01:04:56 +00:00
|
|
|
EF_TESTS = "tests/ef_tests"
|
2019-09-07 18:19:54 +00:00
|
|
|
|
2019-10-02 01:04:56 +00:00
|
|
|
# Builds the entire workspace in release (optimized).
|
|
|
|
#
|
|
|
|
# Binaries will most likely be found in `./target/release`
|
2019-09-07 18:19:54 +00:00
|
|
|
release:
|
2019-10-02 01:04:56 +00:00
|
|
|
cargo build --release --all
|
2019-09-07 18:19:54 +00:00
|
|
|
|
2019-10-02 01:04:56 +00:00
|
|
|
# Runs the full workspace tests, without downloading any additional test
|
|
|
|
# vectors.
|
|
|
|
test:
|
|
|
|
cargo test --all --all-features --release
|
2019-09-07 18:19:54 +00:00
|
|
|
|
2019-10-02 01:04:56 +00:00
|
|
|
# Runs the entire test suite, downloading test vectors if required.
|
|
|
|
test-full: make-ef-tests test
|
2019-09-07 18:19:54 +00:00
|
|
|
|
2019-10-02 01:04:56 +00:00
|
|
|
# Runs the makefile in the `ef_tests` repo.
|
|
|
|
#
|
|
|
|
# May download and extract an archive of test vectors from the ethereum
|
|
|
|
# repositories. At the time of writing, this was several hundred MB of
|
|
|
|
# downloads which extracts into several GB of test vectors.
|
|
|
|
make-ef-tests:
|
|
|
|
make -C $(EF_TESTS)
|
2019-09-07 18:19:54 +00:00
|
|
|
|
2019-10-02 01:04:56 +00:00
|
|
|
# Performs a `cargo` clean and cleans the `ef_tests` directory.
|
|
|
|
clean:
|
|
|
|
cargo clean
|
|
|
|
make -C $(EF_TESTS) clean
|