├── .gitattributes ├── .github └── workflows │ ├── docs-ci.yml │ └── pypi-release.yml ├── .gitignore ├── .readthedocs.yml ├── AUTHORS.rst ├── CHANGELOG.rst ├── CODE_OF_CONDUCT.rst ├── CONTRIBUTING.rst ├── MANIFEST.in ├── Makefile ├── NOTICE ├── README-build-tracing.rst ├── README.rst ├── TODO.txt ├── apache-2.0.LICENSE ├── azure-pipelines.yml ├── configure ├── configure.bat ├── docs ├── Makefile ├── example_outputs │ ├── graph_bash.pdf │ ├── graph_cups.pdf │ ├── graph_patchelf.pdf │ └── graph_strace.pdf ├── make.bat ├── scripts │ ├── doc8_style_check.sh │ └── sphinx_build_link_check.sh ├── source │ ├── _static │ │ └── theme_overrides.css │ ├── conf.py │ ├── contribute │ │ └── contrib_doc.rst │ ├── index.rst │ └── skeleton-usage.rst └── tutorial │ ├── build-patchelf.rst │ └── patchelf-build-graph.pdf ├── etc ├── ci │ ├── azure-container-deb.yml │ ├── azure-container-rpm.yml │ ├── azure-posix.yml │ ├── azure-win.yml │ ├── install_sudo.sh │ ├── macports-ci │ ├── macports-ci.ABOUT │ └── mit.LICENSE └── scripts │ ├── README.rst │ ├── check_thirdparty.py │ ├── fetch_thirdparty.py │ ├── gen_pypi_simple.py │ ├── gen_pypi_simple.py.ABOUT │ ├── gen_pypi_simple.py.NOTICE │ ├── gen_requirements.py │ ├── gen_requirements_dev.py │ ├── requirements.txt │ ├── test_utils_pip_compatibility_tags.py │ ├── test_utils_pip_compatibility_tags.py.ABOUT │ ├── test_utils_pypi_supported_tags.py │ ├── test_utils_pypi_supported_tags.py.ABOUT │ ├── utils_dejacode.py │ ├── utils_pip_compatibility_tags.py │ ├── utils_pip_compatibility_tags.py.ABOUT │ ├── utils_pypi_supported_tags.py │ ├── utils_pypi_supported_tags.py.ABOUT │ ├── utils_requirements.py │ ├── utils_thirdparty.py │ └── utils_thirdparty.py.ABOUT ├── pyproject.toml ├── requirements-dev.txt ├── requirements.txt ├── setup.cfg ├── setup.py ├── src └── tracecode │ ├── __init__.py │ ├── _vendor │ ├── __init__.py │ ├── altgraph-0.17.3.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ ├── top_level.txt │ │ └── zip-safe │ ├── altgraph │ │ ├── Dot.py │ │ ├── Graph.py │ │ ├── GraphAlgo.py │ │ ├── GraphStat.py │ │ ├── GraphUtil.py │ │ ├── ObjectGraph.py │ │ └── __init__.py │ ├── docopt-0.6.2.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE-MIT │ │ ├── METADATA │ │ ├── RECORD │ │ ├── REQUESTED │ │ ├── WHEEL │ │ └── top_level.txt │ └── docopt.py │ ├── conf.py │ ├── pathutils.py │ ├── tracecode.py │ └── tracer.py ├── tests ├── data │ ├── analy_patchelf │ │ └── trace-archive.tar.bz2 │ ├── analy_patchelf_settings │ │ └── trace-archive.tar.bz2 │ ├── analy_patchelf_settings2 │ │ └── trace-archive.tar.bz2 │ ├── as_ops │ │ └── trace │ │ │ └── t.2799712 │ ├── as_ops_multiplexed │ │ ├── expected │ │ └── trace-archive.tar.bz2 │ ├── bug1 │ │ └── t.2461545 │ ├── can_parse_dup_call │ │ └── trace │ │ │ └── bash-build01.70793 │ ├── d2d_cups_settings │ │ ├── expected │ │ ├── sources │ │ └── trace-archive.tar.bz2 │ ├── d2d_multiplexed_cp │ │ ├── expected │ │ ├── src.lst │ │ ├── tgt.lst │ │ └── trace-archive.tar.bz2 │ ├── d2d_patchelf_settings │ │ ├── expected │ │ └── trace-archive.tar.bz2 │ ├── d2d_strace_settings │ │ ├── expected │ │ ├── sources │ │ └── trace-archive.tar.bz2 │ ├── dump_patchelf │ │ ├── expected.csv │ │ └── trace-archive.tar.bz2 │ ├── file_graph_analysis_patchelf │ │ ├── expected_ints │ │ ├── expected_srcs │ │ ├── expected_tgts │ │ └── trace-archive.tar.bz2 │ ├── filtering │ │ └── t │ │ │ └── trace.70676 │ ├── grep │ │ └── trace │ │ │ └── t.2799712 │ ├── grep2 │ │ └── trace │ │ │ ├── t.2799712 │ │ │ └── t.2799713 │ ├── grep3 │ │ └── trace │ │ │ ├── t.2799712 │ │ │ ├── t.2799713 │ │ │ └── t.2799714 │ ├── interleaving │ │ └── trace │ │ │ ├── cp-trace.1 │ │ │ ├── cp-trace.2 │ │ │ ├── same_name.15480 │ │ │ └── t.15480 │ ├── inventory │ │ ├── expected │ │ └── trace-archive.tar.bz2 │ ├── lists │ │ └── trace │ │ │ └── t.2799712 │ ├── lists_patchelf │ │ ├── expected │ │ └── trace-archive.tar.bz2 │ ├── match_path_long │ │ ├── expected.lst │ │ ├── paths1.lst │ │ └── paths2.lst │ ├── parse_does_not_hang │ │ └── trace-archive.tar.bz2 │ ├── parse_entry │ │ ├── basic.trace │ │ └── space.trace │ ├── parse_error │ │ └── trace.1 │ ├── patchelf_command │ │ └── trace-archive.tar.bz2 │ ├── patchelf_command2 │ │ ├── expected_pformats.tar.bz2 │ │ ├── ignored_reads.lst │ │ └── trace-archive.tar.bz2 │ ├── pformat_cups │ │ ├── expected_pformats.tar.bz2 │ │ └── trace-archive.tar.bz2 │ ├── pformat_grep2 │ │ ├── expected_pformats.tar.bz2 │ │ └── trace-archive.tar.bz2 │ ├── pformat_grep3 │ │ ├── expected_pformats.tar.bz2 │ │ └── trace-archive.tar.bz2 │ ├── pformat_patchelf │ │ ├── expected_pformats.tar.bz2 │ │ └── trace-archive.tar.bz2 │ ├── pformat_strace_cleaning │ │ ├── expected_pformats.tar.bz2 │ │ └── trace-archive.tar.bz2 │ ├── pformat_strace_cleaning_dir │ │ ├── expected_pformats.tar.bz2 │ │ └── trace-archive.tar.bz2 │ ├── pformat_strace_full │ │ ├── expected_pformats.tar.bz2 │ │ └── trace-archive.tar.bz2 │ ├── pformat_strace_saved │ │ ├── expected_pformats.tar.bz2 │ │ └── trace-archive.tar.bz2 │ ├── render_graph │ │ ├── expected.dot │ │ └── trace │ │ │ └── t.2799712 │ ├── render_graph_bash │ │ ├── expected.dot │ │ └── trace-archive.tar.bz2 │ ├── render_graph_cups │ │ ├── expected.dot │ │ └── trace-archive.tar.bz2 │ ├── render_graph_patchelf │ │ ├── expected.dot │ │ └── trace-archive.tar.bz2 │ ├── render_graph_patchelf2 │ │ ├── expected.dot │ │ └── trace-archive.tar.bz2 │ ├── render_graph_strace │ │ ├── expected.dot │ │ └── trace-archive.tar.bz2 │ ├── stats_patchelf │ │ ├── expected │ │ └── trace-archive.tar.bz2 │ ├── strace2 │ │ └── trace │ │ │ ├── strace.2453402 │ │ │ └── strace2.2453403 │ ├── strace3 │ │ └── trace │ │ │ └── dir │ │ │ └── not_a_trace_file │ ├── strace_mini │ │ └── trace │ │ │ ├── strace.2453402 │ │ │ └── strace.2453403 │ ├── strace_mini2 │ │ └── trace │ │ │ ├── strace.2453402 │ │ │ └── strace.2453403 │ ├── validate │ │ └── trace-archive.tar.bz2 │ └── validate_out_of_order │ │ └── trace-archive.tar.bz2 ├── test_skeleton_codestyle.py └── test_tracecode.py └── vendorize.toml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/docs-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/.github/workflows/docs-ci.yml -------------------------------------------------------------------------------- /.github/workflows/pypi-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/.github/workflows/pypi-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/CODE_OF_CONDUCT.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/NOTICE -------------------------------------------------------------------------------- /README-build-tracing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/README-build-tracing.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/README.rst -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/TODO.txt -------------------------------------------------------------------------------- /apache-2.0.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/apache-2.0.LICENSE -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/configure -------------------------------------------------------------------------------- /configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/configure.bat -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/example_outputs/graph_bash.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/docs/example_outputs/graph_bash.pdf -------------------------------------------------------------------------------- /docs/example_outputs/graph_cups.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/docs/example_outputs/graph_cups.pdf -------------------------------------------------------------------------------- /docs/example_outputs/graph_patchelf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/docs/example_outputs/graph_patchelf.pdf -------------------------------------------------------------------------------- /docs/example_outputs/graph_strace.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/docs/example_outputs/graph_strace.pdf -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/scripts/doc8_style_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/docs/scripts/doc8_style_check.sh -------------------------------------------------------------------------------- /docs/scripts/sphinx_build_link_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/docs/scripts/sphinx_build_link_check.sh -------------------------------------------------------------------------------- /docs/source/_static/theme_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/docs/source/_static/theme_overrides.css -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contribute/contrib_doc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/docs/source/contribute/contrib_doc.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/skeleton-usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/docs/source/skeleton-usage.rst -------------------------------------------------------------------------------- /docs/tutorial/build-patchelf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/docs/tutorial/build-patchelf.rst -------------------------------------------------------------------------------- /docs/tutorial/patchelf-build-graph.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/docs/tutorial/patchelf-build-graph.pdf -------------------------------------------------------------------------------- /etc/ci/azure-container-deb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/ci/azure-container-deb.yml -------------------------------------------------------------------------------- /etc/ci/azure-container-rpm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/ci/azure-container-rpm.yml -------------------------------------------------------------------------------- /etc/ci/azure-posix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/ci/azure-posix.yml -------------------------------------------------------------------------------- /etc/ci/azure-win.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/ci/azure-win.yml -------------------------------------------------------------------------------- /etc/ci/install_sudo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/ci/install_sudo.sh -------------------------------------------------------------------------------- /etc/ci/macports-ci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/ci/macports-ci -------------------------------------------------------------------------------- /etc/ci/macports-ci.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/ci/macports-ci.ABOUT -------------------------------------------------------------------------------- /etc/ci/mit.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/ci/mit.LICENSE -------------------------------------------------------------------------------- /etc/scripts/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/scripts/README.rst -------------------------------------------------------------------------------- /etc/scripts/check_thirdparty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/scripts/check_thirdparty.py -------------------------------------------------------------------------------- /etc/scripts/fetch_thirdparty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/scripts/fetch_thirdparty.py -------------------------------------------------------------------------------- /etc/scripts/gen_pypi_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/scripts/gen_pypi_simple.py -------------------------------------------------------------------------------- /etc/scripts/gen_pypi_simple.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/scripts/gen_pypi_simple.py.ABOUT -------------------------------------------------------------------------------- /etc/scripts/gen_pypi_simple.py.NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/scripts/gen_pypi_simple.py.NOTICE -------------------------------------------------------------------------------- /etc/scripts/gen_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/scripts/gen_requirements.py -------------------------------------------------------------------------------- /etc/scripts/gen_requirements_dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/scripts/gen_requirements_dev.py -------------------------------------------------------------------------------- /etc/scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/scripts/requirements.txt -------------------------------------------------------------------------------- /etc/scripts/test_utils_pip_compatibility_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/scripts/test_utils_pip_compatibility_tags.py -------------------------------------------------------------------------------- /etc/scripts/test_utils_pip_compatibility_tags.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/scripts/test_utils_pip_compatibility_tags.py.ABOUT -------------------------------------------------------------------------------- /etc/scripts/test_utils_pypi_supported_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/scripts/test_utils_pypi_supported_tags.py -------------------------------------------------------------------------------- /etc/scripts/test_utils_pypi_supported_tags.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/scripts/test_utils_pypi_supported_tags.py.ABOUT -------------------------------------------------------------------------------- /etc/scripts/utils_dejacode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/scripts/utils_dejacode.py -------------------------------------------------------------------------------- /etc/scripts/utils_pip_compatibility_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/scripts/utils_pip_compatibility_tags.py -------------------------------------------------------------------------------- /etc/scripts/utils_pip_compatibility_tags.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/scripts/utils_pip_compatibility_tags.py.ABOUT -------------------------------------------------------------------------------- /etc/scripts/utils_pypi_supported_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/scripts/utils_pypi_supported_tags.py -------------------------------------------------------------------------------- /etc/scripts/utils_pypi_supported_tags.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/scripts/utils_pypi_supported_tags.py.ABOUT -------------------------------------------------------------------------------- /etc/scripts/utils_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/scripts/utils_requirements.py -------------------------------------------------------------------------------- /etc/scripts/utils_thirdparty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/scripts/utils_thirdparty.py -------------------------------------------------------------------------------- /etc/scripts/utils_thirdparty.py.ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/etc/scripts/utils_thirdparty.py.ABOUT -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/setup.py -------------------------------------------------------------------------------- /src/tracecode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/src/tracecode/__init__.py -------------------------------------------------------------------------------- /src/tracecode/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tracecode/_vendor/altgraph-0.17.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/tracecode/_vendor/altgraph-0.17.3.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/src/tracecode/_vendor/altgraph-0.17.3.dist-info/LICENSE -------------------------------------------------------------------------------- /src/tracecode/_vendor/altgraph-0.17.3.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/src/tracecode/_vendor/altgraph-0.17.3.dist-info/METADATA -------------------------------------------------------------------------------- /src/tracecode/_vendor/altgraph-0.17.3.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/src/tracecode/_vendor/altgraph-0.17.3.dist-info/RECORD -------------------------------------------------------------------------------- /src/tracecode/_vendor/altgraph-0.17.3.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tracecode/_vendor/altgraph-0.17.3.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/src/tracecode/_vendor/altgraph-0.17.3.dist-info/WHEEL -------------------------------------------------------------------------------- /src/tracecode/_vendor/altgraph-0.17.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | altgraph 2 | -------------------------------------------------------------------------------- /src/tracecode/_vendor/altgraph-0.17.3.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/tracecode/_vendor/altgraph/Dot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/src/tracecode/_vendor/altgraph/Dot.py -------------------------------------------------------------------------------- /src/tracecode/_vendor/altgraph/Graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/src/tracecode/_vendor/altgraph/Graph.py -------------------------------------------------------------------------------- /src/tracecode/_vendor/altgraph/GraphAlgo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/src/tracecode/_vendor/altgraph/GraphAlgo.py -------------------------------------------------------------------------------- /src/tracecode/_vendor/altgraph/GraphStat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/src/tracecode/_vendor/altgraph/GraphStat.py -------------------------------------------------------------------------------- /src/tracecode/_vendor/altgraph/GraphUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/src/tracecode/_vendor/altgraph/GraphUtil.py -------------------------------------------------------------------------------- /src/tracecode/_vendor/altgraph/ObjectGraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/src/tracecode/_vendor/altgraph/ObjectGraph.py -------------------------------------------------------------------------------- /src/tracecode/_vendor/altgraph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/src/tracecode/_vendor/altgraph/__init__.py -------------------------------------------------------------------------------- /src/tracecode/_vendor/docopt-0.6.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /src/tracecode/_vendor/docopt-0.6.2.dist-info/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/src/tracecode/_vendor/docopt-0.6.2.dist-info/LICENSE-MIT -------------------------------------------------------------------------------- /src/tracecode/_vendor/docopt-0.6.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/src/tracecode/_vendor/docopt-0.6.2.dist-info/METADATA -------------------------------------------------------------------------------- /src/tracecode/_vendor/docopt-0.6.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/src/tracecode/_vendor/docopt-0.6.2.dist-info/RECORD -------------------------------------------------------------------------------- /src/tracecode/_vendor/docopt-0.6.2.dist-info/REQUESTED: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/tracecode/_vendor/docopt-0.6.2.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/src/tracecode/_vendor/docopt-0.6.2.dist-info/WHEEL -------------------------------------------------------------------------------- /src/tracecode/_vendor/docopt-0.6.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | docopt 2 | -------------------------------------------------------------------------------- /src/tracecode/_vendor/docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/src/tracecode/_vendor/docopt.py -------------------------------------------------------------------------------- /src/tracecode/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/src/tracecode/conf.py -------------------------------------------------------------------------------- /src/tracecode/pathutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/src/tracecode/pathutils.py -------------------------------------------------------------------------------- /src/tracecode/tracecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/src/tracecode/tracecode.py -------------------------------------------------------------------------------- /src/tracecode/tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/src/tracecode/tracer.py -------------------------------------------------------------------------------- /tests/data/analy_patchelf/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/analy_patchelf/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/analy_patchelf_settings/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/analy_patchelf_settings/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/analy_patchelf_settings2/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/analy_patchelf_settings2/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/as_ops/trace/t.2799712: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/as_ops/trace/t.2799712 -------------------------------------------------------------------------------- /tests/data/as_ops_multiplexed/expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/as_ops_multiplexed/expected -------------------------------------------------------------------------------- /tests/data/as_ops_multiplexed/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/as_ops_multiplexed/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/bug1/t.2461545: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/bug1/t.2461545 -------------------------------------------------------------------------------- /tests/data/can_parse_dup_call/trace/bash-build01.70793: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/can_parse_dup_call/trace/bash-build01.70793 -------------------------------------------------------------------------------- /tests/data/d2d_cups_settings/expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/d2d_cups_settings/expected -------------------------------------------------------------------------------- /tests/data/d2d_cups_settings/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/d2d_cups_settings/sources -------------------------------------------------------------------------------- /tests/data/d2d_cups_settings/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/d2d_cups_settings/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/d2d_multiplexed_cp/expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/d2d_multiplexed_cp/expected -------------------------------------------------------------------------------- /tests/data/d2d_multiplexed_cp/src.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/d2d_multiplexed_cp/src.lst -------------------------------------------------------------------------------- /tests/data/d2d_multiplexed_cp/tgt.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/d2d_multiplexed_cp/tgt.lst -------------------------------------------------------------------------------- /tests/data/d2d_multiplexed_cp/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/d2d_multiplexed_cp/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/d2d_patchelf_settings/expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/d2d_patchelf_settings/expected -------------------------------------------------------------------------------- /tests/data/d2d_patchelf_settings/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/d2d_patchelf_settings/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/d2d_strace_settings/expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/d2d_strace_settings/expected -------------------------------------------------------------------------------- /tests/data/d2d_strace_settings/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/d2d_strace_settings/sources -------------------------------------------------------------------------------- /tests/data/d2d_strace_settings/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/d2d_strace_settings/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/dump_patchelf/expected.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/dump_patchelf/expected.csv -------------------------------------------------------------------------------- /tests/data/dump_patchelf/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/dump_patchelf/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/file_graph_analysis_patchelf/expected_ints: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/file_graph_analysis_patchelf/expected_ints -------------------------------------------------------------------------------- /tests/data/file_graph_analysis_patchelf/expected_srcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/file_graph_analysis_patchelf/expected_srcs -------------------------------------------------------------------------------- /tests/data/file_graph_analysis_patchelf/expected_tgts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/file_graph_analysis_patchelf/expected_tgts -------------------------------------------------------------------------------- /tests/data/file_graph_analysis_patchelf/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/file_graph_analysis_patchelf/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/filtering/t/trace.70676: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/filtering/t/trace.70676 -------------------------------------------------------------------------------- /tests/data/grep/trace/t.2799712: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/grep/trace/t.2799712 -------------------------------------------------------------------------------- /tests/data/grep2/trace/t.2799712: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/grep2/trace/t.2799712 -------------------------------------------------------------------------------- /tests/data/grep2/trace/t.2799713: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/grep2/trace/t.2799713 -------------------------------------------------------------------------------- /tests/data/grep3/trace/t.2799712: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/grep3/trace/t.2799712 -------------------------------------------------------------------------------- /tests/data/grep3/trace/t.2799713: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/grep3/trace/t.2799713 -------------------------------------------------------------------------------- /tests/data/grep3/trace/t.2799714: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/grep3/trace/t.2799714 -------------------------------------------------------------------------------- /tests/data/interleaving/trace/cp-trace.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/interleaving/trace/cp-trace.1 -------------------------------------------------------------------------------- /tests/data/interleaving/trace/cp-trace.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/interleaving/trace/cp-trace.2 -------------------------------------------------------------------------------- /tests/data/interleaving/trace/same_name.15480: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/interleaving/trace/same_name.15480 -------------------------------------------------------------------------------- /tests/data/interleaving/trace/t.15480: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/interleaving/trace/t.15480 -------------------------------------------------------------------------------- /tests/data/inventory/expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/inventory/expected -------------------------------------------------------------------------------- /tests/data/inventory/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/inventory/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/lists/trace/t.2799712: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/lists/trace/t.2799712 -------------------------------------------------------------------------------- /tests/data/lists_patchelf/expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/lists_patchelf/expected -------------------------------------------------------------------------------- /tests/data/lists_patchelf/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/lists_patchelf/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/match_path_long/expected.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/match_path_long/expected.lst -------------------------------------------------------------------------------- /tests/data/match_path_long/paths1.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/match_path_long/paths1.lst -------------------------------------------------------------------------------- /tests/data/match_path_long/paths2.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/match_path_long/paths2.lst -------------------------------------------------------------------------------- /tests/data/parse_does_not_hang/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/parse_does_not_hang/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/parse_entry/basic.trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/parse_entry/basic.trace -------------------------------------------------------------------------------- /tests/data/parse_entry/space.trace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/parse_entry/space.trace -------------------------------------------------------------------------------- /tests/data/parse_error/trace.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/parse_error/trace.1 -------------------------------------------------------------------------------- /tests/data/patchelf_command/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/patchelf_command/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/patchelf_command2/expected_pformats.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/patchelf_command2/expected_pformats.tar.bz2 -------------------------------------------------------------------------------- /tests/data/patchelf_command2/ignored_reads.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/patchelf_command2/ignored_reads.lst -------------------------------------------------------------------------------- /tests/data/patchelf_command2/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/patchelf_command2/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/pformat_cups/expected_pformats.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/pformat_cups/expected_pformats.tar.bz2 -------------------------------------------------------------------------------- /tests/data/pformat_cups/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/pformat_cups/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/pformat_grep2/expected_pformats.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/pformat_grep2/expected_pformats.tar.bz2 -------------------------------------------------------------------------------- /tests/data/pformat_grep2/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/pformat_grep2/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/pformat_grep3/expected_pformats.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/pformat_grep3/expected_pformats.tar.bz2 -------------------------------------------------------------------------------- /tests/data/pformat_grep3/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/pformat_grep3/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/pformat_patchelf/expected_pformats.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/pformat_patchelf/expected_pformats.tar.bz2 -------------------------------------------------------------------------------- /tests/data/pformat_patchelf/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/pformat_patchelf/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/pformat_strace_cleaning/expected_pformats.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/pformat_strace_cleaning/expected_pformats.tar.bz2 -------------------------------------------------------------------------------- /tests/data/pformat_strace_cleaning/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/pformat_strace_cleaning/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/pformat_strace_cleaning_dir/expected_pformats.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/pformat_strace_cleaning_dir/expected_pformats.tar.bz2 -------------------------------------------------------------------------------- /tests/data/pformat_strace_cleaning_dir/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/pformat_strace_cleaning_dir/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/pformat_strace_full/expected_pformats.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/pformat_strace_full/expected_pformats.tar.bz2 -------------------------------------------------------------------------------- /tests/data/pformat_strace_full/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/pformat_strace_full/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/pformat_strace_saved/expected_pformats.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/pformat_strace_saved/expected_pformats.tar.bz2 -------------------------------------------------------------------------------- /tests/data/pformat_strace_saved/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/pformat_strace_saved/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/render_graph/expected.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/render_graph/expected.dot -------------------------------------------------------------------------------- /tests/data/render_graph/trace/t.2799712: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/render_graph/trace/t.2799712 -------------------------------------------------------------------------------- /tests/data/render_graph_bash/expected.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/render_graph_bash/expected.dot -------------------------------------------------------------------------------- /tests/data/render_graph_bash/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/render_graph_bash/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/render_graph_cups/expected.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/render_graph_cups/expected.dot -------------------------------------------------------------------------------- /tests/data/render_graph_cups/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/render_graph_cups/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/render_graph_patchelf/expected.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/render_graph_patchelf/expected.dot -------------------------------------------------------------------------------- /tests/data/render_graph_patchelf/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/render_graph_patchelf/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/render_graph_patchelf2/expected.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/render_graph_patchelf2/expected.dot -------------------------------------------------------------------------------- /tests/data/render_graph_patchelf2/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/render_graph_patchelf2/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/render_graph_strace/expected.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/render_graph_strace/expected.dot -------------------------------------------------------------------------------- /tests/data/render_graph_strace/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/render_graph_strace/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/stats_patchelf/expected: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/stats_patchelf/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/stats_patchelf/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/strace2/trace/strace.2453402: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/strace2/trace/strace.2453402 -------------------------------------------------------------------------------- /tests/data/strace2/trace/strace2.2453403: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/strace2/trace/strace2.2453403 -------------------------------------------------------------------------------- /tests/data/strace3/trace/dir/not_a_trace_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/strace_mini/trace/strace.2453402: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/strace_mini/trace/strace.2453402 -------------------------------------------------------------------------------- /tests/data/strace_mini/trace/strace.2453403: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/strace_mini/trace/strace.2453403 -------------------------------------------------------------------------------- /tests/data/strace_mini2/trace/strace.2453402: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/strace_mini2/trace/strace.2453402 -------------------------------------------------------------------------------- /tests/data/strace_mini2/trace/strace.2453403: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/strace_mini2/trace/strace.2453403 -------------------------------------------------------------------------------- /tests/data/validate/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/validate/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/data/validate_out_of_order/trace-archive.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/data/validate_out_of_order/trace-archive.tar.bz2 -------------------------------------------------------------------------------- /tests/test_skeleton_codestyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/test_skeleton_codestyle.py -------------------------------------------------------------------------------- /tests/test_tracecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/tests/test_tracecode.py -------------------------------------------------------------------------------- /vendorize.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aboutcode-org/tracecode-toolkit-strace/HEAD/vendorize.toml --------------------------------------------------------------------------------