@@ -69,7 +69,11 @@ fn du_basics(s: &str) {
6969 assert_eq ! ( s, answer) ;
7070}
7171
72- #[ cfg( all( not( target_vendor = "apple" ) , not( target_os = "windows" ) ) ) ]
72+ #[ cfg( all(
73+ not( target_vendor = "apple" ) ,
74+ not( target_os = "windows" ) ,
75+ not( target_os = "openbsd" )
76+ ) ) ]
7377fn du_basics ( s : & str ) {
7478 let answer = concat ! (
7579 "8\t ./subdir/deeper/deeper_dir\n " ,
@@ -119,7 +123,8 @@ fn du_basics_subdir(s: &str) {
119123#[ cfg( all(
120124 not( target_vendor = "apple" ) ,
121125 not( target_os = "windows" ) ,
122- not( target_os = "freebsd" )
126+ not( target_os = "freebsd" ) ,
127+ not( target_os = "openbsd" )
123128) ) ]
124129fn du_basics_subdir ( s : & str ) {
125130 // MS-WSL linux has altered expected output
@@ -447,7 +452,8 @@ fn du_d_flag(s: &str) {
447452#[ cfg( all(
448453 not( target_vendor = "apple" ) ,
449454 not( target_os = "windows" ) ,
450- not( target_os = "freebsd" )
455+ not( target_os = "freebsd" ) ,
456+ not( target_os = "openbsd" )
451457) ) ]
452458fn du_d_flag ( s : & str ) {
453459 // MS-WSL linux has altered expected output
@@ -520,7 +526,8 @@ fn du_dereference(s: &str) {
520526#[ cfg( all(
521527 not( target_vendor = "apple" ) ,
522528 not( target_os = "windows" ) ,
523- not( target_os = "freebsd" )
529+ not( target_os = "freebsd" ) ,
530+ not( target_os = "openbsd" )
524531) ) ]
525532fn du_dereference ( s : & str ) {
526533 // MS-WSL linux has altered expected output
0 commit comments