We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a10eb01 commit 69c6363Copy full SHA for 69c6363
tests/testsuite/collisions.rs
@@ -39,7 +39,9 @@ fn collision_dylib() {
39
.file("b/src/lib.rs", "")
40
.build();
41
42
- p.cargo("build")
+ // j=1 is required because on windows you'll get an error because
43
+ // two processes will be writing to the file at the same time.
44
+ p.cargo("build -j=1")
45
.with_stderr_contains(&format!("\
46
[WARNING] output filename collision.
47
The lib target `a` in package `b v1.0.0 ([..]/foo/b)` has the same output filename as the lib target `a` in package `a v1.0.0 ([..]/foo/a)`.
0 commit comments