Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Unity-Technologies/bdwgc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tests
AgeCommit message (Expand)Author
2018-05-15Remove stubborn objects allocation code completelyIvan Maidanski
2018-05-08Fix tests for GC compiled with MANUAL_VDBIvan Maidanski
2018-05-07Turn on incremental collection in gctest also if DEFAULT_VDB or MANUAL_VDBIvan Maidanski
2018-05-04Workaround 'class C does not have a copy constructor' cppcheck warningIvan Maidanski
2018-04-24Expose API to control rate and max prior attempts of collect_a_littleJonathan Chambers
2018-04-23Expose API to control the minimum bytes allocated before a GC occursJonathan Chambers
2018-04-11Avoid 'Unexpected heap growth' in 64-bit multi-threaded gctest if n_tests=1Ivan Maidanski
2018-04-11Allow subthreadcreate_test to be compiled with zero NTHREADSIvan Maidanski
2018-03-09Avoid potential race in SET_MARK_BIT_EXIT_IF_SET if parallel markingIvan Maidanski
2018-03-07Workaround Haiku pthread_join failure in subthreadcreate_testIvan Maidanski
2018-02-28Move include gcconfig.h ouf of extern 'C' blockIvan Maidanski
2018-02-28Replace conditional extern 'C' blocks begin/end with EXTERN_C_BEGIN/ENDIvan Maidanski
2018-02-26Always include gc_atomic_ops.h unless threads are disabledIvan Maidanski
2018-02-14Fix 'implicit conversion from size_t to int changes value' clang warningIvan Maidanski
2018-02-14New API function (get_size_map_at) to get content of size_map tableIvan Maidanski
2018-02-09Fix 'anonymous type with no linkage used to declare variable' C++ errorIvan Maidanski
2018-02-09Replace GC_MALLOC(sizeof T) with GC_NEW(T) in testsIvan Maidanski
2018-02-08Convert remaining GC tests to valid C++ codeIvan Maidanski
2018-02-08Compile some GC tests as C++ to test extern 'C' in header filesJay Krell
2018-02-08Put GC internal function prototypes in tests into extern 'C' blockIvan Maidanski
2018-02-05Convert tests to valid C++ codeJay Krell
2018-01-24Use HOST_ANDROID define instead of PLATFORM_ANDROIDZoltan Varga
2018-01-12Add check that gc_cpp operator delete is called (test_cpp)Ivan Maidanski
2017-12-17Remove duplicate check whether MPROTECT_VDB is definedIvan Maidanski
2017-12-14Do not call set_handle_fork(1) in gctest if pthread_atfork not supportedIvan Maidanski
2017-12-12Use same macro (NTHREADS) across all tests to specify number of threadsIvan Maidanski
2017-12-04Turn on incremental mode (if available) in disclaim_testIvan Maidanski
2017-11-29Do not enable mprotect-based incremental mode if unmapping is on (gctest)Ivan Maidanski
2017-11-29Eliminate 'value exceeds maximum object size' GCC warning in huge_testIvan Maidanski
2017-11-29Remove some redundant macro definitions from gc_atomic_ops.hIvan Maidanski
2017-11-29Adjust AO_HAVE_x check to match AO_fetch_and_add primitive variant usedIvan Maidanski
2017-11-29Prevent test_atomic_ops link fail if AO_nop_full is not definedIvan Maidanski
2017-11-23Avoid 'Unexpected heap growth' fail if compiled by GCC with ASan (gctest)Ivan Maidanski
2017-11-10Add basic calculation of the total full-collection timePaul Bone
2017-11-03Fix double lock in a_set(f(a_get())) expression in gctestIvan Maidanski
2017-11-03Fix data race in a list referenced by A.aa (gctest)Ivan Maidanski
2017-11-03Avoid data race in finalized_count (gctest)Ivan Maidanski
2017-11-03Eliminate TSan warning about A.dummy in gctestIvan Maidanski
2017-11-03Revert 'Eliminate TSan warnings (false positives) in gctest'Ivan Maidanski
2017-11-02Eliminate TSan warnings (false positives) in gctestIvan Maidanski
2017-10-25Do not use system clock consistently if NO_CLOCKIvan Maidanski
2017-10-16New API function (GC_is_init_called) to check if BDWGC is initializedIvan Maidanski
2017-10-13Test GC initialization from non-main thread on FreeBSD and NetBSDIvan Maidanski
2017-10-09Eliminate TSan warnings for all counters and A.aa variable (gctest)Ivan Maidanski
2017-10-08Print realloc_count in gctestIvan Maidanski
2017-10-08Fix missing atomic_count and realloc_count incrementation in gctestIvan Maidanski
2017-10-06Eliminate TSan warnings for print_proc variables assignment (gctest)Ivan Maidanski
2017-09-28Fix data race in collectable_count (gctest)Ivan Maidanski
2017-09-28Fix missing [un]collectable_count increments in gctestIvan Maidanski
2017-09-20Fix thread id leaks in subthread_create and threadkey_testIvan Maidanski