Skip to content
Snippets Groups Projects
Commit bf1ab2b6 authored by gnzlbg's avatar gnzlbg
Browse files

CI sparc64 glibc version does not have statx

parent c5b72e37
No related branches found
No related tags found
No related merge requests found
...@@ -1860,6 +1860,7 @@ fn test_linux(target: &str) { ...@@ -1860,6 +1860,7 @@ fn test_linux(target: &str) {
let x32 = target.contains("x32"); let x32 = target.contains("x32");
let mips = target.contains("mips"); let mips = target.contains("mips");
let mips32_musl = mips && !target.contains("64") && musl; let mips32_musl = mips && !target.contains("64") && musl;
let sparc64 = target.contains("sparc64");
let mut cfg = ctest::TestGenerator::new(); let mut cfg = ctest::TestGenerator::new();
cfg.define("_GNU_SOURCE", None); cfg.define("_GNU_SOURCE", None);
...@@ -2193,6 +2194,10 @@ fn test_linux(target: &str) { ...@@ -2193,6 +2194,10 @@ fn test_linux(target: &str) {
// https://github.com/gnzlbg/ctest/issues/68 // https://github.com/gnzlbg/ctest/issues/68
"lio_listio" if musl => true, "lio_listio" if musl => true,
// FIXME: the glibc version used by the Sparc64 build jobs
// which use Debian 10.0 is too old.
"statx" if sparc64 => true,
_ => false, _ => false,
} }
}); });
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment