-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run tests for the cargo submodule in tree
Previously the `cargotest` suite would run some arbitrary revision of Cargo's test suite, but now that we're bundling it in tree we should be running the Cargo submodule's test suite instead.
- Loading branch information
1 parent
43ef63d
commit 2c9d756
Showing
5 changed files
with
46 additions
and
31 deletions.
There are no files selected for viewing
Submodule cargo
updated
28 files
+2 −0 | .travis.yml | |
+4 −4 | Cargo.lock | |
+15 −0 | Makefile.in | |
+1 −1 | src/bin/init.rs | |
+1 −1 | src/bin/new.rs | |
+5 −2 | src/cargo/core/manifest.rs | |
+41 −26 | src/cargo/core/resolver/mod.rs | |
+1 −1 | src/cargo/ops/cargo_generate_lockfile.rs | |
+2 −2 | src/cargo/ops/cargo_new.rs | |
+2 −1 | src/cargo/ops/cargo_package.rs | |
+28 −6 | src/cargo/ops/cargo_rustc/job_queue.rs | |
+23 −6 | src/cargo/ops/cargo_rustc/mod.rs | |
+1 −1 | src/cargo/ops/cargo_test.rs | |
+51 −44 | src/cargo/sources/git/utils.rs | |
+4 −1 | src/cargo/util/toml.rs | |
+27 −0 | src/ci/docker/android/Dockerfile | |
+6 −0 | src/ci/run.sh | |
+4 −0 | src/doc/specifying-dependencies.md | |
+24 −24 | tests/bench.rs | |
+6 −2 | tests/build.rs | |
+2 −0 | tests/cargotest/lib.rs | |
+4 −4 | tests/cross-compile.rs | |
+67 −0 | tests/git.rs | |
+2 −1 | tests/package.rs | |
+2 −1 | tests/publish.rs | |
+3 −6 | tests/registry.rs | |
+81 −6 | tests/test.rs | |
+92 −0 | tests/warn-on-failure.rs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters