-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Support std::unique_ptr
.
#65577
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
Closed
Closed
Support std::unique_ptr
.
#65577
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
fe90677
[cxx-interop] Import move only types even when `-enable-experimental-…
zoecarver 258bca4
[cxx-interop] Add tests for `std::unique_ptr`.
zoecarver 6587a8b
[tests][cxx-interop] Fix straggling test.
zoecarver 335105d
no merge: add some debugging for linux.
zoecarver File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#ifndef TEST_INTEROP_CXX_STDLIB_INPUTS_STD_UNIQUE_PTR_H | ||
#define TEST_INTEROP_CXX_STDLIB_INPUTS_STD_UNIQUE_PTR_H | ||
|
||
#include <memory> | ||
|
||
std::unique_ptr<int> makeInt() { | ||
return std::make_unique<int>(42); | ||
} | ||
|
||
std::unique_ptr<int[]> makeArray() { | ||
int *array = new int[3]; | ||
array[0] = 1; | ||
array[1] = 2; | ||
array[2] = 3; | ||
return std::unique_ptr<int[]>(array); | ||
} | ||
|
||
static bool dtorCalled = false; | ||
struct HasDtor { | ||
~HasDtor() { | ||
dtorCalled = true; | ||
} | ||
}; | ||
|
||
std::unique_ptr<HasDtor> makeDtor() { | ||
return std::make_unique<HasDtor>(); | ||
} | ||
|
||
#endif // TEST_INTEROP_CXX_STDLIB_INPUTS_STD_UNIQUE_PTR_H |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
// RUN: %target-run-simple-swift(-I %S/Inputs -Xfrontend -enable-experimental-cxx-interop) | ||
// | ||
// REQUIRES: executable_test | ||
|
||
import StdlibUnittest | ||
import StdUniquePtr | ||
#if os(Linux) | ||
import CxxStdlib | ||
// FIXME: import CxxStdlib.string once libstdc++ is split into submodules. | ||
#else | ||
import CxxStdlib.memory | ||
#endif | ||
|
||
var StdUniquePtrTestSuite = TestSuite("StdUniquePtr") | ||
|
||
StdUniquePtrTestSuite.test("int") { | ||
let u = makeInt() | ||
expectEqual(u.pointee, 42) | ||
} | ||
|
||
StdUniquePtrTestSuite.test("array") { | ||
var u = makeArray() | ||
expectEqual(u[0], 1) | ||
// Over consume: | ||
// expectEqual(u[1], 2) | ||
// expectEqual(u[2], 3) | ||
// Crash: | ||
// u[0] = 10 | ||
// expectEqual(u[0], 10) | ||
} | ||
|
||
StdUniquePtrTestSuite.test("custom dtor") { | ||
expectEqual(dtorCalled, false) | ||
let c = { | ||
_ = makeDtor() | ||
} | ||
c() | ||
expectEqual(dtorCalled, true) | ||
} | ||
|
||
runAllTests() | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's not going to happen. Can you just import CxxStdlib?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have a bunch of existing tests that do this, I'll update them to just import CxxStdlib.