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]
|
|
|
|
default = [ "use_std" ]
|
|
|
|
use_std = [ "libc/use_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-02-01 06:34:17 +01:00
|
|
|
[[test]]
|
|
|
|
name = "cmsg"
|
|
|
|
path = "test/cmsg.rs"
|
|
|
|
harness = true
|