- Jan 10, 2020
-
-
Igor Chorazewicz authored
-
- Jan 03, 2020
-
-
Igor Chorążewicz authored
Fix overrding TEST_DIR variable
-
Igor Chorazewicz authored
TEST_DIR is used to specify location of test artifacts. It can NOT be overwritten.
-
- Dec 31, 2019
-
-
Łukasz Stolarczuk authored
Add missing pmdk-debuginfo rpms installation
-
Łukasz Stolarczuk authored
-
Łukasz Stolarczuk authored
Merge changes from stable-1.6
-
- Dec 24, 2019
-
-
Igor Chorążewicz authored
tests: remove unnecessary #include <libpmemobj.h>
-
Igor Chorążewicz authored
Merge changes from stable-1.5
-
Igor Chorążewicz authored
allocator: remove unnecessary #include <libpmemobj.h>
-
Igor Chorazewicz authored
Including libpmemobj.h causes inclusion of all type macros which are not needed by C++.
-
Igor Chorazewicz authored
Including libpmemobj.h causes inclusion of all type macros which are not needed by C++.
-
- Dec 13, 2019
-
-
Igor Chorążewicz authored
test: remove concurrent_hash_map_pmreorder_insert_erase_mt test
-
- Dec 12, 2019
-
-
Lukasz Dorau authored
Multi-threaded tests cannot be run under pmreorder, because pmreorder does not support multi-threaded tests.
-
- Dec 04, 2019
-
-
Igor Chorążewicz authored
Vs 2019 fixes
-
- Dec 03, 2019
-
-
Łukasz Stolarczuk authored
Update comment for pool::persist(persistent_ptr&)
-
Igor Chorążewicz authored
Fix finding libpmem and libpmemobj in CMake
-
Igor Chorazewicz authored
Functions modified in this patch do not modify the object so they should be marked as const. This fixes compilation on VS 2019.
-
Igor Chorazewicz authored
to initialization list. Every const member (like table_ptr) should be initialized this way. Failing to do so may result in compilation error.
-
- Dec 02, 2019
-
-
Lukasz Dorau authored
Generate the fatal error if any of the required files is not found.
-
- Nov 29, 2019
-
-
Igor Chorazewicz authored
Former description could have been misinterpreted. Persist operation does not persist pointee but only a pointer - this change makes that clear. Ref: https://github.com/pmem/libpmemobj-cpp/issues/524
-
- Nov 19, 2019
-
-
Szymon Romik authored
Implement rehash_bucket using a transaction
-
- Nov 14, 2019
-
-
Igor Chorazewicz authored
And use it for long running tests (concurrent hash map drd tests).
-
Igor Chorazewicz authored
This test aborts application in the middle of rehash operation and checks consistency after restart.
-
- Nov 06, 2019
-
-
Igor Chorazewicz authored
This fixes problem with inconsistent state after crash. In previous implementation if application crashed in the middle of rehash it was possible that two buckets (old and new) pointed to the same element. This meant that size could be too big (some elements could be counted twice). Putting all operations which change list pointers inside of a transction solves this issue and eliminates requirement to have 'restore_after_crash' logic. set_rehashed is done outside of a transaction because otherwise: - on abort rehashed flag would be rolled back by obj using memcpy instead of std::atomic API which could be UB - some thread could check for rehashed flag and decide that rehash is not needed but after that transaction could abort and move elements back
-
Szymon Romik authored
Fail concurrent_hash_map drd/helgrind tets on non-pmem
-
- Nov 05, 2019
-
-
Igor Chorazewicz authored
Add option to enable concurrent_hash_map drd and helgrind tests. If this option is enabled and TEST_DIR points to non-pmem fail tests which require pmem and print appropriate error message.
-
- Nov 04, 2019
-
-
Igor Chorążewicz authored
Some tests and examples require clang >= 8.0
-
- Oct 29, 2019
-
-
Lukasz Dorau authored
-
Igor Chorążewicz authored
Fix installing libpmem-*.rpm
-
Igor Chorążewicz authored
Fix removing pkg-config rpm package
-
- Oct 23, 2019
-
-
Lukasz Dorau authored
Most rpm based OSes use the 'pkgconf' name, only openSUSE uses 'pkg-config'.
-
Lukasz Dorau authored
Replace 'libpmem-*.rpm' with 'libpmem*.rpm'. It fixes following errors on openSUSE: error: Failed dependencies: libpmemobj1 = 1.7-1.suse1500 is needed by libpmemobj-debug-1.7-1.suse1500.x86_64 libpmemobj1 = 1.7-1.suse1500 is needed by libpmemobj-devel-1.7-1.suse1500.x86_64 error: Failed dependencies: libpmem1 = 1.7-1.suse1500 is needed by libpmem-debug-1.7-1.suse1500.x86_64 libpmem1 = 1.7-1.suse1500 is needed by libpmem-devel-1.7-1.suse1500.x86_64
-
- Oct 22, 2019
-
-
Igor Chorążewicz authored
Change header_features constant to a function in concurrent_hash_map.
-
Igor Chorazewicz authored
-
Igor Chorążewicz authored
Add test with concurrent_hash_map and pmem::obj::string
-
- Oct 21, 2019
-
-
Igor Chorazewicz authored
-
- Oct 18, 2019
-
-
Igor Chorazewicz authored
(and not libpmem). Add FindLIBPMEM.cmake Previous behaviour was inconsistent with pkg_check_modules(LIBPMEMOBJ ...) which only looked for libpmemobj.
-
- Oct 16, 2019
-
-
Igor Chorążewicz authored
Remove using namespace from a header
-
Igor Chorążewicz authored
Install pmdk-debuginfo package
-
- Oct 14, 2019
-
-
Igor Chorążewicz authored
Merge pull request #480 from ldorau/common-fix-invalid-TRAVIS_COMMIT_RANGE-in-case-of-non-upstream-repository common: fix invalid TRAVIS_COMMIT_RANGE in case of non-upstream repository
-