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" 13ctest = "0.2" 14 15[features] 16default = [ "std" ] 17std = [ "libc/std" ] 18align = [ "libc/align" ] 19extra_traits = [ "libc/extra_traits" ] 20 21[[test]] 22name = "main" 23path = "test/main.rs" 24harness = false 25 26[[test]] 27name = "linux-fcntl" 28path = "test/linux_fcntl.rs" 29harness = false 30 31[[test]] 32name = "linux-ipv6" 33path = "test/linux_ipv6.rs" 34harness = false 35 36[[test]] 37name = "linux-elf" 38path = "test/linux_elf.rs" 39harness = false 40 41[[test]] 42name = "linux-strerror_r" 43path = "test/linux_strerror_r.rs" 44harness = false 45 46[[test]] 47name = "linux-termios" 48path = "test/linux_termios.rs" 49harness = false 50 51[[test]] 52name = "cmsg" 53path = "test/cmsg.rs" 54harness = true 55 56[[test]] 57name = "errqueue" 58path = "test/errqueue.rs" 59harness = true 60