Run all tests manually

Running a test per thread really doesn't play well with QEMU emulation, so just
make it easy on ourselves and don't run threads.
3 files changed
tree: 8df1b2fc9d88a2753d2cd3d7b21ba2a2d331dc7c
  1. ci/
  2. libc-test/
  3. src/
  4. .gitignore
  5. .gitmodules
  6. .travis.yml
  7. appveyor.yml
  8. Cargo.toml
  9. Dockerfile
  10. LICENSE-APACHE
  11. LICENSE-MIT
  12. README.md
README.md

libc

A Rust library with native bindings to the types and functions commonly found on various systems, including libc.

Build Status

Documentation

Usage

Add this to your Cargo.toml:

[dependencies]

libc = "0.1"

and this to your crate root:

extern crate libc;