Skip to content

Commit

Permalink
Adjust test and mark ignored.
Browse files Browse the repository at this point in the history
  • Loading branch information
adetaylor committed Sep 24, 2024
1 parent a341f07 commit 3023be0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion integration-tests/tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12387,14 +12387,17 @@ fn test_cpp_union_pod() {
}

#[test]
#[ignore] // https://github.com/google/autocxx/issues/1382
fn test_override_typedef_fn() {
let hdr = indoc! {"
#include <map>
#include <memory>
typedef std::shared_ptr<std::map<int, int>> Arg;
// bindgen currently outputs pub type Arg = u8;
class Foo {
public:
void *createFoo(const int);
void *createFoo(const int, Arg &arg);
// void *createFoo(const int, std::shared_ptr<std::map<int, int>> &arg); // works
};
"};
run_test("", hdr, quote! {}, &["Foo"], &[]);
Expand Down

0 comments on commit 3023be0

Please sign in to comment.