Add test for passing/getting packed structs with ffi.

This commit is contained in:
Luqman Aden 2014-08-18 14:12:46 -04:00
parent 82fa4368ed
commit b90e2d4bc7
3 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,7 @@
-include ../tools.mk
all:
$(CC) -std=c99 test.c -c -o $(TMPDIR)/test.o
$(AR) rcs $(TMPDIR)/libtest.a $(TMPDIR)/test.o
$(RUSTC) test.rs -L $(TMPDIR)
$(call RUN,test) || exit 1

View File

@ -0,0 +1,9 @@
struct __attribute__((packed)) Foo {
char a;
short b;
char c;
};
struct Foo foo(struct Foo foo) {
return foo;
}

View File

@ -0,0 +1,30 @@
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
#[packed]
#[deriving(PartialEq, Show)]
struct Foo {
a: i8,
b: i16,
c: i8
}
#[link(name = "test", kind = "static")]
extern {
fn foo(f: Foo) -> Foo;
}
fn main() {
unsafe {
let a = Foo { a: 1, b: 2, c: 3 };
let b = foo(a);
assert_eq!(a, b);
}
}