1[package] 2name = "libc-test" 3version = "0.1.0" 4authors = ["Alex Crichton <[email protected]>"] 5build = "build.rs" 6 7[dependencies] 8libc = { path = ".." } 9 10[build-dependencies] 11ctest = { git = "https://github.com/alexcrichton/ctest" } 12 13[[test]] 14name = "main" 15path = "test/main.rs" 16harness = false 17 18[[test]] 19name = "linux-fcntl" 20path = "test/linux_fcntl.rs" 21harness = false 22