1[package] 2name = "libc-test" 3version = "0.1.0" 4authors = ["Alex Crichton <[email protected]>"] 5build = "build.rs" 6 7[dependencies.libc] 8path = ".." 9default-features = false 10 11[build-dependencies] 12cc = "=1.0.52" 13# FIXME: Use fork ctest until the maintainer gets back. 14ctest2 = "0.3" 15 16[features] 17default = [ "std" ] 18std = [ "libc/std" ] 19align = [ "libc/align" ] 20extra_traits = [ "libc/extra_traits" ] 21 22[[test]] 23name = "main" 24path = "test/main.rs" 25harness = false 26 27[[test]] 28name = "linux-fcntl" 29path = "test/linux_fcntl.rs" 30harness = false 31 32[[test]] 33name = "linux-ipv6" 34path = "test/linux_ipv6.rs" 35harness = false 36 37[[test]] 38name = "linux-elf" 39path = "test/linux_elf.rs" 40harness = false 41 42[[test]] 43name = "linux-strerror_r" 44path = "test/linux_strerror_r.rs" 45harness = false 46 47[[test]] 48name = "linux-termios" 49path = "test/linux_termios.rs" 50harness = false 51 52[[test]] 53name = "cmsg" 54path = "test/cmsg.rs" 55harness = true 56 57[[test]] 58name = "errqueue" 59path = "test/errqueue.rs" 60harness = true 61