diff options
Diffstat (limited to 'tests/tests.rs')
-rw-r--r-- | tests/tests.rs | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/tests.rs b/tests/tests.rs new file mode 100644 index 00000000..6515f6de --- /dev/null +++ b/tests/tests.rs @@ -0,0 +1,21 @@ +#![feature(globs)] +#![feature(macro_rules)] +#![feature(phase)] +#![feature(quote)] + +#[phase(plugin)] +extern crate bindgen; + +extern crate bindgen; +extern crate libc; +extern crate syntax; + +#[macro_escape] +mod support; + +mod test_cmath; +mod test_decl; +mod test_func; +mod test_struct; +mod test_union; +mod test_builtins; |