Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use shrinked output built into the test harness. #200

Merged
merged 1 commit into from
Mar 24, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ heapsize_plugin = { version = "0.1.0", optional = true }

[dev-dependencies]
rustc-serialize = "0.3.15"
rustc-test = "0.1"
rustc-test = "0.1.3"

[build-dependencies]
phf_codegen = "0.7.3"
Expand Down
40 changes: 0 additions & 40 deletions scripts/shrink-test-output.py

This file was deleted.

7 changes: 4 additions & 3 deletions scripts/travis-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@

set -ex

./scripts/shrink-test-output.py cargo test --color always

if [ $TRAVIS_RUST_VERSION = nightly ]
then
./scripts/shrink-test-output.py cargo test --color always --features unstable
cargo test --features "rustc-test/capture"
cargo test --features "rustc-test/capture unstable"
else
cargo test
fi

cargo doc