-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This test will always on Windows because its docker engine does not yet support the `State.OOMKilled` flag. We move it out of `full` and into its own minicrater run (which is disabled on Windows).
- Loading branch information
1 parent
1a3f3fb
commit 70d22ae
Showing
6 changed files
with
77 additions
and
16 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,3 +22,4 @@ build-log-max-lines = 1000 | |
[github-repos] | ||
|
||
[local-crates] | ||
memory-hungry = { skip = true } |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
[server.bot-acl] | ||
rust-teams = true | ||
github = ["pietroalbini"] | ||
|
||
[server.labels] | ||
remove = "^S-" | ||
experiment-queued = "S-waiting-on-crater" | ||
experiment-completed = "S-waiting-on-review" | ||
|
||
[demo-crates] | ||
crates = [] | ||
github-repos = [] | ||
local-crates = ["build-pass", "memory-hungry"] | ||
|
||
[sandbox] | ||
memory-limit = "512M" | ||
build-log-max-size = "2M" | ||
build-log-max-lines = 1000 | ||
|
||
[crates] | ||
|
||
[github-repos] | ||
|
||
[local-crates] |
34 changes: 34 additions & 0 deletions
34
tests/minicrater/resource-exhaustion/results.expected.json
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"crates": [ | ||
{ | ||
"name": "build-pass (local)", | ||
"res": "test-pass", | ||
"runs": [ | ||
{ | ||
"log": "stable/local/build-pass", | ||
"res": "test-pass" | ||
}, | ||
{ | ||
"log": "beta/local/build-pass", | ||
"res": "test-pass" | ||
} | ||
], | ||
"url": "https://github.com/rust-lang-nursery/crater/tree/master/local-crates/build-pass" | ||
}, | ||
{ | ||
"name": "memory-hungry (local)", | ||
"res": "spurious-fixed", | ||
"runs": [ | ||
{ | ||
"log": "stable/local/memory-hungry", | ||
"res": "build-fail:oom" | ||
}, | ||
{ | ||
"log": "beta/local/memory-hungry", | ||
"res": "test-fail:oom" | ||
} | ||
], | ||
"url": "https://github.com/rust-lang-nursery/crater/tree/master/local-crates/memory-hungry" | ||
} | ||
] | ||
} |