Skip tests for gettid on musl

It requires musl 1.2.2 or later.
This commit is contained in:
Yuki Okushi 2021-03-05 01:11:36 +09:00
parent 2de2cb74c8
commit b719be4150

View File

@ -2737,6 +2737,9 @@ fn test_linux(target: &str) {
// assume it's a int instead.
"getnameinfo" if uclibc => true,
// FIXME: This needs musl 1.2.2 or later.
"gettid" if musl => true,
_ => false,
}
});