CHANGELOG
Changelog for package performance_test_fixture
0.2.1 (2024-09-06)
Fix a warning when building on Ubuntu Noble. (#26) (#27) In particular, gcc 13.2 was complaining that we were accessing a pointer after a free. And that was technically true; the calls to DoNotOptimize(ptr) were after the free. Just move this before the free (when the ptr is still valid) to remove the warning, but still ensure that we don’t optimize the pointer away. (cherry picked from commit e406c3cf4a352ab3f89c43fcebe7503781be5905) Co-authored-by: Chris Lalancette <clalancette@gmail.com>
Contributors: mergify[bot]
0.2.0 (2023-04-27)
0.1.1 (2023-04-11)
Resolve use-after-free compiler warnings (#24)
Contributors: Scott K Logan
0.1.0 (2023-02-13)
0.0.9 (2022-07-25)
Mirror rolling to main
Add “cstring” to the list of includes (#19)
Contributors: Audrow Nash, Chris Lalancette
0.0.8 (2022-01-14)
Fix include order for cpplint (#16)
Contributors: Jacob Perron
0.0.7 (2021-03-18)
Record calls to calloc, update tests (#15)
Contributors: Scott K Logan
0.0.6 (2020-11-19)
Make allocation counter atomic (#13) Even if the benchmark itself isn’t threaded, the process we’re testing could be. In any case, this should prevent those shenanigans from messing up the measurement.
Add methods for pausing/resuming performance metrics (#10) * Add methods for pausing/resuming performance metrics
Add benchmarks to evaluate overhead (#11) * Add benchmarks to evaluate overhead in performance tests
Add namespace performance_test_fixture to .cpp (#9)
Contributors: Scott K Logan, brawner
0.0.5 (2020-10-21)
0.0.4 (2020-09-17)
0.0.3 (2020-09-02)
Export dependency on ament_cmake_google_benchmark (#3)
Contributors: Scott K Logan
0.0.2 (2020-07-23)
Add missing dependency on ament_cmake_google_benchmark (#2)
Contributors: Scott K Logan
0.0.1 (2020-07-23)
Initial ‘performance_test_fixture’ package (#1)
Initial commit
Contributors: Scott K Logan