Fixed broken miri CI script (#712)
* Fixed broken miri CI script * Disabled `test_std_file` in miri as it uses tempfile which is not supported --------- Co-authored-by: Victor Koenders <git@trang.ar>
This commit is contained in:
parent
ff24b8a315
commit
beec84b3ee
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "miri",
|
||||
"on": [
|
||||
"on": {
|
||||
"push": {
|
||||
"branches": [
|
||||
"trunk",
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
"v*.x"
|
||||
]
|
||||
}
|
||||
],
|
||||
},
|
||||
"jobs": {
|
||||
"miri": {
|
||||
"name": "MIRI",
|
||||
|
|
|
|||
|
|
@ -52,6 +52,7 @@ fn test_std_cursor() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
#[cfg_attr(miri, ignore)] // miri does not like `tempfile`
|
||||
fn test_std_file() {
|
||||
let mut file = tempfile::tempfile().expect("Could not create temp file");
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue