├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── codecov.yml ├── cutterdrcov_plugin ├── __init__.py ├── autogen │ ├── __init__.py │ ├── dockui.py │ └── icon_rc.py ├── covtable.py ├── cutterplugin.py ├── drcov.py ├── extras.py ├── plugin_interface.py └── sortable_table_item.py ├── resources ├── ICON-LICENSE ├── icon.qrc └── icon │ ├── brush.svg │ ├── data-transfer-download.svg │ ├── reload.svg │ └── x.svg ├── screanshots ├── overview.jpg ├── path.jpg └── usage.gif ├── scripts ├── lint.sh ├── local.sh └── travis.sh ├── test_files ├── drcov.test2.log ├── drcov.test3.log ├── drcov2.2.log ├── drcov2.3.log ├── drcov2.4.log ├── drcov_orphan.log ├── test1.asm ├── test1.bin ├── test1.o ├── test2.asm ├── test2.bin ├── test2.o ├── test3.asm ├── test3.bin └── test3.o ├── ui └── dock.ui └── unittest ├── __main__.py ├── test_covtable.py ├── test_drcov.py ├── test_extras.py └── test_sortable_table_item.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.swp 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/codecov.yml -------------------------------------------------------------------------------- /cutterdrcov_plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/cutterdrcov_plugin/__init__.py -------------------------------------------------------------------------------- /cutterdrcov_plugin/autogen/__init__.py: -------------------------------------------------------------------------------- 1 | from .dockui import Ui_DockWidget 2 | -------------------------------------------------------------------------------- /cutterdrcov_plugin/autogen/dockui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/cutterdrcov_plugin/autogen/dockui.py -------------------------------------------------------------------------------- /cutterdrcov_plugin/autogen/icon_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/cutterdrcov_plugin/autogen/icon_rc.py -------------------------------------------------------------------------------- /cutterdrcov_plugin/covtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/cutterdrcov_plugin/covtable.py -------------------------------------------------------------------------------- /cutterdrcov_plugin/cutterplugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/cutterdrcov_plugin/cutterplugin.py -------------------------------------------------------------------------------- /cutterdrcov_plugin/drcov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/cutterdrcov_plugin/drcov.py -------------------------------------------------------------------------------- /cutterdrcov_plugin/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/cutterdrcov_plugin/extras.py -------------------------------------------------------------------------------- /cutterdrcov_plugin/plugin_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/cutterdrcov_plugin/plugin_interface.py -------------------------------------------------------------------------------- /cutterdrcov_plugin/sortable_table_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/cutterdrcov_plugin/sortable_table_item.py -------------------------------------------------------------------------------- /resources/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/resources/ICON-LICENSE -------------------------------------------------------------------------------- /resources/icon.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/resources/icon.qrc -------------------------------------------------------------------------------- /resources/icon/brush.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/resources/icon/brush.svg -------------------------------------------------------------------------------- /resources/icon/data-transfer-download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/resources/icon/data-transfer-download.svg -------------------------------------------------------------------------------- /resources/icon/reload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/resources/icon/reload.svg -------------------------------------------------------------------------------- /resources/icon/x.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/resources/icon/x.svg -------------------------------------------------------------------------------- /screanshots/overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/screanshots/overview.jpg -------------------------------------------------------------------------------- /screanshots/path.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/screanshots/path.jpg -------------------------------------------------------------------------------- /screanshots/usage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/screanshots/usage.gif -------------------------------------------------------------------------------- /scripts/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/scripts/lint.sh -------------------------------------------------------------------------------- /scripts/local.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | set -x 3 | 4 | ./scripts/lint.sh 5 | python unittest 6 | -------------------------------------------------------------------------------- /scripts/travis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/scripts/travis.sh -------------------------------------------------------------------------------- /test_files/drcov.test2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/test_files/drcov.test2.log -------------------------------------------------------------------------------- /test_files/drcov.test3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/test_files/drcov.test3.log -------------------------------------------------------------------------------- /test_files/drcov2.2.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/test_files/drcov2.2.log -------------------------------------------------------------------------------- /test_files/drcov2.3.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/test_files/drcov2.3.log -------------------------------------------------------------------------------- /test_files/drcov2.4.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/test_files/drcov2.4.log -------------------------------------------------------------------------------- /test_files/drcov_orphan.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/test_files/drcov_orphan.log -------------------------------------------------------------------------------- /test_files/test1.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/test_files/test1.asm -------------------------------------------------------------------------------- /test_files/test1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/test_files/test1.bin -------------------------------------------------------------------------------- /test_files/test1.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/test_files/test1.o -------------------------------------------------------------------------------- /test_files/test2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/test_files/test2.asm -------------------------------------------------------------------------------- /test_files/test2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/test_files/test2.bin -------------------------------------------------------------------------------- /test_files/test2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/test_files/test2.o -------------------------------------------------------------------------------- /test_files/test3.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/test_files/test3.asm -------------------------------------------------------------------------------- /test_files/test3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/test_files/test3.bin -------------------------------------------------------------------------------- /test_files/test3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/test_files/test3.o -------------------------------------------------------------------------------- /ui/dock.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/ui/dock.ui -------------------------------------------------------------------------------- /unittest/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/unittest/__main__.py -------------------------------------------------------------------------------- /unittest/test_covtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/unittest/test_covtable.py -------------------------------------------------------------------------------- /unittest/test_drcov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/unittest/test_drcov.py -------------------------------------------------------------------------------- /unittest/test_extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/unittest/test_extras.py -------------------------------------------------------------------------------- /unittest/test_sortable_table_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rizinorg/CutterDRcov/HEAD/unittest/test_sortable_table_item.py --------------------------------------------------------------------------------