add failing test cases for wrong Rust crate types per @TingPing

pull/1922/head
Adam C. Foltzer 8 years ago
parent 69b18cf7e9
commit f4d13e180f
  1. 0
      test cases/failing/55 wrong shared crate type/foo.rs
  2. 3
      test cases/failing/55 wrong shared crate type/meson.build
  3. 0
      test cases/failing/56 wrong static crate type/foo.rs
  4. 3
      test cases/failing/56 wrong static crate type/meson.build

@ -0,0 +1,3 @@
project('test', 'rust')
shared_library('test', 'foo.rs', rust_crate_type : 'staticlib')

@ -0,0 +1,3 @@
project('test', 'rust')
static_library('test', 'foo.rs', rust_crate_type : 'cdylib')
Loading…
Cancel
Save