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.166" 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" 24regex = "1.11.1" 25 26[features] 27default = ["std"] 28std = ["libc/std"] 29align = ["libc/align"] 30extra_traits = ["libc/extra_traits"] 31 32[[test]] 33name = "main" 34path = "test/main.rs" 35harness = false 36 37[[test]] 38name = "linux-fcntl" 39path = "test/linux_fcntl.rs" 40harness = false 41 42[[test]] 43name = "linux-if-arp" 44path = "test/linux_if_arp.rs" 45harness = false 46 47[[test]] 48name = "linux-ipv6" 49path = "test/linux_ipv6.rs" 50harness = false 51 52[[test]] 53name = "linux-elf" 54path = "test/linux_elf.rs" 55harness = false 56 57[[test]] 58name = "linux-strerror_r" 59path = "test/linux_strerror_r.rs" 60harness = false 61 62[[test]] 63name = "linux-termios" 64path = "test/linux_termios.rs" 65harness = false 66 67[[test]] 68name = "cmsg" 69path = "test/cmsg.rs" 70harness = true 71 72[[test]] 73name = "makedev" 74path = "test/makedev.rs" 75harness = true 76 77[[test]] 78name = "errqueue" 79path = "test/errqueue.rs" 80harness = true 81 82[[test]] 83name = "sigrt" 84path = "test/sigrt.rs" 85harness = true 86 87[[test]] 88name = "semver" 89path = "test/semver.rs" 90harness = false 91