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