mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-28 11:20:36 +00:00
tests: fix finished line for 'cargo test'
This commit is contained in:
parent
a0290b10c8
commit
e25f6a4255
@ -690,7 +690,7 @@ fn testing_and_such() {
|
||||
[RUNNING] `[..]/build-script-build`
|
||||
[RUNNING] `rustc --crate-name foo [..]`
|
||||
[RUNNING] `rustc --crate-name foo [..]`
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] `[..]/foo-[..][EXE]`
|
||||
[DOCTEST] foo
|
||||
[RUNNING] `rustdoc --test [..]`",
|
||||
@ -1787,7 +1787,7 @@ fn cfg_test() {
|
||||
[RUNNING] [..] --cfg foo[..]
|
||||
[RUNNING] [..] --cfg foo[..]
|
||||
[RUNNING] [..] --cfg foo[..]
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] `[..]/foo-[..][EXE]`
|
||||
[RUNNING] `[..]/test-[..][EXE]`
|
||||
[DOCTEST] foo
|
||||
@ -1898,7 +1898,7 @@ fn cfg_override_test() {
|
||||
[RUNNING] `[..]`
|
||||
[RUNNING] `[..]`
|
||||
[RUNNING] `[..]`
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] `[..]/foo-[..][EXE]`
|
||||
[RUNNING] `[..]/test-[..][EXE]`
|
||||
[DOCTEST] foo
|
||||
@ -2034,7 +2034,7 @@ fn env_test() {
|
||||
[RUNNING] [..] --crate-name foo[..]
|
||||
[RUNNING] [..] --crate-name foo[..]
|
||||
[RUNNING] [..] --crate-name test[..]
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] `[..]/foo-[..][EXE]`
|
||||
[RUNNING] `[..]/test-[..][EXE]`
|
||||
[DOCTEST] foo
|
||||
@ -2135,7 +2135,7 @@ fn flags_go_into_tests() {
|
||||
[COMPILING] foo v0.5.0 ([..]
|
||||
[RUNNING] `rustc [..] src/lib.rs [..] -L test[..]`
|
||||
[RUNNING] `rustc [..] tests/foo.rs [..] -L test[..]`
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] `[..]/foo-[..][EXE]`",
|
||||
)
|
||||
.with_stdout_contains("running 0 tests")
|
||||
@ -2147,7 +2147,7 @@ fn flags_go_into_tests() {
|
||||
[FRESH] a v0.5.0 ([..]
|
||||
[COMPILING] b v0.5.0 ([..]
|
||||
[RUNNING] `rustc [..] b/src/lib.rs [..] -L test[..]`
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] `[..]/b-[..][EXE]`",
|
||||
)
|
||||
.with_stdout_contains("running 0 tests")
|
||||
|
@ -231,7 +231,7 @@ fn changing_profiles_caches_targets() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[..]Compiling foo v0.0.1 ([..])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target[..]debug[..]deps[..]foo-[..][EXE]
|
||||
[DOCTEST] foo
|
||||
",
|
||||
@ -247,7 +247,7 @@ fn changing_profiles_caches_targets() {
|
||||
p.cargo("test foo")
|
||||
.with_stderr(
|
||||
"\
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target[..]debug[..]deps[..]foo-[..][EXE]
|
||||
",
|
||||
)
|
||||
@ -572,7 +572,7 @@ fn no_rebuild_transitive_target_deps() {
|
||||
[COMPILING] c v0.0.1 ([..])
|
||||
[COMPILING] b v0.0.1 ([..])
|
||||
[COMPILING] foo v0.0.1 ([..])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
",
|
||||
)
|
||||
.run();
|
||||
|
@ -1320,7 +1320,7 @@ fn dev_deps_with_testing() {
|
||||
"\
|
||||
[COMPILING] [..] v0.5.0 ([..])
|
||||
[COMPILING] [..] v0.5.0 ([..]
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]",
|
||||
)
|
||||
.with_stdout_contains("test tests::foo ... ok")
|
||||
|
@ -186,7 +186,7 @@ fn cargo_compile_with_root_dev_deps_with_testing() {
|
||||
"\
|
||||
[COMPILING] [..] v0.5.0 ([..])
|
||||
[COMPILING] [..] v0.5.0 ([..])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]",
|
||||
)
|
||||
.with_stdout_contains("running 0 tests")
|
||||
@ -783,7 +783,7 @@ fn dev_deps_no_rebuild_lib() {
|
||||
"\
|
||||
[COMPILING] [..] v0.5.0 ([CWD][..])
|
||||
[COMPILING] [..] v0.5.0 ([CWD][..])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]",
|
||||
)
|
||||
.with_stdout_contains("running 0 tests")
|
||||
|
@ -314,7 +314,7 @@ fn profile_selection_test() {
|
||||
[FRESH] bar [..]
|
||||
[FRESH] bdep [..]
|
||||
[FRESH] foo [..]
|
||||
[FINISHED] dev [unoptimized + debuginfo] [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] [..]
|
||||
[RUNNING] `[..]/deps/foo-[..]`
|
||||
[RUNNING] `[..]/deps/foo-[..]`
|
||||
[RUNNING] `[..]/deps/test1-[..]`
|
||||
@ -441,7 +441,7 @@ fn profile_selection_bench() {
|
||||
[FRESH] bar [..]
|
||||
[FRESH] bdep [..]
|
||||
[FRESH] foo [..]
|
||||
[FINISHED] release [optimized] [..]
|
||||
[FINISHED] bench [optimized] [..]
|
||||
[RUNNING] `[..]/deps/foo-[..] --bench`
|
||||
[RUNNING] `[..]/deps/foo-[..] --bench`
|
||||
[RUNNING] `[..]/deps/bench1-[..] --bench`
|
||||
@ -609,7 +609,7 @@ fn profile_selection_check_all_targets_test() {
|
||||
[FRESH] bar [..]
|
||||
[FRESH] bdep [..]
|
||||
[FRESH] foo [..]
|
||||
[FINISHED] dev [unoptimized + debuginfo] [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] [..]
|
||||
",
|
||||
)
|
||||
.run();
|
||||
|
@ -288,21 +288,21 @@ fn test_default_features() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]",
|
||||
)
|
||||
.with_stdout_contains("test test ... ok")
|
||||
.run();
|
||||
|
||||
p.cargo("test --no-default-features")
|
||||
.with_stderr("[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]")
|
||||
.with_stderr("[FINISHED] test [unoptimized + debuginfo] target(s) in [..]")
|
||||
.with_stdout("")
|
||||
.run();
|
||||
|
||||
p.cargo("test --test=foo")
|
||||
.with_stderr(
|
||||
"\
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]",
|
||||
)
|
||||
.with_stdout_contains("test test ... ok")
|
||||
@ -345,7 +345,7 @@ fn test_arg_features() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]",
|
||||
)
|
||||
.with_stdout_contains("test test ... ok")
|
||||
@ -386,7 +386,7 @@ fn test_multiple_required_features() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo_2-[..][EXE]",
|
||||
)
|
||||
.with_stdout_contains("test test ... ok")
|
||||
@ -396,7 +396,7 @@ fn test_multiple_required_features() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo_1-[..][EXE]
|
||||
[RUNNING] target/debug/deps/foo_2-[..][EXE]",
|
||||
)
|
||||
@ -404,7 +404,7 @@ fn test_multiple_required_features() {
|
||||
.run();
|
||||
|
||||
p.cargo("test --no-default-features")
|
||||
.with_stderr("[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]")
|
||||
.with_stderr("[FINISHED] test [unoptimized + debuginfo] target(s) in [..]")
|
||||
.with_stdout("")
|
||||
.run();
|
||||
}
|
||||
@ -847,7 +847,7 @@ fn dep_feature_in_toml() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]",
|
||||
)
|
||||
.with_stdout_contains("test test ... ok")
|
||||
@ -964,7 +964,7 @@ Consider enabling them by passing, e.g., `--features=\"bar/a\"`
|
||||
|
||||
// test
|
||||
p.cargo("test")
|
||||
.with_stderr("[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]")
|
||||
.with_stderr("[FINISHED] test [unoptimized + debuginfo] target(s) in [..]")
|
||||
.with_stdout("")
|
||||
.run();
|
||||
|
||||
@ -972,7 +972,7 @@ Consider enabling them by passing, e.g., `--features=\"bar/a\"`
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]",
|
||||
)
|
||||
.with_stdout_contains("test test ... ok")
|
||||
@ -1044,7 +1044,7 @@ fn test_skips_compiling_bin_with_missing_required_features() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]",
|
||||
)
|
||||
.with_stdout_contains("running 0 tests")
|
||||
|
@ -1094,7 +1094,7 @@ fn cfg_rustflags_normal_source() {
|
||||
[RUNNING] `rustc [..] --cfg bar[..]`
|
||||
[RUNNING] `rustc [..] --cfg bar[..]`
|
||||
[RUNNING] `rustc [..] --cfg bar[..]`
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
",
|
||||
)
|
||||
.run();
|
||||
@ -1106,7 +1106,7 @@ fn cfg_rustflags_normal_source() {
|
||||
[RUNNING] `rustc [..] --cfg bar[..]`
|
||||
[RUNNING] `rustc [..] --cfg bar[..]`
|
||||
[RUNNING] `rustc [..] --cfg bar[..]`
|
||||
[FINISHED] release [optimized] target(s) in [..]
|
||||
[FINISHED] bench [optimized] target(s) in [..]
|
||||
",
|
||||
)
|
||||
.run();
|
||||
@ -1176,7 +1176,7 @@ fn cfg_rustflags_precedence() {
|
||||
[RUNNING] `rustc [..] --cfg bar[..]`
|
||||
[RUNNING] `rustc [..] --cfg bar[..]`
|
||||
[RUNNING] `rustc [..] --cfg bar[..]`
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
",
|
||||
)
|
||||
.run();
|
||||
@ -1188,7 +1188,7 @@ fn cfg_rustflags_precedence() {
|
||||
[RUNNING] `rustc [..] --cfg bar[..]`
|
||||
[RUNNING] `rustc [..] --cfg bar[..]`
|
||||
[RUNNING] `rustc [..] --cfg bar[..]`
|
||||
[FINISHED] release [optimized] target(s) in [..]
|
||||
[FINISHED] bench [optimized] target(s) in [..]
|
||||
",
|
||||
)
|
||||
.run();
|
||||
|
@ -39,7 +39,7 @@ fn cargo_test_simple() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.5.0 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]",
|
||||
)
|
||||
.with_stdout_contains("test test_hello ... ok")
|
||||
@ -231,7 +231,7 @@ fn cargo_test_verbose() {
|
||||
"\
|
||||
[COMPILING] foo v0.5.0 ([CWD])
|
||||
[RUNNING] `rustc [..] src/main.rs [..]`
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] `[CWD]/target/debug/deps/foo-[..] hello`
|
||||
",
|
||||
)
|
||||
@ -304,7 +304,7 @@ fn cargo_test_failing_test_in_bin() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.5.0 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]
|
||||
[ERROR] test failed, to rerun pass '--bin foo'",
|
||||
)
|
||||
@ -352,7 +352,7 @@ fn cargo_test_failing_test_in_test() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.5.0 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]
|
||||
[RUNNING] target/debug/deps/footest-[..][EXE]
|
||||
[ERROR] test failed, to rerun pass '--test footest'",
|
||||
@ -391,7 +391,7 @@ fn cargo_test_failing_test_in_lib() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.5.0 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]
|
||||
[ERROR] test failed, to rerun pass '--lib'",
|
||||
)
|
||||
@ -465,7 +465,7 @@ fn test_with_lib_dep() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]
|
||||
[RUNNING] target/debug/deps/baz-[..][EXE]
|
||||
[DOCTEST] foo",
|
||||
@ -519,7 +519,7 @@ fn test_with_deep_lib_dep() {
|
||||
"\
|
||||
[COMPILING] bar v0.0.1 ([..])
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target[..]
|
||||
[DOCTEST] foo",
|
||||
)
|
||||
@ -568,7 +568,7 @@ fn external_test_explicit() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]
|
||||
[RUNNING] target/debug/deps/test-[..][EXE]
|
||||
[DOCTEST] foo",
|
||||
@ -628,7 +628,7 @@ fn external_test_implicit() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]
|
||||
[RUNNING] target/debug/deps/external-[..][EXE]
|
||||
[DOCTEST] foo",
|
||||
@ -669,7 +669,7 @@ fn pass_through_command_line() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]
|
||||
",
|
||||
)
|
||||
@ -680,7 +680,7 @@ fn pass_through_command_line() {
|
||||
p.cargo("test foo")
|
||||
.with_stderr(
|
||||
"\
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]
|
||||
",
|
||||
)
|
||||
@ -745,7 +745,7 @@ fn lib_bin_same_name() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]
|
||||
[DOCTEST] foo",
|
||||
@ -786,7 +786,7 @@ fn lib_with_standard_name() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] syntax v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/syntax-[..][EXE]
|
||||
[RUNNING] target/debug/deps/test-[..][EXE]
|
||||
[DOCTEST] syntax",
|
||||
@ -832,7 +832,7 @@ fn lib_with_standard_name2() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] syntax v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/syntax-[..][EXE]",
|
||||
)
|
||||
.with_stdout_contains("test test ... ok")
|
||||
@ -873,7 +873,7 @@ fn lib_without_name() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] syntax v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/syntax-[..][EXE]",
|
||||
)
|
||||
.with_stdout_contains("test test ... ok")
|
||||
@ -1185,7 +1185,7 @@ fn test_dylib() {
|
||||
"\
|
||||
[COMPILING] bar v0.0.1 ([CWD]/bar)
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]
|
||||
[RUNNING] target/debug/deps/test-[..][EXE]",
|
||||
)
|
||||
@ -1196,7 +1196,7 @@ fn test_dylib() {
|
||||
p.cargo("test")
|
||||
.with_stderr(
|
||||
"\
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]
|
||||
[RUNNING] target/debug/deps/test-[..][EXE]",
|
||||
)
|
||||
@ -1225,7 +1225,7 @@ fn test_twice_with_build_cmd() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]
|
||||
[DOCTEST] foo",
|
||||
)
|
||||
@ -1236,7 +1236,7 @@ fn test_twice_with_build_cmd() {
|
||||
p.cargo("test")
|
||||
.with_stderr(
|
||||
"\
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]
|
||||
[DOCTEST] foo",
|
||||
)
|
||||
@ -1253,7 +1253,7 @@ fn test_then_build() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]
|
||||
[DOCTEST] foo",
|
||||
)
|
||||
@ -1274,7 +1274,7 @@ fn test_no_run() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
",
|
||||
)
|
||||
.run();
|
||||
@ -1308,7 +1308,7 @@ fn test_run_specific_bin_target() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/bin2-[..][EXE]",
|
||||
)
|
||||
.with_stdout_contains("test test2 ... ok")
|
||||
@ -1349,7 +1349,7 @@ fn test_run_implicit_bin_target() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/mybin-[..][EXE]",
|
||||
)
|
||||
.with_stdout_contains("test test_in_bin ... ok")
|
||||
@ -1369,7 +1369,7 @@ fn test_run_specific_test_target() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/b-[..][EXE]",
|
||||
)
|
||||
.with_stdout_contains("test test_b ... ok")
|
||||
@ -1409,7 +1409,7 @@ fn test_run_implicit_test_target() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/mybin-[..][EXE]
|
||||
[RUNNING] target/debug/deps/mytest-[..][EXE]",
|
||||
)
|
||||
@ -1450,7 +1450,7 @@ fn test_run_implicit_bench_target() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/mybin-[..][EXE]
|
||||
[RUNNING] target/debug/deps/mybench-[..][EXE]",
|
||||
)
|
||||
@ -1556,7 +1556,7 @@ test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[RUNNING] `rustc --crate-name foo src/lib.rs [..] --test [..]`
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] `[CWD]/target/debug/deps/foo-[..] foo`
|
||||
",
|
||||
)
|
||||
@ -1593,7 +1593,7 @@ fn test_no_harness() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/bar-[..][EXE]
|
||||
",
|
||||
)
|
||||
@ -1665,7 +1665,7 @@ fn selective_testing() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] d1 v0.0.1 ([CWD]/d1)
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/d1-[..][EXE]
|
||||
[RUNNING] target/debug/deps/d1-[..][EXE]",
|
||||
)
|
||||
@ -1677,7 +1677,7 @@ fn selective_testing() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] d2 v0.0.1 ([CWD]/d2)
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/d2-[..][EXE]
|
||||
[RUNNING] target/debug/deps/d2-[..][EXE]",
|
||||
)
|
||||
@ -1689,7 +1689,7 @@ fn selective_testing() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]",
|
||||
)
|
||||
.with_stdout_contains("running 0 tests")
|
||||
@ -1870,7 +1870,7 @@ fn selective_testing_with_docs() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] d1 v0.0.1 ([CWD]/d1)
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/d1[..][EXE]
|
||||
[DOCTEST] d1",
|
||||
)
|
||||
@ -1891,7 +1891,7 @@ fn example_bin_same_name() {
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[RUNNING] `rustc [..]`
|
||||
[RUNNING] `rustc [..]`
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
",
|
||||
)
|
||||
.run();
|
||||
@ -1967,7 +1967,7 @@ fn example_with_dev_dep() {
|
||||
[..]
|
||||
[..]
|
||||
[RUNNING] `rustc --crate-name ex [..] --extern a=[..]`
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
",
|
||||
)
|
||||
.run();
|
||||
@ -2033,7 +2033,7 @@ fn doctest_feature() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo [..]
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo[..][EXE]
|
||||
[DOCTEST] foo",
|
||||
)
|
||||
@ -2110,7 +2110,7 @@ fn filter_no_doc_tests() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([..])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo[..][EXE]",
|
||||
)
|
||||
.with_stdout_contains("running 0 tests")
|
||||
@ -2149,7 +2149,7 @@ fn dylib_doctest() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([..])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[DOCTEST] foo",
|
||||
)
|
||||
.with_stdout_contains("test [..] ... ok")
|
||||
@ -2236,7 +2236,7 @@ fn cyclic_dev_dep_doc_test() {
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([..])
|
||||
[COMPILING] bar v0.0.1 ([..])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo[..][EXE]
|
||||
[DOCTEST] foo",
|
||||
)
|
||||
@ -2332,7 +2332,7 @@ fn no_fail_fast() {
|
||||
.with_stderr_contains(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([..])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..][EXE]
|
||||
[RUNNING] target/debug/deps/test_add_one-[..][EXE]",
|
||||
)
|
||||
@ -2429,7 +2429,7 @@ fn bin_does_not_rebuild_tests() {
|
||||
[COMPILING] foo v0.0.1 ([..])
|
||||
[RUNNING] `rustc [..] src/main.rs [..]`
|
||||
[RUNNING] `rustc [..] src/main.rs [..]`
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
",
|
||||
)
|
||||
.run();
|
||||
@ -2487,7 +2487,7 @@ fn selective_test_optional_dep() {
|
||||
[COMPILING] a v0.0.1 ([..])
|
||||
[RUNNING] `rustc [..] a/src/lib.rs [..]`
|
||||
[RUNNING] `rustc [..] a/src/lib.rs [..]`
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
",
|
||||
)
|
||||
.run();
|
||||
@ -2519,7 +2519,7 @@ fn only_test_docs() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([..])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[DOCTEST] foo",
|
||||
)
|
||||
.with_stdout_contains("test [..] ... ok")
|
||||
@ -2586,7 +2586,7 @@ fn cfg_test_even_with_no_harness() {
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([..])
|
||||
[RUNNING] `rustc [..]`
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] `[..]`
|
||||
",
|
||||
)
|
||||
@ -3500,7 +3500,7 @@ fn doctest_skip_staticlib() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo [..]
|
||||
[FINISHED] dev [..]
|
||||
[FINISHED] test [..]
|
||||
[RUNNING] target/debug/deps/foo-[..]",
|
||||
)
|
||||
.run();
|
||||
@ -3528,7 +3528,7 @@ pub fn foo() -> u8 { 1 }
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..]
|
||||
[DOCTEST] foo
|
||||
",
|
||||
@ -3552,7 +3552,7 @@ test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out
|
||||
p.cargo("test --lib")
|
||||
.with_stderr(
|
||||
"\
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] target/debug/deps/foo-[..]\n",
|
||||
)
|
||||
.with_stdout(
|
||||
@ -3618,7 +3618,7 @@ fn test_all_targets_lib() {
|
||||
.with_stderr(
|
||||
"\
|
||||
[COMPILING] foo [..]
|
||||
[FINISHED] dev [..]
|
||||
[FINISHED] test [..]
|
||||
[RUNNING] [..]foo[..]
|
||||
",
|
||||
)
|
||||
|
@ -152,7 +152,7 @@ fn custom_runner() {
|
||||
"\
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[RUNNING] `rustc [..]`
|
||||
[FINISHED] dev [unoptimized + debuginfo] target(s) in [..]
|
||||
[FINISHED] test [unoptimized + debuginfo] target(s) in [..]
|
||||
[RUNNING] `nonexistent-runner -r [..]/target/debug/deps/test-[..][EXE] --param`
|
||||
",
|
||||
)
|
||||
@ -165,7 +165,7 @@ fn custom_runner() {
|
||||
[COMPILING] foo v0.0.1 ([CWD])
|
||||
[RUNNING] `rustc [..]`
|
||||
[RUNNING] `rustc [..]`
|
||||
[FINISHED] release [optimized] target(s) in [..]
|
||||
[FINISHED] bench [optimized] target(s) in [..]
|
||||
[RUNNING] `nonexistent-runner -r [..]/target/release/deps/bench-[..][EXE] --param --bench`
|
||||
",
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user