Skip to content

Support std::unique_ptr. #65878

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
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions test/Interop/Cxx/stdlib/Inputs/module.modulemap
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,8 @@ module StdPair {
header "std-pair.h"
requires cplusplus
}

module StdUniquePtr {
header "std-unique-ptr.h"
requires cplusplus
}
29 changes: 29 additions & 0 deletions test/Interop/Cxx/stdlib/Inputs/std-unique-ptr.h
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
42 changes: 42 additions & 0 deletions test/Interop/Cxx/stdlib/std-unique-ptr.swift
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 -Xfrontend -enable-experimental-move-only)
//
// 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
Comment on lines +7 to +12
Copy link
Contributor

Choose a reason for hiding this comment

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

Could you please change this to import CxxStdlib unconditionally?


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()