├── LICENSE.md ├── README.md ├── osrf_testing_tools_cpp ├── CHANGELOG.rst ├── CMakeLists.txt ├── cmake │ ├── osrf_testing_tools_cpp_add_test.cmake │ ├── osrf_testing_tools_cpp_extract_and_build_googletest.cmake │ ├── osrf_testing_tools_cpp_get_googletest_versions.cmake │ └── osrf_testing_tools_cpp_require_googletest.cmake ├── include │ └── osrf_testing_tools_cpp │ │ ├── demangle.hpp │ │ ├── macros.hpp │ │ ├── memory_tools │ │ ├── gtest_quickstart.hpp │ │ ├── initialize.hpp │ │ ├── is_working.hpp │ │ ├── memory_tools.hpp │ │ ├── memory_tools_service.hpp │ │ ├── monitoring.hpp │ │ ├── register_hooks.hpp │ │ ├── stack_trace.hpp │ │ ├── testing_helpers.hpp │ │ ├── verbosity.hpp │ │ └── visibility_control.hpp │ │ └── scope_exit.hpp ├── osrf_testing_tools_cppConfig.cmake.in ├── osrf_testing_tools_cppConfigVersion.cmake.in ├── package.xml ├── src │ ├── CMakeLists.txt │ ├── memory_tools │ │ ├── CMakeLists.txt │ │ ├── count_function_occurrences_in_backtrace.hpp │ │ ├── custom_memory_functions.cpp │ │ ├── custom_memory_functions.hpp │ │ ├── dispatch_callback.hpp │ │ ├── impl │ │ │ ├── apple.cpp │ │ │ ├── linux.cpp │ │ │ ├── static_allocator.hpp │ │ │ ├── unix_common.cpp │ │ │ ├── unix_common.hpp │ │ │ └── unsupported_os.cpp │ │ ├── implementation_monitoring_override.cpp │ │ ├── implementation_monitoring_override.hpp │ │ ├── initialize.cpp │ │ ├── is_working.cpp │ │ ├── memory_tools.cpp │ │ ├── memory_tools_service.cpp │ │ ├── memory_tools_service_factory.hpp │ │ ├── memory_tools_service_impl.hpp │ │ ├── monitoring.cpp │ │ ├── print_backtrace.hpp │ │ ├── register_hooks.cpp │ │ ├── safe_fwrite.hpp │ │ ├── stack_trace.cpp │ │ ├── stack_trace_impl.hpp │ │ ├── test_count_function_in_backtrace.cpp │ │ ├── test_lib.cpp │ │ ├── testing_helpers.cpp │ │ ├── vendor │ │ │ └── bombela │ │ │ │ └── backward-cpp │ │ │ │ ├── .clang-format │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── BackwardConfig.cmake │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── backward.cpp │ │ │ │ ├── backward.hpp │ │ │ │ ├── builds.sh │ │ │ │ ├── conanfile.py │ │ │ │ ├── doc │ │ │ │ ├── nice.png │ │ │ │ ├── pretty.png │ │ │ │ └── rude.png │ │ │ │ ├── test │ │ │ │ ├── _test_main.cpp │ │ │ │ ├── rectrace.cpp │ │ │ │ ├── select_signals.cpp │ │ │ │ ├── stacktrace.cpp │ │ │ │ ├── suicide.cpp │ │ │ │ ├── test.cpp │ │ │ │ └── test.hpp │ │ │ │ └── test_package │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── conanfile.py │ │ │ │ └── main.cpp │ │ └── verbosity.cpp │ └── test_runner │ │ ├── CMakeLists.txt │ │ ├── execute_process.hpp │ │ ├── get_environment_variable.hpp │ │ ├── main.cpp │ │ ├── parse_environment_variable.hpp │ │ └── starts_with.hpp ├── test │ ├── CMakeLists.txt │ ├── cmake │ │ ├── CMakeLists.txt │ │ └── test_osrf_testing_tools_cpp_filter_versions.cmake │ ├── memory_tools │ │ ├── CMakeLists.txt │ │ └── test_memory_tools.cpp │ └── test_runner │ │ ├── CMakeLists.txt │ │ ├── assert_env_vars.cpp │ │ └── test_parse_environment_variable.cpp └── vendor │ └── google │ └── googletest │ ├── googletest-external-project-add.cmake.in │ └── release-1.14.0.tar.gz └── test_osrf_testing_tools_cpp ├── CHANGELOG.rst ├── CMakeLists.txt ├── package.xml └── test ├── test_example_memory_tools.cpp └── test_is_not_working.cpp /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/README.md -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/CHANGELOG.rst -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/CMakeLists.txt -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/cmake/osrf_testing_tools_cpp_add_test.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/cmake/osrf_testing_tools_cpp_add_test.cmake -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/cmake/osrf_testing_tools_cpp_extract_and_build_googletest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/cmake/osrf_testing_tools_cpp_extract_and_build_googletest.cmake -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/cmake/osrf_testing_tools_cpp_get_googletest_versions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/cmake/osrf_testing_tools_cpp_get_googletest_versions.cmake -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/cmake/osrf_testing_tools_cpp_require_googletest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/cmake/osrf_testing_tools_cpp_require_googletest.cmake -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/demangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/demangle.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/macros.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/macros.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/memory_tools/gtest_quickstart.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/memory_tools/gtest_quickstart.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/memory_tools/initialize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/memory_tools/initialize.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/memory_tools/is_working.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/memory_tools/is_working.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/memory_tools/memory_tools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/memory_tools/memory_tools.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/memory_tools/memory_tools_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/memory_tools/memory_tools_service.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/memory_tools/monitoring.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/memory_tools/monitoring.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/memory_tools/register_hooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/memory_tools/register_hooks.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/memory_tools/stack_trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/memory_tools/stack_trace.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/memory_tools/testing_helpers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/memory_tools/testing_helpers.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/memory_tools/verbosity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/memory_tools/verbosity.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/memory_tools/visibility_control.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/memory_tools/visibility_control.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/scope_exit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/include/osrf_testing_tools_cpp/scope_exit.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/osrf_testing_tools_cppConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/osrf_testing_tools_cppConfig.cmake.in -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/osrf_testing_tools_cppConfigVersion.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/osrf_testing_tools_cppConfigVersion.cmake.in -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/package.xml -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/CMakeLists.txt -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/CMakeLists.txt -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/count_function_occurrences_in_backtrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/count_function_occurrences_in_backtrace.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/custom_memory_functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/custom_memory_functions.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/custom_memory_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/custom_memory_functions.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/dispatch_callback.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/dispatch_callback.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/impl/apple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/impl/apple.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/impl/linux.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/impl/linux.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/impl/static_allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/impl/static_allocator.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/impl/unix_common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/impl/unix_common.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/impl/unix_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/impl/unix_common.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/impl/unsupported_os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/impl/unsupported_os.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/implementation_monitoring_override.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/implementation_monitoring_override.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/implementation_monitoring_override.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/implementation_monitoring_override.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/initialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/initialize.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/is_working.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/is_working.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/memory_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/memory_tools.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/memory_tools_service.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/memory_tools_service.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/memory_tools_service_factory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/memory_tools_service_factory.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/memory_tools_service_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/memory_tools_service_impl.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/monitoring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/monitoring.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/print_backtrace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/print_backtrace.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/register_hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/register_hooks.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/safe_fwrite.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/safe_fwrite.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/stack_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/stack_trace.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/stack_trace_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/stack_trace_impl.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/test_count_function_in_backtrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/test_count_function_in_backtrace.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/test_lib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/test_lib.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/testing_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/testing_helpers.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/.clang-format: -------------------------------------------------------------------------------- 1 | --- 2 | BasedOnStyle: LLVM 3 | -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/.gitignore: -------------------------------------------------------------------------------- 1 | build*/ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/.travis.yml -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/BackwardConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/BackwardConfig.cmake -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/CMakeLists.txt -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/LICENSE.txt -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/README.md -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/backward.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/backward.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/backward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/backward.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/builds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/builds.sh -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/conanfile.py -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/doc/nice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/doc/nice.png -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/doc/pretty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/doc/pretty.png -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/doc/rude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/doc/rude.png -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/test/_test_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/test/_test_main.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/test/rectrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/test/rectrace.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/test/select_signals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/test/select_signals.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/test/stacktrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/test/stacktrace.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/test/suicide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/test/suicide.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/test/test.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/test/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/test/test.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/test_package/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/test_package/CMakeLists.txt -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/test_package/conanfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/test_package/conanfile.py -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/test_package/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/vendor/bombela/backward-cpp/test_package/main.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/memory_tools/verbosity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/memory_tools/verbosity.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/test_runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/test_runner/CMakeLists.txt -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/test_runner/execute_process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/test_runner/execute_process.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/test_runner/get_environment_variable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/test_runner/get_environment_variable.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/test_runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/test_runner/main.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/test_runner/parse_environment_variable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/test_runner/parse_environment_variable.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/src/test_runner/starts_with.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/src/test_runner/starts_with.hpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/test/CMakeLists.txt -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/test/cmake/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/test/cmake/CMakeLists.txt -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/test/cmake/test_osrf_testing_tools_cpp_filter_versions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/test/cmake/test_osrf_testing_tools_cpp_filter_versions.cmake -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/test/memory_tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/test/memory_tools/CMakeLists.txt -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/test/memory_tools/test_memory_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/test/memory_tools/test_memory_tools.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/test/test_runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/test/test_runner/CMakeLists.txt -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/test/test_runner/assert_env_vars.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/test/test_runner/assert_env_vars.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/test/test_runner/test_parse_environment_variable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/test/test_runner/test_parse_environment_variable.cpp -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/vendor/google/googletest/googletest-external-project-add.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/vendor/google/googletest/googletest-external-project-add.cmake.in -------------------------------------------------------------------------------- /osrf_testing_tools_cpp/vendor/google/googletest/release-1.14.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/osrf_testing_tools_cpp/vendor/google/googletest/release-1.14.0.tar.gz -------------------------------------------------------------------------------- /test_osrf_testing_tools_cpp/CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/test_osrf_testing_tools_cpp/CHANGELOG.rst -------------------------------------------------------------------------------- /test_osrf_testing_tools_cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/test_osrf_testing_tools_cpp/CMakeLists.txt -------------------------------------------------------------------------------- /test_osrf_testing_tools_cpp/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/test_osrf_testing_tools_cpp/package.xml -------------------------------------------------------------------------------- /test_osrf_testing_tools_cpp/test/test_example_memory_tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/test_osrf_testing_tools_cpp/test/test_example_memory_tools.cpp -------------------------------------------------------------------------------- /test_osrf_testing_tools_cpp/test/test_is_not_working.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osrf/osrf_testing_tools_cpp/HEAD/test_osrf_testing_tools_cpp/test/test_is_not_working.cpp --------------------------------------------------------------------------------