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 702b45e commit 45f7186Copy full SHA for 45f7186
src/libstd/fs.rs
@@ -3112,8 +3112,10 @@ mod tests {
3112
3113
#[cfg(windows)]
3114
let invalid_options = 87; // ERROR_INVALID_PARAMETER
3115
- #[cfg(unix)]
+ #[cfg(all(unix, not(target_os = "vxworks")))]
3116
let invalid_options = "Invalid argument";
3117
+ #[cfg(target_os = "vxworks")]
3118
+ let invalid_options = "invalid argument";
3119
3120
// Test various combinations of creation modes and access modes.
3121
//
0 commit comments