1[package] 2name = "libc-test" 3version = "0.2.155" 4edition = "2021" 5authors = ["The Rust Project Developers"] 6license = "MIT OR Apache-2.0" 7build = "build.rs" 8publish = false 9repository = "https://github.com/rust-lang/libc" 10homepage = "https://github.com/rust-lang/libc" 11description = """ 12A test crate for the libc crate. 13""" 14 15[dependencies.libc] 16path = ".." 17version = "0.2.165" 18default-features = false 19 20[build-dependencies] 21cc = "1.0.83" 22# FIXME: Use fork ctest until the maintainer gets back. 23ctest2 = "0.4.3" 24 25[features] 26default = ["std"] 27std = ["libc/std"] 28align = ["libc/align"] 29extra_traits = ["libc/extra_traits"] 30 31[[test]] 32name = "main" 33path = "test/main.rs" 34harness = false 35 36[[test]] 37name = "linux-fcntl" 38path = "test/linux_fcntl.rs" 39harness = false 40 41[[test]] 42name = "linux-if-arp" 43path = "test/linux_if_arp.rs" 44harness = false 45 46[[test]] 47name = "linux-ipv6" 48path = "test/linux_ipv6.rs" 49harness = false 50 51[[test]] 52name = "linux-elf" 53path = "test/linux_elf.rs" 54harness = false 55 56[[test]] 57name = "linux-strerror_r" 58path = "test/linux_strerror_r.rs" 59harness = false 60 61[[test]] 62name = "linux-termios" 63path = "test/linux_termios.rs" 64harness = false 65 66[[test]] 67name = "cmsg" 68path = "test/cmsg.rs" 69harness = true 70 71[[test]] 72name = "makedev" 73path = "test/makedev.rs" 74harness = true 75 76[[test]] 77name = "errqueue" 78path = "test/errqueue.rs" 79harness = true 80 81[[test]] 82name = "sigrt" 83path = "test/sigrt.rs" 84harness = true 85 86[[test]] 87name = "semver" 88path = "test/semver.rs" 89harness = false 90