File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -1598,6 +1598,9 @@ fn test_freebsd(target: &str) {
1598
1598
true
1599
1599
}
1600
1600
1601
+ // FIXME: This constant has a different value in FreeBSD 10:
1602
+ "RLIM_NLIMITS" if Some ( 10 ) == freebsd_ver => true ,
1603
+
1601
1604
// FIXME: There are deprecated - remove in a couple of releases.
1602
1605
// These constants were removed in FreeBSD 11 (svn r273250) but will
1603
1606
// still be accepted and ignored at runtime.
@@ -1634,6 +1637,14 @@ fn test_freebsd(target: &str) {
1634
1637
}
1635
1638
} ) ;
1636
1639
1640
+ cfg. skip_signededness ( move |c| {
1641
+ match c {
1642
+ // FIXME: has a different sign in FreeBSD10
1643
+ "blksize_t" if Some ( 10 ) == freebsd_ver => true ,
1644
+ _ => false ,
1645
+ }
1646
+ } ) ;
1647
+
1637
1648
cfg. volatile_item ( |i| {
1638
1649
use ctest:: VolatileItemKind :: * ;
1639
1650
match i {
You can’t perform that action at this time.
0 commit comments