Skip to content
Merged
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

### Fixed
- Fix unit test build in C++11 ([#442](https://github.com/stack-of-tasks/eigenpy/pull/442))

## [3.4.0] - 2024-02-26

### Added
Expand Down
11 changes: 8 additions & 3 deletions unittest/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,10 @@ add_lib_unit_test(std_vector)
add_lib_unit_test(std_array)
add_lib_unit_test(std_pair)
add_lib_unit_test(user_struct)
add_lib_unit_test(std_unique_ptr)

if(CMAKE_CXX_STANDARD GREATER 14 AND CMAKE_CXX_STANDARD LESS 98)
add_lib_unit_test(std_unique_ptr)
endif()

function(config_test test tagname opttype)
set(MODNAME ${test}_${tagname})
Expand Down Expand Up @@ -137,8 +140,10 @@ add_python_unit_test("py-std-pair" "unittest/python/test_std_pair.py"
add_python_unit_test("py-user-struct" "unittest/python/test_user_struct.py"
"unittest")

add_python_unit_test("py-std-unique-ptr"
"unittest/python/test_std_unique_ptr.py" "unittest")
if(CMAKE_CXX_STANDARD GREATER 14 AND CMAKE_CXX_STANDARD LESS 98)
add_python_unit_test("py-std-unique-ptr"
"unittest/python/test_std_unique_ptr.py" "unittest")
endif()

add_python_unit_test("py-bind-virtual" "unittest/python/test_bind_virtual.py"
"unittest")
Expand Down