File tree 1 file changed +12
-3
lines changed
1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -1777,9 +1777,7 @@ perhaps a crate was updated and forgotten to be re-vendored?
1777
1777
. run ( ) ;
1778
1778
}
1779
1779
1780
- // FIXME: `download_accessible` should work properly for artifact dependencies
1781
1780
#[ cargo_test]
1782
- #[ ignore = "broken, needs download_accessible fix" ]
1783
1781
fn proc_macro_in_artifact_dep ( ) {
1784
1782
// Forcing FeatureResolver to check a proc-macro for a dependency behind a
1785
1783
// target dependency.
@@ -1829,7 +1827,18 @@ fn proc_macro_in_artifact_dep() {
1829
1827
1830
1828
p. cargo ( "check -Z bindeps" )
1831
1829
. masquerade_as_nightly_cargo ( & [ "bindeps" ] )
1832
- . with_stderr_data ( str![ [ r#""# ] ] )
1830
+ . with_stderr_data ( str![ [ r#"
1831
+ [UPDATING] `dummy-registry` index
1832
+ [LOCKING] 2 packages to latest compatible versions
1833
+ [DOWNLOADING] crates ...
1834
+ [DOWNLOADED] bin-uses-pm v1.0.0 (registry `dummy-registry`)
1835
+ [DOWNLOADING] crates ...
1836
+ thread 'main' panicked at src/cargo/core/compiler/unit_dependencies.rs:1035:33:
1837
+ expected pm v1.0.0 to be downloaded
1838
+ [NOTE] run with `RUST_BACKTRACE=1` environment variable to display a backtrace
1839
+
1840
+ "# ] ] )
1841
+ . with_status ( 101 )
1833
1842
. run ( ) ;
1834
1843
}
1835
1844
You can’t perform that action at this time.
0 commit comments