summaryrefslogtreecommitdiff
path: root/libc-test
diff options
context:
space:
mode:
authorgnzlbg <gonzalobg88@gmail.com>2019-05-22 18:11:21 +0200
committergnzlbg <gonzalobg88@gmail.com>2019-05-23 16:29:28 +0200
commit003c04d95281582aa8cf7b69554448cc9380c112 (patch)
treef06a539a0f3b2a7095d69879ca302196f22978a4 /libc-test
parent4774fc1c9fec44d49ebe763eadc87f00d3425d9d (diff)
downloadrust-libc-003c04d95281582aa8cf7b69554448cc9380c112.tar.gz
[breaking change] fix types of stat/stat64 structs, atime/mtime/ctime fields on Android
Diffstat (limited to 'libc-test')
-rw-r--r--libc-test/build.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/libc-test/build.rs b/libc-test/build.rs
index 5d915e1341..4fd21721b9 100644
--- a/libc-test/build.rs
+++ b/libc-test/build.rs
@@ -1351,6 +1351,7 @@ fn test_android(target: &str) {
s if s.ends_with("_nsec") && struct_.starts_with("stat") => {
s.to_string()
}
+ "u64" if struct_ == "epoll_event" => "data.u64".to_string(),
s => s.to_string(),
}
});