File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,8 @@ mod test {
56
56
"ostree-commit": "b2ea6159d6274e1bbbb49aa0ef093eda5d53a75c8a793dbe184f760ed64dc862"
57
57
}"## ;
58
58
59
+ // Waiting on https://github.com/rust-lang/rust/pull/125692
60
+ #[ cfg( not( target_env = "musl" ) ) ]
59
61
#[ test]
60
62
fn test_parse_from_root_empty ( ) -> Result < ( ) > {
61
63
// Verify we're a no-op in an empty root
@@ -65,6 +67,8 @@ mod test {
65
67
Ok ( ( ) )
66
68
}
67
69
70
+ // Waiting on https://github.com/rust-lang/rust/pull/125692
71
+ #[ cfg( not( target_env = "musl" ) ) ]
68
72
#[ test]
69
73
fn test_parse_from_root ( ) -> Result < ( ) > {
70
74
let root: & tempfile:: TempDir = & tempfile:: tempdir ( ) ?;
@@ -77,6 +81,8 @@ mod test {
77
81
Ok ( ( ) )
78
82
}
79
83
84
+ // Waiting on https://github.com/rust-lang/rust/pull/125692
85
+ #[ cfg( not( target_env = "musl" ) ) ]
80
86
#[ test]
81
87
fn test_parse_from_root_linked ( ) -> Result < ( ) > {
82
88
let root: & tempfile:: TempDir = & tempfile:: tempdir ( ) ?;
Original file line number Diff line number Diff line change @@ -624,6 +624,8 @@ mod tests {
624
624
assert ! ( !dp. exists( ".btmp.b" ) ?) ;
625
625
Ok ( ( ) )
626
626
}
627
+ // Waiting on https://github.com/rust-lang/rust/pull/125692
628
+ #[ cfg( not( target_env = "musl" ) ) ]
627
629
#[ test]
628
630
fn test_apply_with_file ( ) -> Result < ( ) > {
629
631
let tmpd = tempfile:: tempdir ( ) ?;
You can’t perform that action at this time.
0 commit comments