Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Additional virtual function test #1469

Merged
merged 8 commits into from
Feb 28, 2025
29 changes: 29 additions & 0 deletions integration-tests/tests/integration_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10239,6 +10239,35 @@ fn test_issue486_multi_types() {
);
}

#[test]
#[ignore] // https://github.com/google/autocxx/issues/774
fn test_virtual_methods_additional() {
let hdr = indoc! {"
#pragma once

class A {
public:
A() {}
~A() {}
// the following line makes Test2 Opaque, and deprives it of a make_unique()
// comment next line, uncomment the one after to obtain a make_unique() for Test2
virtual int b() = 0;
// int b() { return 2; }
};

class B: public A {
public:
B() {}
~B() {}
int b() { return 3; }
};
"};
let rs = quote! {
let b = cxx::B::make_unique();
};
run_test("", hdr, rs, &["B"], &[]);
}

#[test]
/// Tests types with various forms of copy, move, and default constructors. Calls the things which
/// should be generated, and will produce C++ compile failures if other wrappers are generated.
Expand Down
Loading