summaryrefslogtreecommitdiff
path: root/libbindgen/tests/tests.rs
AgeCommit message (Collapse)Author
2017-01-23Unify under the `bindgen` name.Emilio Cobos Álvarez
2016-12-23libbindgen: run `cargo fmt`.Emilio Cobos Álvarez
2016-12-09Use a shared workspace for bindgen, libbindgen, and test_expectationsNick Fitzgerald
2016-11-16Auto merge of #260 - emilio:macro-str, r=fitzgenbors-servo
Constant variable improvements. Fixes #256. r? @fitzgen
2016-11-16libbindgen: Make logging optionalJeff Waugh
Note that the log crate isn't completely banished, as other is required by other dependencies.
2016-11-16Multiple constant generation evaluation improvements.Emilio Cobos Álvarez
2016-11-16Generate a separate test function for every headerJeff Waugh
- Header tests can now be run selectively, e.g. `cargo test union` will test all headers with 'union' in the file name. - The list of test functions is generated by `build.rs`, so never needs to be updated. - Clever approach suggested by @fitzgen.
2016-11-16Transition to libbindgen sub-crateJeff Waugh
- The root crate is the `bindgen` binary - Rust-ify the test suite, no more subprocesses! - Update Travis config to test both crates