Skip to content

Commit 8570e62

Browse files
committed
add exclusions to testing the *grent calls cause CI is on API 24 and these are from API 26
1 parent 2897333 commit 8570e62

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

libc-test/build.rs

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2015,6 +2015,15 @@ fn test_android(target: &str) {
20152015
// Added in API level 28, but some tests use level 24.
20162016
"aligned_alloc" => true,
20172017

2018+
// Added in API level 26, but some tests use level 24.
2019+
"getgrent" => true,
2020+
2021+
// Added in API level 26, but some tests use level 24.
2022+
"setgrent" => true,
2023+
2024+
// Added in API level 26, but some tests use level 24.
2025+
"endgrent" => true,
2026+
20182027
// FIXME: bad function pointers:
20192028
"isalnum" | "isalpha" | "iscntrl" | "isdigit" | "isgraph" | "islower" | "isprint"
20202029
| "ispunct" | "isspace" | "isupper" | "isxdigit" | "isblank" | "tolower"

0 commit comments

Comments
 (0)