Skip to content

Commit

Permalink
Add test for passing/getting packed structs with ffi.
Browse files Browse the repository at this point in the history
  • Loading branch information
luqmana committed Aug 18, 2014
1 parent 82fa436 commit b90e2d4
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/test/run-make/extern-fn-with-packed-struct/Makefile
@@ -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
9 changes: 9 additions & 0 deletions src/test/run-make/extern-fn-with-packed-struct/test.c
@@ -0,0 +1,9 @@
struct __attribute__((packed)) Foo {
char a;
short b;
char c;
};

struct Foo foo(struct Foo foo) {
return foo;
}
30 changes: 30 additions & 0 deletions src/test/run-make/extern-fn-with-packed-struct/test.rs
@@ -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);
}
}

4 comments on commit b90e2d4

@bors
Copy link
Contributor

@bors bors commented on b90e2d4 Aug 19, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

saw approval from alexcrichton
at luqmana@b90e2d4

@bors
Copy link
Contributor

@bors bors commented on b90e2d4 Aug 19, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging luqmana/rust/psfo = b90e2d4 into auto

@bors
Copy link
Contributor

@bors bors commented on b90e2d4 Aug 19, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

luqmana/rust/psfo = b90e2d4 merged ok, testing candidate = a01a3692

Please sign in to comment.