Skip to content
Merged
Changes from 1 commit
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
5 changes: 4 additions & 1 deletion tests/testsuite/jobserver.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ fn jobserver_exists() {
.file("src/lib.rs", "")
.build();

p.cargo("build").run();
// Explicitly use `-j2` to ensure that there's eventually going to be a
// token to read from `valdiate` above, since running the build script
// itself consumes a token.
p.cargo("build -j2").run();
}

#[cargo_test]
Expand Down