summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorBryant Mairs <bryant@mai.rs>2017-08-10 10:33:19 -0700
committerBryant Mairs <bryant@mai.rs>2017-08-20 20:52:43 -0700
commit2e11d9e14ce1a2cf0353363e4239a9d1fa147694 (patch)
treeeff03a0038c5e825eaadfb4df61a292bf5247177 /README.md
parent13478d09294c03bbbdc8a50a346a8df837e14d72 (diff)
downloadrust-libc-2e11d9e14ce1a2cf0353363e4239a9d1fa147694.tar.gz
Add more fcntl and seal constants for Android/Linux
We now create an additional binary `linux_fcntl` for testing this since there are header conflicts when including all necessary headers. This binary is run on all platforms even though it's empty on all non- Android/non-Linux platforms. Testing has been switched from a custom binary to using a runner-less test (or pair of tests). This means that for local development a simple `cd libc-test && cargo test` will run all the tests. CI has also been updated here to reflect that.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 67535d211e..7b2d778ea1 100644
--- a/README.md
+++ b/README.md
@@ -93,7 +93,7 @@ With that in mind, the steps for adding a new API are:
We have two automated tests running on [Travis](https://travis-ci.org/rust-lang/libc):
1. [`libc-test`](https://github.com/alexcrichton/ctest)
- - `cd libc-test && cargo run`
+ - `cd libc-test && cargo test`
- Use the `skip_*()` functions in `build.rs` if you really need a workaround.
2. Style checker
- `rustc ci/style.rs && ./style src`