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

Run ThemisPP tests with C++14 and C++17 #572

Merged
merged 3 commits into from
Dec 24, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 2 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ jobs:
- run: make test
- run: make clean_themispp_test && CFLAGS="-std=c++03" make themispp_test && make test_cpp
- run: make clean_themispp_test && CFLAGS="-std=c++11" make themispp_test && make test_cpp
- run: make clean_themispp_test && CFLAGS="-std=c++14" make themispp_test && make test_cpp
- run: make clean_themispp_test && CFLAGS="-std=c++17" make themispp_test && make test_cpp
- run: make test_python
- run: make test_ruby
- run: make test_go
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ _Code:_
- **C++**

- New function `themispp::gen_sym_key()` can be used to generate symmetric keys for Secure Cell ([#561](https://github.com/cossacklabs/themis/pull/561)).
- Updated test suite to test C++14 and C++17 (in addition to C++11 and C++03) ([#572](https://github.com/cossacklabs/themis/pull/572)).

- **Go**

Expand Down