2015-09-10 07:46:19 +02:00
|
|
|
[package]
|
|
|
|
name = "libc-test"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>"]
|
|
|
|
build = "build.rs"
|
|
|
|
|
2018-02-27 17:36:45 +01:00
|
|
|
[dependencies.libc]
|
|
|
|
path = ".."
|
|
|
|
default-features = false
|
2015-09-10 07:46:19 +02:00
|
|
|
|
|
|
|
[build-dependencies]
|
2019-02-01 06:34:17 +01:00
|
|
|
cc = "1.0"
|
2019-02-12 16:52:06 +01:00
|
|
|
ctest = "0.2"
|
2017-08-10 19:33:19 +02:00
|
|
|
|
2018-02-27 17:36:45 +01:00
|
|
|
[features]
|
2019-05-24 13:22:03 +02:00
|
|
|
default = [ "std" ]
|
|
|
|
std = [ "libc/std" ]
|
2018-07-20 11:15:25 +02:00
|
|
|
align = [ "libc/align" ]
|
2019-01-31 03:18:00 +01:00
|
|
|
extra_traits = [ "libc/extra_traits" ]
|
2018-02-27 17:36:45 +01:00
|
|
|
|
2017-08-10 19:33:19 +02:00
|
|
|
[[test]]
|
|
|
|
name = "main"
|
|
|
|
path = "test/main.rs"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "linux-fcntl"
|
|
|
|
path = "test/linux_fcntl.rs"
|
|
|
|
harness = false
|
2018-02-27 17:36:45 +01:00
|
|
|
|
2019-05-24 14:57:28 +02:00
|
|
|
[[test]]
|
|
|
|
name = "linux-ipv6"
|
|
|
|
path = "test/linux_ipv6.rs"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "linux-elf"
|
|
|
|
path = "test/linux_elf.rs"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "linux-strerror_r"
|
|
|
|
path = "test/linux_strerror_r.rs"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[[test]]
|
|
|
|
name = "linux-termios"
|
|
|
|
path = "test/linux_termios.rs"
|
|
|
|
harness = false
|
|
|
|
|
2019-02-01 06:34:17 +01:00
|
|
|
[[test]]
|
|
|
|
name = "cmsg"
|
|
|
|
path = "test/cmsg.rs"
|
|
|
|
harness = true
|