Skip to content

Commit

Permalink
Print out conformance results and add log for skips (#695)
Browse files Browse the repository at this point in the history
  • Loading branch information
austinabell authored Sep 10, 2020
1 parent 0d7b16c commit 548a464
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ run-serialization-vectors:
cargo test --release --manifest-path=$(SER_TESTS)/Cargo.toml --features "submodule_tests"

run-conformance-vectors:
cargo test --release --manifest-path=$(CONF_TESTS)/Cargo.toml --features "submodule_tests"
cargo test --release --manifest-path=$(CONF_TESTS)/Cargo.toml --features "submodule_tests" -- --nocapture

run-vectors: run-serialization-vectors run-conformance-vectors

Expand Down
1 change: 1 addition & 0 deletions tests/conformance_tests/tests/conformance_runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ fn is_valid_file(entry: &DirEntry) -> bool {
};
for rx in SKIP_TESTS.iter() {
if rx.is_match(file_name) {
println!("SKIPPING: {}", file_name);
return false;
}
}
Expand Down

0 comments on commit 548a464

Please sign in to comment.