Skip to content

Commit bf1ab2b

Browse files
committed
CI sparc64 glibc version does not have statx
1 parent c5b72e3 commit bf1ab2b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

libc-test/build.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1860,6 +1860,7 @@ fn test_linux(target: &str) {
18601860
let x32 = target.contains("x32");
18611861
let mips = target.contains("mips");
18621862
let mips32_musl = mips && !target.contains("64") && musl;
1863+
let sparc64 = target.contains("sparc64");
18631864

18641865
let mut cfg = ctest::TestGenerator::new();
18651866
cfg.define("_GNU_SOURCE", None);
@@ -2193,6 +2194,10 @@ fn test_linux(target: &str) {
21932194
// https://github.com/gnzlbg/ctest/issues/68
21942195
"lio_listio" if musl => true,
21952196

2197+
// FIXME: the glibc version used by the Sparc64 build jobs
2198+
// which use Debian 10.0 is too old.
2199+
"statx" if sparc64 => true,
2200+
21962201
_ => false,
21972202
}
21982203
});

0 commit comments

Comments
 (0)