sdb-debugger 0.2.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (573) hide show
  1. sdb_debugger-0.2.1/.github/scripts/clear-dump.sh +13 -0
  2. sdb_debugger-0.2.1/.github/scripts/download-dumps-from-gdrive.sh +10 -0
  3. sdb_debugger-0.2.1/.github/scripts/extract-dump.sh +73 -0
  4. sdb_debugger-0.2.1/.github/scripts/install-drgn.sh +17 -0
  5. sdb_debugger-0.2.1/.github/scripts/install-libkdumpfile.sh +23 -0
  6. sdb_debugger-0.2.1/.github/workflows/main.yml +145 -0
  7. sdb_debugger-0.2.1/.github/workflows/release.yml +154 -0
  8. sdb_debugger-0.2.1/.gitignore +119 -0
  9. sdb_debugger-0.2.1/CODE_OF_CONDUCT.md +128 -0
  10. sdb_debugger-0.2.1/LICENSE +201 -0
  11. sdb_debugger-0.2.1/PKG-INFO +186 -0
  12. sdb_debugger-0.2.1/PUBLISHING.md +163 -0
  13. sdb_debugger-0.2.1/README.md +153 -0
  14. sdb_debugger-0.2.1/assets/img/sdb-logo.jpg +0 -0
  15. sdb_debugger-0.2.1/assets/img/sdb-logo.png +0 -0
  16. sdb_debugger-0.2.1/assets/img/sdb-logo_white.png +0 -0
  17. sdb_debugger-0.2.1/debian/compat +1 -0
  18. sdb_debugger-0.2.1/debian/control +11 -0
  19. sdb_debugger-0.2.1/debian/copyright +27 -0
  20. sdb_debugger-0.2.1/debian/rules +11 -0
  21. sdb_debugger-0.2.1/pyproject.toml +136 -0
  22. sdb_debugger-0.2.1/requirements-dev.txt +23 -0
  23. sdb_debugger-0.2.1/requirements.txt +4 -0
  24. sdb_debugger-0.2.1/scripts/publish-to-pypi.sh +64 -0
  25. sdb_debugger-0.2.1/sdb/__init__.py +101 -0
  26. sdb_debugger-0.2.1/sdb/_version.py +34 -0
  27. sdb_debugger-0.2.1/sdb/command.py +894 -0
  28. sdb_debugger-0.2.1/sdb/commands/__init__.py +30 -0
  29. sdb_debugger-0.2.1/sdb/commands/array.py +125 -0
  30. sdb_debugger-0.2.1/sdb/commands/container_of.py +66 -0
  31. sdb_debugger-0.2.1/sdb/commands/count.py +57 -0
  32. sdb_debugger-0.2.1/sdb/commands/echo.py +48 -0
  33. sdb_debugger-0.2.1/sdb/commands/exit.py +32 -0
  34. sdb_debugger-0.2.1/sdb/commands/filter.py +140 -0
  35. sdb_debugger-0.2.1/sdb/commands/head.py +52 -0
  36. sdb_debugger-0.2.1/sdb/commands/help.py +61 -0
  37. sdb_debugger-0.2.1/sdb/commands/history.py +49 -0
  38. sdb_debugger-0.2.1/sdb/commands/internal/__init__.py +26 -0
  39. sdb_debugger-0.2.1/sdb/commands/internal/fmt.py +32 -0
  40. sdb_debugger-0.2.1/sdb/commands/internal/p2.py +25 -0
  41. sdb_debugger-0.2.1/sdb/commands/internal/table.py +96 -0
  42. sdb_debugger-0.2.1/sdb/commands/internal/util.py +154 -0
  43. sdb_debugger-0.2.1/sdb/commands/linux/__init__.py +30 -0
  44. sdb_debugger-0.2.1/sdb/commands/linux/dmesg.py +79 -0
  45. sdb_debugger-0.2.1/sdb/commands/linux/internal/__init__.py +26 -0
  46. sdb_debugger-0.2.1/sdb/commands/linux/internal/slub_helpers.py +163 -0
  47. sdb_debugger-0.2.1/sdb/commands/linux/linked_lists.py +136 -0
  48. sdb_debugger-0.2.1/sdb/commands/linux/per_cpu.py +106 -0
  49. sdb_debugger-0.2.1/sdb/commands/linux/process.py +99 -0
  50. sdb_debugger-0.2.1/sdb/commands/linux/slabs.py +247 -0
  51. sdb_debugger-0.2.1/sdb/commands/linux/stacks.py +458 -0
  52. sdb_debugger-0.2.1/sdb/commands/linux/threads.py +106 -0
  53. sdb_debugger-0.2.1/sdb/commands/linux/tree.py +69 -0
  54. sdb_debugger-0.2.1/sdb/commands/linux/vfs.py +54 -0
  55. sdb_debugger-0.2.1/sdb/commands/linux/whatis.py +78 -0
  56. sdb_debugger-0.2.1/sdb/commands/member.py +311 -0
  57. sdb_debugger-0.2.1/sdb/commands/pretty_print.py +54 -0
  58. sdb_debugger-0.2.1/sdb/commands/print.py +98 -0
  59. sdb_debugger-0.2.1/sdb/commands/ptype.py +79 -0
  60. sdb_debugger-0.2.1/sdb/commands/pyfilter.py +58 -0
  61. sdb_debugger-0.2.1/sdb/commands/sizeof.py +64 -0
  62. sdb_debugger-0.2.1/sdb/commands/spl/__init__.py +26 -0
  63. sdb_debugger-0.2.1/sdb/commands/spl/avl.py +48 -0
  64. sdb_debugger-0.2.1/sdb/commands/spl/internal/__init__.py +26 -0
  65. sdb_debugger-0.2.1/sdb/commands/spl/internal/kmem_helpers.py +219 -0
  66. sdb_debugger-0.2.1/sdb/commands/spl/multilist.py +34 -0
  67. sdb_debugger-0.2.1/sdb/commands/spl/spl_kmem_caches.py +234 -0
  68. sdb_debugger-0.2.1/sdb/commands/spl/spl_list.py +36 -0
  69. sdb_debugger-0.2.1/sdb/commands/sum.py +54 -0
  70. sdb_debugger-0.2.1/sdb/commands/tail.py +51 -0
  71. sdb_debugger-0.2.1/sdb/commands/type.py +38 -0
  72. sdb_debugger-0.2.1/sdb/commands/ustacks.py +284 -0
  73. sdb_debugger-0.2.1/sdb/commands/uthreads.py +38 -0
  74. sdb_debugger-0.2.1/sdb/commands/zfs/__init__.py +26 -0
  75. sdb_debugger-0.2.1/sdb/commands/zfs/arc.py +43 -0
  76. sdb_debugger-0.2.1/sdb/commands/zfs/blkptr.py +164 -0
  77. sdb_debugger-0.2.1/sdb/commands/zfs/btree.py +98 -0
  78. sdb_debugger-0.2.1/sdb/commands/zfs/dbuf.py +139 -0
  79. sdb_debugger-0.2.1/sdb/commands/zfs/histograms.py +155 -0
  80. sdb_debugger-0.2.1/sdb/commands/zfs/internal/__init__.py +272 -0
  81. sdb_debugger-0.2.1/sdb/commands/zfs/metaslab.py +200 -0
  82. sdb_debugger-0.2.1/sdb/commands/zfs/range_tree.py +87 -0
  83. sdb_debugger-0.2.1/sdb/commands/zfs/spa.py +92 -0
  84. sdb_debugger-0.2.1/sdb/commands/zfs/vdev.py +180 -0
  85. sdb_debugger-0.2.1/sdb/commands/zfs/zfs_dbgmsg.py +63 -0
  86. sdb_debugger-0.2.1/sdb/commands/zfs/zio.py +146 -0
  87. sdb_debugger-0.2.1/sdb/error.py +109 -0
  88. sdb_debugger-0.2.1/sdb/internal/__init__.py +0 -0
  89. sdb_debugger-0.2.1/sdb/internal/cli.py +251 -0
  90. sdb_debugger-0.2.1/sdb/internal/repl.py +198 -0
  91. sdb_debugger-0.2.1/sdb/parser.py +250 -0
  92. sdb_debugger-0.2.1/sdb/pipeline.py +174 -0
  93. sdb_debugger-0.2.1/sdb/target.py +213 -0
  94. sdb_debugger-0.2.1/sdb_debugger.egg-info/PKG-INFO +186 -0
  95. sdb_debugger-0.2.1/sdb_debugger.egg-info/SOURCES.txt +571 -0
  96. sdb_debugger-0.2.1/sdb_debugger.egg-info/dependency_links.txt +1 -0
  97. sdb_debugger-0.2.1/sdb_debugger.egg-info/entry_points.txt +2 -0
  98. sdb_debugger-0.2.1/sdb_debugger.egg-info/requires.txt +9 -0
  99. sdb_debugger-0.2.1/sdb_debugger.egg-info/top_level.txt +1 -0
  100. sdb_debugger-0.2.1/setup.cfg +4 -0
  101. sdb_debugger-0.2.1/tests/__init__.py +0 -0
  102. sdb_debugger-0.2.1/tests/integration/__init__.py +0 -0
  103. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr bogus +3 -0
  104. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr fget | deref +3 -0
  105. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr jiffies | deref +3 -0
  106. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr jiffies | deref | deref +3 -0
  107. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl +3 -0
  108. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl zfs_dbgmsgs | print -d +78 -0
  109. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | deref +9 -0
  110. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | deref | addr +3 -0
  111. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | deref | print +9 -0
  112. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | member avl_root->avl_child[0]->avl_child +3 -0
  113. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | member avl_root->avl_child[1 +3 -0
  114. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | member avl_root->avl_child[3] +4 -0
  115. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | member avl_root->avl_child[a] +3 -0
  116. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | member avl_root.avl_child[0].avl_child +3 -0
  117. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | member avl_root.avl_pcb avl_size +4 -0
  118. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | print +3 -0
  119. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | print --RAW +3 -0
  120. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | print -d +9 -0
  121. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | print -n +3 -0
  122. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | print -nr +3 -0
  123. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/addr spa_namespace_avl | print -r +3 -0
  124. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 0x1 0x2 | filter 'obj < 1' +3 -0
  125. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 0x1 0x2 | filter 'obj <= 1' +4 -0
  126. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 0x1 0x2 | filter 'obj == 1' +3 -0
  127. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 0x1 0x2 | filter 'obj > 1' +3 -0
  128. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 0x1 0x2 | filter 'obj >= 1' +4 -0
  129. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 | addr spa_namespace_avl | echo 0x1 | cast avl_tree_t * | member avl_root +5 -0
  130. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 | cast int * | array 1 +3 -0
  131. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 | cast int * | deref +3 -0
  132. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 | cast spa_t * | member spa_name +3 -0
  133. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 | cast void * | array 1 +3 -0
  134. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 | filter 'obj == 0' +3 -0
  135. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x0 | filter 'obj == 1' +2 -0
  136. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x1 | filter 'obj == obj' +3 -0
  137. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x10 | cast int * | deref +3 -0
  138. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0x1234 | cast dmu_recv_cookie_t * | member drc_os +3 -0
  139. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 0xffff90cc11b28000 | deref +3 -0
  140. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 1 | echo 2 | sum +3 -0
  141. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/echo 1234 | cast int | array +3 -0
  142. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/filter 'obj == 1' +2 -0
  143. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/member no_object +2 -0
  144. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype $abc +3 -0
  145. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype 'a b c' +3 -0
  146. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype 'bogus union' +3 -0
  147. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype 'struct bogus' +3 -0
  148. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype 'struct spa' +197 -0
  149. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype 'struct union' +3 -0
  150. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype 'struct' +3 -0
  151. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype 'union struct struct' +3 -0
  152. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype 2abc +3 -0
  153. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype @ +3 -0
  154. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype bogus_t +3 -0
  155. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype spa vdev +339 -0
  156. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype spa_t +3 -0
  157. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype struct spa +3 -0
  158. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype thread_union +6 -0
  159. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/ptype zfs_case +7 -0
  160. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/sizeof bogus +3 -0
  161. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/sizeof size_t +3 -0
  162. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/sizeof spa vdev +4 -0
  163. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/sizeof struct spa +3 -0
  164. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/sizeof task_struct +3 -0
  165. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa rpool | filter 'obj.bogus == 1624' +3 -0
  166. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa rpool | filter 'obj.spa_syncing_txg < 1624' | member spa_name +2 -0
  167. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa rpool | filter 'obj.spa_syncing_txg <= 1624' | member spa_name +3 -0
  168. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa rpool | filter 'obj.spa_syncing_txg == 1624' | member spa_name +3 -0
  169. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa rpool | filter 'obj.spa_syncing_txg > 1624' | member spa_name +2 -0
  170. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa rpool | filter 'obj.spa_syncing_txg >= 1624' | member spa_name +3 -0
  171. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa rpool | filter 'obj.spa_syncing_txg bogus_op 1624' +3 -0
  172. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | deref | sum +3 -0
  173. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | head 1 | deref | print --RAW -s +3 -0
  174. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | head 1 | deref | print -rs +3 -0
  175. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | head 1 | member spa_name[1] | print +3 -0
  176. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | head 1 | member spa_name[1] | print -c +3 -0
  177. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | head 1 | member spa_name[1] | print -cr +3 -0
  178. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | head 1 | member spa_zio_taskq[0][0].stqs_taskq +3 -0
  179. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | head 1 | member spa_zio_taskq[0][0].stqs_taskq[0] +3 -0
  180. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | member spa_ubsync->ub_rootbp +3 -0
  181. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | member spa_ubsync.bogus +3 -0
  182. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | member spa_ubsync.ub_rootbp.blk_dva[0].dva_word +5 -0
  183. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | member spa_zio_taskq[0][0].stqs_taskq | array +3 -0
  184. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | member spa_zio_taskq[0][0].stqs_taskq | array 2 +8 -0
  185. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | member spa_zio_taskq[0][0].stqs_taskq-> +3 -0
  186. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | member spa_zio_taskq[0][0].stqs_taskq. +3 -0
  187. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | range_tree +3 -0
  188. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/spa | vdev | metaslab | deref | sizeof | sum +3 -0
  189. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/sum +3 -0
  190. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/thread | filter /"obj.comm == ///"bogus///"/" | thread" +4 -0
  191. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/threads | deref | sizeof | sum +3 -0
  192. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/threads | sizeof | sum +3 -0
  193. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/zfs_dbgmsg | filter '== obj' +3 -0
  194. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/zfs_dbgmsg | filter 'obj ==' +3 -0
  195. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/zfs_dbgmsg | filter 'obj' +3 -0
  196. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/zfs_dbgmsg | head 1 | member zdm_msg | array +3 -0
  197. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/zfs_dbgmsg | head 1 | member zdm_msg | array -1 +2 -0
  198. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/zfs_dbgmsg | head 1 | member zdm_msg | array 0 +2 -0
  199. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/zfs_dbgmsg | head 1 | member zdm_msg | array 2 +5 -0
  200. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/core/zfs_dbgmsg | head 1 | member zdm_msg[2] +4 -0
  201. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr init_task | member comm | addr | container_of bogus_type comm | cast void * +3 -0
  202. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr init_task | member comm | addr | container_of int comm | cast void * +3 -0
  203. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr init_task | member comm | addr | container_of pid comm | cast void * +3 -0
  204. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr init_task | member comm | addr | container_of task_struct bogus_member | cast void * +3 -0
  205. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr init_task | member comm | addr | container_of task_struct comm | cast void * +3 -0
  206. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr init_task | member comm | container_of task_struct comm | cast void * +3 -0
  207. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr init_task | member thread_pid.tasks[3] | lxhlist bogus_type pid_links[3] | member comm +3 -0
  208. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr init_task | member thread_pid.tasks[3] | lxhlist task_struct bogus_member | member comm +3 -0
  209. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr init_task | member thread_pid.tasks[3] | lxhlist task_struct pid_links[3] | member comm +364 -0
  210. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr modules | lxlist bogus_type list | member name +3 -0
  211. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr modules | lxlist module bogus_member | member name +3 -0
  212. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr modules | lxlist module list | member name +80 -0
  213. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr spa_namespace_avl | cpu_counter_sum +3 -0
  214. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr tcp_orphan_count | cpu_counter_sum +3 -0
  215. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr tcp_sockets_allocated | cpu_counter_sum +3 -0
  216. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr vm_committed_as | cpu_counter_sum +3 -0
  217. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr vmap_area_root | rbtree bogus_type rb_node +3 -0
  218. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr vmap_area_root | rbtree vmap_area bogus_member +3 -0
  219. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/addr vmap_area_root | rbtree vmap_area rb_node +1658 -0
  220. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/crashed_thread +21 -0
  221. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/crashed_thread | stacks +21 -0
  222. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/dbuf |head 1 |deref |member db_buf |whatis +3 -0
  223. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/dmesg +1267 -0
  224. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/dmesg -l 3 +9 -0
  225. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/echo 0x0 | cpu_counter_sum +3 -0
  226. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/echo 0xffffa089669edc00 | stack +18 -0
  227. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/find_task 1 +3 -0
  228. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/find_task 1 2 +4 -0
  229. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/find_task 1 2 | member comm +4 -0
  230. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/find_task 1 | fget 1 4 +4 -0
  231. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/find_task 1 | fget 1 4 123123 +5 -0
  232. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/pid 1 +3 -0
  233. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/pid 1 10 12437 +5 -0
  234. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs +211 -0
  235. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs -o bogus +3 -0
  236. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs -s active_objs -o active_objs,util,name +211 -0
  237. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs -s active_objs -o util +3 -0
  238. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs -s bogus +4 -0
  239. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs -s util +211 -0
  240. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs -s util | slabs +211 -0
  241. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs -v +211 -0
  242. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"UNIX/"' | slub_cache | count" +3 -0
  243. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"dnode_t/"' |walk | head 6056 | tail 1| cast dnode_t * | deref |member dn_phys |member dn_blkptr[0] |blkptr" +8 -0
  244. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"dnode_t/"' |walk | tail 8 | head 1 | cast dnode_t * | deref |member dn_phys |member dn_blkptr[0] |blkptr" +3 -0
  245. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu" +4 -0
  246. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 0" +3 -0
  247. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 0 1" +4 -0
  248. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 0 2 1" +4 -0
  249. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 1" +3 -0
  250. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 100" +3 -0
  251. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 2" +3 -0
  252. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 3" +3 -0
  253. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"zio_cache/"' | slub_cache" +20 -0
  254. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"zio_cache/"' | slub_cache | cast zio_t * | member io_spa.spa_name" +20 -0
  255. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"zio_cache/"' | slub_cache | count" +3 -0
  256. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | filter 'obj.name == /"zio_cache/"' | walk" +20 -0
  257. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | head 2 | slabs +6 -0
  258. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/slabs | pp +211 -0
  259. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/stacks +603 -0
  260. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/stacks -a +1127 -0
  261. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/stacks -c bogus +3 -0
  262. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/stacks -c spa_sync +4 -0
  263. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/stacks -m bogus +3 -0
  264. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/stacks -m bogus | count +3 -0
  265. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/stacks -m zfs +144 -0
  266. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/stacks -m zfs -c spa_sync +4 -0
  267. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/stacks -m zfs -c zthr_procedure +29 -0
  268. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/stacks -m zfs | count +3 -0
  269. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/stacks -t bogus +3 -0
  270. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/thread +577 -0
  271. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/threads +577 -0
  272. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/threads | count +3 -0
  273. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/threads | filter 'obj.comm == /"java/"' | stack" +105 -0
  274. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/threads | filter 'obj.comm == /"java/"' | threads" +87 -0
  275. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/whatis 0xf987kkbbh +3 -0
  276. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/whatis 0xffff +3 -0
  277. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/whatis 0xffffa0888c766000 0xffffa089407ca870 +4 -0
  278. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/linux/whatis 0xffffa089407ca870 +3 -0
  279. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/addr arc_mru | member [0].arcs_list[1] | multilist | head +12 -0
  280. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/addr arc_mru | member [0].arcs_list[1] | walk | head +12 -0
  281. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/addr spa_namespace_avl | avl +5 -0
  282. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/addr spa_namespace_avl | walk +5 -0
  283. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spa | member spa_config_list | spl_list +5 -0
  284. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spa | member spa_config_list | walk +5 -0
  285. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spa | member spa_evicting_os_list | spl_list +2 -0
  286. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spa | member spa_evicting_os_list | walk +2 -0
  287. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spa | member spa_normal_class.mc_metaslab_txg_list | multilist +52 -0
  288. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spa | member spa_normal_class.mc_metaslab_txg_list | walk +52 -0
  289. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spl_kmem_caches +142 -0
  290. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spl_kmem_caches -o name,entry_size -s entry_size +142 -0
  291. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spl_kmem_caches -o name,source +142 -0
  292. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spl_kmem_caches -s entry_size +142 -0
  293. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spl_kmem_caches -s entry_size | head 4 | spl_kmem_caches +8 -0
  294. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spl_kmem_caches -v +142 -0
  295. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spl_kmem_caches | filter 'obj.skc_linux_cache == 0' | spl_cache +3566 -0
  296. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spl_kmem_caches | filter 'obj.skc_linux_cache == 0' | spl_cache | cnt +3 -0
  297. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spl_kmem_caches | filter 'obj.skc_linux_cache > 0' | filter 'obj.skc_obj_alloc > 0' | head 1 | spl_cache +37 -0
  298. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spl_kmem_caches | filter 'obj.skc_name == /"ddt_cache/"' | walk" +48 -0
  299. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/spl/spl_kmem_caches | pp +142 -0
  300. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/arc +100 -0
  301. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/dbuf +4037 -0
  302. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/dbuf -l 1 +277 -0
  303. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/dbuf | dbuf -l 1 +277 -0
  304. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/dbuf | dbuf -l 1 | head | dbuf +13 -0
  305. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/dbuf | head 1 | member db_blkptr | blkptr +6 -0
  306. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa +7 -0
  307. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa -H +52 -0
  308. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa -mH +849 -0
  309. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa -v +28 -0
  310. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa -vH +119 -0
  311. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa -vm +216 -0
  312. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa -vmH +849 -0
  313. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa data | member spa_normal_class.mc_histogram | zfs_histogram +25 -0
  314. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa data | vdev | metaslab | filter 'obj.ms_loaded == 1' | head 1 | member ms_allocatable.rt_histogram | zhist +24 -0
  315. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa data | vdev | metaslab | filter 'obj.ms_loaded == 1' | head 1 | member ms_sm.sm_phys.smp_histogram | zhist +25 -0
  316. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa data | vdev | metaslab | filter 'obj.ms_loaded == 1' | head 1 | member ms_sm.sm_phys.smp_histogram | zhist 9 +25 -0
  317. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa rpool +5 -0
  318. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa | head 1 | deref |member spa_uberblock | member ub_rootbp | blkptr +8 -0
  319. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa | head 1 | spa +5 -0
  320. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa | pp +7 -0
  321. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa | vdev +19 -0
  322. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa | vdev | metaslab +184 -0
  323. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa | vdev | metaslab -w +184 -0
  324. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa | vdev | metaslab | member ms_allocatable | range_tree +2880 -0
  325. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa | vdev | metaslab | member ms_allocatable.rt_root | zfs_btree +2700 -0
  326. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/spa | vdev | pp +19 -0
  327. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/zfs_dbgmsg +101 -0
  328. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/zfs_dbgmsg | tail 5 | zfs_dbgmsg +7 -0
  329. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/zio +21 -0
  330. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.201912060006/zfs/zio -r +21 -0
  331. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr bogus +3 -0
  332. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr fget | deref +3 -0
  333. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr jiffies | deref +3 -0
  334. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr jiffies | deref | deref +3 -0
  335. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl +3 -0
  336. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl zfs_dbgmsgs | print -d +77 -0
  337. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | deref +8 -0
  338. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | deref | addr +3 -0
  339. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | deref | print +8 -0
  340. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | member avl_root->avl_child[0]->avl_child +3 -0
  341. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | member avl_root->avl_child[1 +3 -0
  342. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | member avl_root->avl_child[3] +4 -0
  343. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | member avl_root->avl_child[a] +3 -0
  344. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | member avl_root.avl_child[0].avl_child +3 -0
  345. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | member avl_root.avl_pcb avl_size +4 -0
  346. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | print +3 -0
  347. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | print --RAW +3 -0
  348. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | print -d +8 -0
  349. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | print -n +3 -0
  350. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | print -nr +3 -0
  351. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/addr spa_namespace_avl | print -r +3 -0
  352. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 0x1 0x2 | filter 'obj < 1' +3 -0
  353. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 0x1 0x2 | filter 'obj <= 1' +4 -0
  354. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 0x1 0x2 | filter 'obj == 1' +3 -0
  355. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 0x1 0x2 | filter 'obj > 1' +3 -0
  356. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 0x1 0x2 | filter 'obj >= 1' +4 -0
  357. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 | addr spa_namespace_avl | echo 0x1 | cast avl_tree_t * | member avl_root +5 -0
  358. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 | cast int * | array 1 +3 -0
  359. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 | cast int * | deref +3 -0
  360. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 | cast spa_t * | member spa_name +3 -0
  361. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 | cast void * | array 1 +3 -0
  362. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 | filter 'obj == 0' +3 -0
  363. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x0 | filter 'obj == 1' +2 -0
  364. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x1 | filter 'obj == obj' +3 -0
  365. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x10 | cast int * | deref +3 -0
  366. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0x1234 | cast dmu_recv_cookie_t * | member drc_os +3 -0
  367. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 0xffff90cc11b28000 | deref +3 -0
  368. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 1 | echo 2 | sum +3 -0
  369. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/echo 1234 | cast int | array +3 -0
  370. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/filter 'obj == 1' +2 -0
  371. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/member no_object +2 -0
  372. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype $abc +3 -0
  373. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype 'a b c' +3 -0
  374. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype 'bogus union' +3 -0
  375. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype 'struct bogus' +3 -0
  376. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype 'struct spa' +204 -0
  377. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype 'struct union' +3 -0
  378. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype 'struct' +3 -0
  379. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype 'union struct struct' +3 -0
  380. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype 2abc +3 -0
  381. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype @ +3 -0
  382. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype bogus_t +3 -0
  383. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype spa vdev +367 -0
  384. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype spa_t +3 -0
  385. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype struct spa +3 -0
  386. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype thread_union +6 -0
  387. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/ptype zfs_case +7 -0
  388. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/sizeof bogus +3 -0
  389. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/sizeof size_t +3 -0
  390. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/sizeof spa vdev +4 -0
  391. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/sizeof struct spa +3 -0
  392. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/sizeof task_struct +3 -0
  393. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa rpool | filter 'obj.bogus == 1624' +3 -0
  394. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa rpool | filter 'obj.spa_syncing_txg < 1624' | member spa_name +3 -0
  395. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa rpool | filter 'obj.spa_syncing_txg <= 1624' | member spa_name +3 -0
  396. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa rpool | filter 'obj.spa_syncing_txg == 1624' | member spa_name +2 -0
  397. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa rpool | filter 'obj.spa_syncing_txg > 1624' | member spa_name +2 -0
  398. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa rpool | filter 'obj.spa_syncing_txg >= 1624' | member spa_name +2 -0
  399. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa rpool | filter 'obj.spa_syncing_txg bogus_op 1624' +3 -0
  400. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | deref | sum +3 -0
  401. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | head 1 | deref | print --RAW -s +3 -0
  402. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | head 1 | deref | print -rs +3 -0
  403. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | head 1 | member spa_name[1] | print +3 -0
  404. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | head 1 | member spa_name[1] | print -c +3 -0
  405. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | head 1 | member spa_name[1] | print -cr +3 -0
  406. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | head 1 | member spa_zio_taskq[0][0].stqs_taskq +3 -0
  407. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | head 1 | member spa_zio_taskq[0][0].stqs_taskq[0] +3 -0
  408. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | member spa_ubsync->ub_rootbp +3 -0
  409. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | member spa_ubsync.bogus +3 -0
  410. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | member spa_ubsync.ub_rootbp.blk_dva[0].dva_word +5 -0
  411. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | member spa_zio_taskq[0][0].stqs_taskq | array +3 -0
  412. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | member spa_zio_taskq[0][0].stqs_taskq | array 2 +8 -0
  413. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | member spa_zio_taskq[0][0].stqs_taskq-> +3 -0
  414. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | member spa_zio_taskq[0][0].stqs_taskq. +3 -0
  415. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | range_tree +3 -0
  416. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/spa | vdev | metaslab | deref | sizeof | sum +3 -0
  417. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/sum +3 -0
  418. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/thread | filter /"obj.comm == ///"bogus///"/" | thread" +4 -0
  419. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/threads | deref | sizeof | sum +3 -0
  420. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/threads | sizeof | sum +3 -0
  421. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/zfs_dbgmsg | filter '== obj' +3 -0
  422. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/zfs_dbgmsg | filter 'obj ==' +3 -0
  423. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/zfs_dbgmsg | filter 'obj' +3 -0
  424. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/zfs_dbgmsg | head 1 | member zdm_msg | array +3 -0
  425. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/zfs_dbgmsg | head 1 | member zdm_msg | array -1 +3 -0
  426. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/zfs_dbgmsg | head 1 | member zdm_msg | array 0 +3 -0
  427. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/zfs_dbgmsg | head 1 | member zdm_msg | array 2 +5 -0
  428. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/core/zfs_dbgmsg | head 1 | member zdm_msg[2] +4 -0
  429. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr init_task | member comm | addr | container_of bogus_type comm | cast void * +3 -0
  430. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr init_task | member comm | addr | container_of int comm | cast void * +3 -0
  431. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr init_task | member comm | addr | container_of pid comm | cast void * +3 -0
  432. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr init_task | member comm | addr | container_of task_struct bogus_member | cast void * +3 -0
  433. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr init_task | member comm | addr | container_of task_struct comm | cast void * +3 -0
  434. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr init_task | member comm | container_of task_struct comm | cast void * +3 -0
  435. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr init_task | member thread_pid.tasks[3] | lxhlist bogus_type pid_links[3] | member comm +3 -0
  436. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr init_task | member thread_pid.tasks[3] | lxhlist task_struct bogus_member | member comm +3 -0
  437. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr init_task | member thread_pid.tasks[3] | lxhlist task_struct pid_links[3] | member comm +712 -0
  438. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr modules | lxlist bogus_type list | member name +3 -0
  439. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr modules | lxlist module bogus_member | member name +3 -0
  440. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr modules | lxlist module list | member name +69 -0
  441. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr spa_namespace_avl | cpu_counter_sum +3 -0
  442. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr tcp_orphan_count | cpu_counter_sum +3 -0
  443. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr tcp_sockets_allocated | cpu_counter_sum +3 -0
  444. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr vm_committed_as | cpu_counter_sum +3 -0
  445. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr vmap_area_root | rbtree bogus_type rb_node +3 -0
  446. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr vmap_area_root | rbtree vmap_area bogus_member +3 -0
  447. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/addr vmap_area_root | rbtree vmap_area rb_node +2792 -0
  448. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/crashed_thread +22 -0
  449. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/crashed_thread | stacks +22 -0
  450. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/dbuf |head 1 |deref |member db_buf |whatis +3 -0
  451. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/dmesg +613 -0
  452. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/dmesg -l 3 +5 -0
  453. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/echo 0x0 | cpu_counter_sum +3 -0
  454. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/echo 0xffffa089669edc00 | stack +5 -0
  455. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/find_task 1 +3 -0
  456. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/find_task 1 2 +4 -0
  457. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/find_task 1 2 | member comm +4 -0
  458. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/find_task 1 | fget 1 4 +4 -0
  459. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/find_task 1 | fget 1 4 123123 +5 -0
  460. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/pid 1 +3 -0
  461. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/pid 1 10 12437 +5 -0
  462. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs +180 -0
  463. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs -o bogus +3 -0
  464. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs -s active_objs -o active_objs,util,name +180 -0
  465. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs -s active_objs -o util +3 -0
  466. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs -s bogus +4 -0
  467. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs -s util +180 -0
  468. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs -s util | slabs +180 -0
  469. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs -v +180 -0
  470. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"UNIX/"' | slub_cache | count" +3 -0
  471. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"dnode_t/"' |walk | head 6056 | tail 1| cast dnode_t * | deref |member dn_phys |member dn_blkptr[0] |blkptr" +6 -0
  472. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"dnode_t/"' |walk | tail 8 | head 1 | cast dnode_t * | deref |member dn_phys |member dn_blkptr[0] |blkptr" +6 -0
  473. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu" +4 -0
  474. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 0" +3 -0
  475. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 0 1" +4 -0
  476. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 0 2 1" +4 -0
  477. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 1" +3 -0
  478. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 100" +3 -0
  479. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 2" +3 -0
  480. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"kmalloc-8/"' | member cpu_slab | percpu 3" +3 -0
  481. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"zio_cache/"' | slub_cache" +1609 -0
  482. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"zio_cache/"' | slub_cache | cast zio_t * | member io_spa.spa_name" +1609 -0
  483. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"zio_cache/"' | slub_cache | count" +3 -0
  484. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | filter 'obj.name == /"zio_cache/"' | walk" +1609 -0
  485. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | head 2 | slabs +6 -0
  486. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/slabs | pp +180 -0
  487. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/stacks +902 -0
  488. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/stacks -a +1965 -0
  489. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/stacks -c bogus +3 -0
  490. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/stacks -c spa_sync +21 -0
  491. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/stacks -m bogus +3 -0
  492. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/stacks -m bogus | count +3 -0
  493. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/stacks -m zfs +309 -0
  494. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/stacks -m zfs -c spa_sync +21 -0
  495. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/stacks -m zfs -c zthr_procedure +41 -0
  496. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/stacks -m zfs | count +3 -0
  497. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/stacks -t bogus +3 -0
  498. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/thread +1135 -0
  499. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/threads +1135 -0
  500. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/threads | count +3 -0
  501. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/threads | filter 'obj.comm == /"java/"' | stack" +18 -0
  502. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/threads | filter 'obj.comm == /"java/"' | threads" +8 -0
  503. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/whatis 0xf987kkbbh +3 -0
  504. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/whatis 0xffff +3 -0
  505. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/whatis 0xffffa0888c766000 0xffffa089407ca870 +4 -0
  506. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/linux/whatis 0xffffa089407ca870 +3 -0
  507. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/addr arc_mru | member [0].arcs_list[1] | multilist | head +3 -0
  508. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/addr arc_mru | member [0].arcs_list[1] | walk | head +3 -0
  509. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/addr spa_namespace_avl | avl +5 -0
  510. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/addr spa_namespace_avl | walk +5 -0
  511. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spa | member spa_config_list | spl_list +5 -0
  512. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spa | member spa_config_list | walk +5 -0
  513. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spa | member spa_evicting_os_list | spl_list +2 -0
  514. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spa | member spa_evicting_os_list | walk +2 -0
  515. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spa | member spa_normal_class.mc_metaslab_txg_list | multilist +50 -0
  516. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spa | member spa_normal_class.mc_metaslab_txg_list | walk +50 -0
  517. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spl_kmem_caches +85 -0
  518. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spl_kmem_caches -o name,entry_size -s entry_size +85 -0
  519. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spl_kmem_caches -o name,source +85 -0
  520. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spl_kmem_caches -s entry_size +85 -0
  521. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spl_kmem_caches -s entry_size | head 4 | spl_kmem_caches +8 -0
  522. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spl_kmem_caches -v +85 -0
  523. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spl_kmem_caches | filter 'obj.skc_linux_cache == 0' | spl_cache +6551 -0
  524. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spl_kmem_caches | filter 'obj.skc_linux_cache == 0' | spl_cache | cnt +3 -0
  525. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spl_kmem_caches | filter 'obj.skc_linux_cache > 0' | filter 'obj.skc_obj_alloc > 0' | head 1 | spl_cache +2 -0
  526. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spl_kmem_caches | filter 'obj.skc_name == /"ddt_cache/"' | walk" +50 -0
  527. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/spl/spl_kmem_caches | pp +85 -0
  528. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/arc +138 -0
  529. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/dbuf +8473 -0
  530. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/dbuf -l 1 +246 -0
  531. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/dbuf | dbuf -l 1 +246 -0
  532. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/dbuf | dbuf -l 1 | head | dbuf +13 -0
  533. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/dbuf | head 1 | member db_blkptr | blkptr +6 -0
  534. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa +7 -0
  535. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa -H +32 -0
  536. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa -mH +934 -0
  537. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa -v +20 -0
  538. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa -vH +93 -0
  539. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa -vm +198 -0
  540. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa -vmH +934 -0
  541. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa data | member spa_normal_class.mc_histogram | zfs_histogram +2 -0
  542. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa data | vdev | metaslab | filter 'obj.ms_loaded == 1' | head 1 | member ms_allocatable.rt_histogram | zhist +2 -0
  543. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa data | vdev | metaslab | filter 'obj.ms_loaded == 1' | head 1 | member ms_sm.sm_phys.smp_histogram | zhist +2 -0
  544. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa data | vdev | metaslab | filter 'obj.ms_loaded == 1' | head 1 | member ms_sm.sm_phys.smp_histogram | zhist 9 +2 -0
  545. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa rpool +5 -0
  546. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa | head 1 | deref |member spa_uberblock | member ub_rootbp | blkptr +6 -0
  547. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa | head 1 | spa +5 -0
  548. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa | pp +7 -0
  549. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa | vdev +11 -0
  550. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa | vdev | metaslab +174 -0
  551. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa | vdev | metaslab -w +174 -0
  552. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa | vdev | metaslab | member ms_allocatable | range_tree +2468 -0
  553. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa | vdev | metaslab | member ms_allocatable.rt_root | zfs_btree +2298 -0
  554. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/spa | vdev | pp +11 -0
  555. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/zfs_dbgmsg +1506 -0
  556. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/zfs_dbgmsg | tail 5 | zfs_dbgmsg +7 -0
  557. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/zio +33 -0
  558. sdb_debugger-0.2.1/tests/integration/data/regression_output/dump.202303131823/zfs/zio -r +1682 -0
  559. sdb_debugger-0.2.1/tests/integration/gen_regression_output.py +40 -0
  560. sdb_debugger-0.2.1/tests/integration/infra.py +401 -0
  561. sdb_debugger-0.2.1/tests/integration/test_core_generic.py +228 -0
  562. sdb_debugger-0.2.1/tests/integration/test_linux_generic.py +189 -0
  563. sdb_debugger-0.2.1/tests/integration/test_spl_generic.py +76 -0
  564. sdb_debugger-0.2.1/tests/integration/test_zfs_generic.py +82 -0
  565. sdb_debugger-0.2.1/tests/unit/__init__.py +216 -0
  566. sdb_debugger-0.2.1/tests/unit/commands/__init__.py +0 -0
  567. sdb_debugger-0.2.1/tests/unit/commands/test_address.py +99 -0
  568. sdb_debugger-0.2.1/tests/unit/commands/test_cast.py +105 -0
  569. sdb_debugger-0.2.1/tests/unit/commands/test_count.py +72 -0
  570. sdb_debugger-0.2.1/tests/unit/commands/test_echo.py +162 -0
  571. sdb_debugger-0.2.1/tests/unit/commands/test_filter.py +114 -0
  572. sdb_debugger-0.2.1/tests/unit/commands/test_member.py +92 -0
  573. sdb_debugger-0.2.1/tests/unit/test_parser.py +146 -0
@@ -0,0 +1,13 @@
1
+ #!/bin/bash -eu
2
+
3
+ DATA_DIR="tests/integration/data"
4
+
5
+ echo "checking folder structure ..."
6
+ if [ ! -d $DATA_DIR ]; then
7
+ exit 1
8
+ fi
9
+
10
+ echo "removing all crash/core dumps ..."
11
+ rm -rf $DATA_DIR/dumps
12
+
13
+ echo "Done"
@@ -0,0 +1,10 @@
1
+ #!/bin/bash -eux
2
+
3
+ #
4
+ # Download all the reference core dumps from the public gDrive folder
5
+ # and place them in the root directory.
6
+ #
7
+ python3 -m pip install gdown
8
+ gdown --folder 1fdPVuGXbxNKcMEVwhuda04hZTPCcYJms
9
+ mv SDB-Public/* .
10
+ rmdir SDB-Public
@@ -0,0 +1,73 @@
1
+ #!/bin/bash -eu
2
+
3
+ #
4
+ # Assumptions for this to work:
5
+ # [1] This script is executed from the root of the SDB repo
6
+ # [2] The archive downloaded from gdrive has one of the following profiles:
7
+ # Profile A - It is lzma-compressed and has the following file structure:
8
+ # dump-data
9
+ # ├── dump.201912060006
10
+ # ├── mods
11
+ # │   ├── avl
12
+ # │   │   └── zavl.ko
13
+ # .....
14
+ # │   └── zfs
15
+ # │   └── zfs.ko
16
+ # └── vmlinux-5.0.0-36-generic
17
+ # Profile B - It is gzip-compressed and generated by the savedump utility.
18
+ #
19
+ # Note: Profile A is deprecated. It was format used for dump archives created
20
+ # manually.
21
+ #
22
+
23
+ DATA_DIR="tests/integration/data"
24
+
25
+ if [ $# -eq 0 ]; then
26
+ echo "error: no crash dump archive argument supplied"
27
+ exit 1
28
+ fi
29
+
30
+ echo "checking folder structure ..."
31
+ if [ ! -d $DATA_DIR ]; then
32
+ echo "error: please cd to the root of the git repo"
33
+ exit 1
34
+ fi
35
+
36
+ if [ ! -f "$1" ]; then
37
+ echo "error: $1: file not found"
38
+ fi
39
+
40
+ if [[ $1 == *.tar.lzma ]]; then
41
+ # Profile A
42
+ dump_name=${1%.tar.lzma}
43
+
44
+ echo "decompressing dump ..."
45
+ tar -x --lzma -f $1
46
+
47
+ echo "moving contents to tests/integration/data/dumps/${dump_name} ..."
48
+ mkdir -p $DATA_DIR/dumps/${dump_name}
49
+ mv dump-data/* $DATA_DIR/dumps/${dump_name}
50
+ [ $? -eq 0 ] || exit 1
51
+
52
+ rmdir dump-data
53
+ [ $? -eq 0 ] || exit 1
54
+ elif [[ $1 == *.tar.gz ]]; then
55
+ # Profile B
56
+ dump_name=${1%.tar.gz}
57
+
58
+ echo "decompressing dump ..."
59
+ tar xzf $1
60
+
61
+ echo "moving contents to tests/integration/data/dumps/${dump_name} ..."
62
+ mkdir -p $DATA_DIR/dumps/${dump_name}
63
+ mv *${dump_name}/* $DATA_DIR/dumps/${dump_name}
64
+ [ $? -eq 0 ] || exit 1
65
+
66
+ rmdir *${dump_name}
67
+ [ $? -eq 0 ] || exit 1
68
+ else
69
+ echo "unknown dump profile"
70
+ exit 1
71
+ fi
72
+
73
+ echo "Done"
@@ -0,0 +1,17 @@
1
+ #!/bin/bash -eux
2
+
3
+ #
4
+ # These are build requirements of "drgn"; if we don't install these, the
5
+ # build/install of "drgn" will fail below.
6
+ #
7
+ sudo apt update
8
+ sudo apt install bison flex libelf-dev libdw-dev libomp5 libomp-dev
9
+
10
+ # Install setuptools for Python 3.12+ compatibility
11
+ python3 -m pip install --upgrade pip setuptools wheel
12
+
13
+ git clone https://github.com/osandov/drgn.git
14
+
15
+ cd drgn
16
+ python3 -m pip install .
17
+ cd -
@@ -0,0 +1,23 @@
1
+ #!/bin/bash -eux
2
+
3
+ #
4
+ # These are build requirements of "libkdumpfile"; if we don't install these,
5
+ # the build/install of "libkdumpfile" will fail below. We install python3-dev
6
+ # which will work with whatever Python version is set up by actions/setup-python.
7
+ #
8
+ sudo apt update
9
+ sudo apt install autoconf automake liblzo2-dev libsnappy-dev libtool pkg-config zlib1g-dev binutils-dev python3-dev
10
+
11
+ git clone https://codeberg.org/ptesarik/libkdumpfile.git
12
+
13
+ cd libkdumpfile
14
+ autoreconf -fi
15
+ ./configure --with-python=$(which python3)
16
+ make
17
+ sudo make install
18
+ cd -
19
+
20
+ #
21
+ # Debug statements
22
+ #
23
+ echo $(which python3)
@@ -0,0 +1,145 @@
1
+ on:
2
+ push:
3
+ branches:
4
+ - '**'
5
+ tags-ignore:
6
+ - 'v*' # Release workflow handles version tags
7
+ pull_request:
8
+ schedule:
9
+ - cron: '0 0 * * *'
10
+
11
+ jobs:
12
+ #
13
+ # Verify the build and installation of SDB.
14
+ #
15
+ install:
16
+ runs-on: ubuntu-24.04
17
+ strategy:
18
+ matrix:
19
+ python-version: ['3.10', '3.12']
20
+ steps:
21
+ - uses: actions/checkout@v4
22
+ - uses: actions/setup-python@v5
23
+ with:
24
+ python-version: ${{ matrix.python-version }}
25
+ - run: python3 -m pip install --upgrade pip setuptools wheel
26
+ - run: python3 -m pip install .
27
+ #
28
+ # The statement below is used for debugging the Github job.
29
+ #
30
+ - run: python3 --version
31
+ #
32
+ # Verify "pylint" runs successfully.
33
+ #
34
+ # Note, we need to have "drgn" installed in order to run "pylint".
35
+ # Thus, prior to running "pylint" we have to clone, build, and install
36
+ # the "drgn" from source (there's no package currently available).
37
+ #
38
+ pylint:
39
+ runs-on: ubuntu-24.04
40
+ steps:
41
+ - uses: actions/checkout@v4
42
+ - uses: actions/setup-python@v5
43
+ with:
44
+ python-version: '3.10'
45
+ - run: ./.github/scripts/install-drgn.sh
46
+ - run: python3 -m pip install pylint pytest
47
+ - run: pylint -d duplicate-code -d invalid-name sdb
48
+ - run: pylint -d duplicate-code -d invalid-name tests
49
+ #
50
+ # Verify "pytest" runs successfully on unit tests.
51
+ #
52
+ # Note, we need to have "drgn" installed in order to run "pytest". Thus,
53
+ # prior to running "pytest" we have to clone, build, and install the
54
+ # "drgn" from source (there's no package currently available).
55
+ #
56
+ pytest-unit:
57
+ runs-on: ubuntu-24.04
58
+ strategy:
59
+ matrix:
60
+ python-version: ['3.10', '3.12']
61
+ steps:
62
+ - uses: actions/checkout@v4
63
+ - uses: actions/setup-python@v5
64
+ with:
65
+ python-version: ${{ matrix.python-version }}
66
+ - run: python3 -m pip install pytest pytest-cov
67
+ - run: ./.github/scripts/install-drgn.sh
68
+ - run: pytest -v --cov sdb --cov-report xml tests/unit
69
+ - uses: codecov/codecov-action@v4
70
+ with:
71
+ token: ${{ secrets.CODECOV_TOKEN }}
72
+ #
73
+ # Verify "pytest" runs successfully on integration tests with crash dumps.
74
+ #
75
+ # Note, we need to have "drgn" and "libkdumpfile" installed to run pytest
76
+ # with crash dumps. We download both reference dumps for full integration testing.
77
+ #
78
+ pytest-integration:
79
+ runs-on: ubuntu-24.04
80
+ strategy:
81
+ matrix:
82
+ python-version: ['3.10', '3.12']
83
+ env:
84
+ AWS_DEFAULT_REGION: 'us-west-2'
85
+ steps:
86
+ - uses: actions/checkout@v4
87
+ - uses: actions/setup-python@v5
88
+ with:
89
+ python-version: ${{ matrix.python-version }}
90
+ - run: python3 -m pip install pytest pytest-cov
91
+ - run: ./.github/scripts/install-libkdumpfile.sh
92
+ - run: ./.github/scripts/install-drgn.sh
93
+ - run: ./.github/scripts/download-dumps-from-gdrive.sh
94
+ - run: ./.github/scripts/extract-dump.sh dump.201912060006.tar.lzma
95
+ - run: ./.github/scripts/extract-dump.sh dump.202303131823.tar.gz
96
+ - run: pytest -v --cov sdb --cov-report xml tests/integration
97
+ - uses: codecov/codecov-action@v4
98
+ with:
99
+ token: ${{ secrets.CODECOV_TOKEN }}
100
+ #
101
+ # Verify "yapf" runs successfully.
102
+ #
103
+ yapf:
104
+ runs-on: ubuntu-24.04
105
+ steps:
106
+ - uses: actions/checkout@v4
107
+ - uses: actions/setup-python@v5
108
+ with:
109
+ python-version: '3.10'
110
+ - run: python3 -m pip install yapf
111
+ - run: yapf --diff --style google --recursive sdb
112
+ - run: yapf --diff --style google --recursive tests
113
+ #
114
+ # Verify "ruff" runs successfully.
115
+ #
116
+ ruff:
117
+ runs-on: ubuntu-24.04
118
+ steps:
119
+ - uses: actions/checkout@v4
120
+ - uses: actions/setup-python@v5
121
+ with:
122
+ python-version: '3.10'
123
+ - run: python3 -m pip install ruff
124
+ - run: ruff check sdb tests
125
+ #
126
+ # Verify "mypy" runs successfully.
127
+ #
128
+ # Note, we need to have "drgn" installed in order to run "mypy".
129
+ # Thus, prior to running "mypy" we have to clone, build, and install
130
+ # the "drgn" from source (there's no package currently available).
131
+ #
132
+ # Also note that we supply --ignore-missing-imports to the tests package
133
+ # because pytest doesn't provide stubs on typeshed.
134
+ #
135
+ mypy:
136
+ runs-on: ubuntu-24.04
137
+ steps:
138
+ - uses: actions/checkout@v4
139
+ - uses: actions/setup-python@v5
140
+ with:
141
+ python-version: '3.10'
142
+ - run: ./.github/scripts/install-drgn.sh
143
+ - run: python3 -m pip install mypy pytest
144
+ - run: python3 -m mypy --strict --show-error-codes -p sdb
145
+ - run: python3 -m mypy --strict --ignore-missing-imports --show-error-codes -p tests
@@ -0,0 +1,154 @@
1
+ #
2
+ # Release workflow - triggered on version tag push (e.g., v0.2.0)
3
+ #
4
+ # This workflow:
5
+ # 1. Runs all CI checks (lint, type-check, tests)
6
+ # 2. Builds the package (sdist + wheel)
7
+ # 3. Publishes to PyPI using Trusted Publishing (OIDC)
8
+ # 4. Creates a GitHub Release with auto-generated notes
9
+ #
10
+ name: Release
11
+
12
+ on:
13
+ push:
14
+ tags:
15
+ - 'v*'
16
+
17
+ # Required for PyPI Trusted Publishing (OIDC)
18
+ permissions:
19
+ contents: write # For creating GitHub releases
20
+ id-token: write # For PyPI OIDC authentication
21
+
22
+ jobs:
23
+ #
24
+ # Run all CI checks before releasing
25
+ #
26
+ lint:
27
+ runs-on: ubuntu-24.04
28
+ steps:
29
+ - uses: actions/checkout@v4
30
+ - uses: actions/setup-python@v5
31
+ with:
32
+ python-version: '3.10'
33
+ - run: ./.github/scripts/install-drgn.sh
34
+ - run: python3 -m pip install pylint pytest ruff yapf
35
+ - run: pylint -d duplicate-code -d invalid-name sdb
36
+ - run: pylint -d duplicate-code -d invalid-name tests
37
+ - run: ruff check sdb tests
38
+ - run: yapf --diff --style google --recursive sdb
39
+ - run: yapf --diff --style google --recursive tests
40
+
41
+ type-check:
42
+ runs-on: ubuntu-24.04
43
+ steps:
44
+ - uses: actions/checkout@v4
45
+ - uses: actions/setup-python@v5
46
+ with:
47
+ python-version: '3.10'
48
+ - run: ./.github/scripts/install-drgn.sh
49
+ - run: python3 -m pip install mypy pytest
50
+ - run: python3 -m mypy --strict --show-error-codes -p sdb
51
+ - run: python3 -m mypy --strict --ignore-missing-imports --show-error-codes -p tests
52
+
53
+ test-unit:
54
+ runs-on: ubuntu-24.04
55
+ strategy:
56
+ matrix:
57
+ python-version: ['3.10', '3.12']
58
+ steps:
59
+ - uses: actions/checkout@v4
60
+ - uses: actions/setup-python@v5
61
+ with:
62
+ python-version: ${{ matrix.python-version }}
63
+ - run: python3 -m pip install pytest pytest-cov
64
+ - run: ./.github/scripts/install-drgn.sh
65
+ - run: pytest -v --cov sdb --cov-report xml tests/unit
66
+
67
+ test-integration:
68
+ runs-on: ubuntu-24.04
69
+ strategy:
70
+ matrix:
71
+ python-version: ['3.10', '3.12']
72
+ env:
73
+ AWS_DEFAULT_REGION: 'us-west-2'
74
+ steps:
75
+ - uses: actions/checkout@v4
76
+ - uses: actions/setup-python@v5
77
+ with:
78
+ python-version: ${{ matrix.python-version }}
79
+ - run: python3 -m pip install pytest pytest-cov
80
+ - run: ./.github/scripts/install-libkdumpfile.sh
81
+ - run: ./.github/scripts/install-drgn.sh
82
+ - run: ./.github/scripts/download-dumps-from-gdrive.sh
83
+ - run: ./.github/scripts/extract-dump.sh dump.201912060006.tar.lzma
84
+ - run: ./.github/scripts/extract-dump.sh dump.202303131823.tar.gz
85
+ - run: pytest -v --cov sdb --cov-report xml tests/integration
86
+
87
+ #
88
+ # Build the package
89
+ #
90
+ build:
91
+ needs: [lint, type-check, test-unit, test-integration]
92
+ runs-on: ubuntu-24.04
93
+ steps:
94
+ - uses: actions/checkout@v4
95
+ with:
96
+ fetch-depth: 0 # Required for setuptools_scm to get version from tags
97
+ - uses: actions/setup-python@v5
98
+ with:
99
+ python-version: '3.10'
100
+ - name: Install build dependencies
101
+ run: python3 -m pip install build
102
+ - name: Build package
103
+ run: python3 -m build
104
+ - name: Upload build artifacts
105
+ uses: actions/upload-artifact@v4
106
+ with:
107
+ name: dist
108
+ path: dist/
109
+
110
+ #
111
+ # Publish to PyPI using Trusted Publishing (OIDC)
112
+ #
113
+ publish-pypi:
114
+ needs: build
115
+ runs-on: ubuntu-24.04
116
+ environment:
117
+ name: pypi
118
+ url: https://pypi.org/project/sdb-debugger/
119
+ steps:
120
+ - name: Download build artifacts
121
+ uses: actions/download-artifact@v4
122
+ with:
123
+ name: dist
124
+ path: dist/
125
+ - name: Publish to PyPI
126
+ uses: pypa/gh-action-pypi-publish@release/v1
127
+
128
+ #
129
+ # Create GitHub Release with auto-generated notes
130
+ #
131
+ github-release:
132
+ needs: publish-pypi
133
+ runs-on: ubuntu-24.04
134
+ steps:
135
+ - uses: actions/checkout@v4
136
+ with:
137
+ fetch-depth: 0 # Required for generating release notes
138
+ - name: Download build artifacts
139
+ uses: actions/download-artifact@v4
140
+ with:
141
+ name: dist
142
+ path: dist/
143
+ - name: Get version from tag
144
+ id: version
145
+ run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
146
+ - name: Create GitHub Release
147
+ uses: softprops/action-gh-release@v2
148
+ with:
149
+ name: SDB ${{ steps.version.outputs.VERSION }}
150
+ generate_release_notes: true
151
+ files: |
152
+ dist/*
153
+ env:
154
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -0,0 +1,119 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ *.egg-info/
24
+ .installed.cfg
25
+ *.egg
26
+ MANIFEST
27
+
28
+ # PyInstaller
29
+ # Usually these files are written by a python script from a template
30
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
31
+ *.manifest
32
+ *.spec
33
+
34
+ # Installer logs
35
+ pip-log.txt
36
+ pip-delete-this-directory.txt
37
+
38
+ # Unit test / coverage reports
39
+ htmlcov/
40
+ .tox/
41
+ .coverage
42
+ .coverage.*
43
+ .cache
44
+ nosetests.xml
45
+ coverage.xml
46
+ *.cover
47
+ .hypothesis/
48
+ .pytest_cache/
49
+
50
+ # Translations
51
+ *.mo
52
+ *.pot
53
+
54
+ # Django stuff:
55
+ *.log
56
+ local_settings.py
57
+ db.sqlite3
58
+
59
+ # Flask stuff:
60
+ instance/
61
+ .webassets-cache
62
+
63
+ # Scrapy stuff:
64
+ .scrapy
65
+
66
+ # Sphinx documentation
67
+ docs/_build/
68
+
69
+ # PyBuilder
70
+ target/
71
+
72
+ # Jupyter Notebook
73
+ .ipynb_checkpoints
74
+
75
+ # pyenv
76
+ .python-version
77
+
78
+ # celery beat schedule file
79
+ celerybeat-schedule
80
+
81
+ # SageMath parsed files
82
+ *.sage.py
83
+
84
+ # Environments
85
+ .env
86
+ .venv
87
+ env/
88
+ venv/
89
+ ENV/
90
+ env.bak/
91
+ venv.bak/
92
+
93
+ # Spyder project settings
94
+ .spyderproject
95
+ .spyproject
96
+
97
+ # Rope project settings
98
+ .ropeproject
99
+
100
+ # mkdocs documentation
101
+ /site
102
+
103
+ # mypy
104
+ .mypy_cache/
105
+
106
+ # crash-dump related files
107
+ tests/integration/data/dump.*
108
+ tests/integration/data/vmlinux-*
109
+ tests/integration/data/mods/
110
+
111
+ # vim
112
+ *.swp
113
+
114
+ # zipped folders - usually crash dumps
115
+ *.lzma
116
+ *.tar.gz
117
+
118
+ # crash dump directory
119
+ tests/integration/data/dumps/
@@ -0,0 +1,128 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, religion, or sexual identity
10
+ and orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming,
13
+ diverse, inclusive, and healthy community.
14
+
15
+ ## Our Standards
16
+
17
+ Examples of behavior that contributes to a positive environment for our
18
+ community include:
19
+
20
+ * Demonstrating empathy and kindness toward other people
21
+ * Being respectful of differing opinions, viewpoints, and experiences
22
+ * Giving and gracefully accepting constructive feedback
23
+ * Accepting responsibility and apologizing to those affected by our mistakes,
24
+ and learning from the experience
25
+ * Focusing on what is best not just for us as individuals, but for the
26
+ overall community
27
+
28
+ Examples of unacceptable behavior include:
29
+
30
+ * The use of sexualized language or imagery, and sexual attention or
31
+ advances of any kind
32
+ * Trolling, insulting or derogatory comments, and personal or political attacks
33
+ * Public or private harassment
34
+ * Publishing others' private information, such as a physical or email
35
+ address, without their explicit permission
36
+ * Other conduct which could reasonably be considered inappropriate in a
37
+ professional setting
38
+
39
+ ## Enforcement Responsibilities
40
+
41
+ Community leaders are responsible for clarifying and enforcing our standards of
42
+ acceptable behavior and will take appropriate and fair corrective action in
43
+ response to any behavior that they deem inappropriate, threatening, offensive,
44
+ or harmful.
45
+
46
+ Community leaders have the right and responsibility to remove, edit, or reject
47
+ comments, commits, code, wiki edits, issues, and other contributions that are
48
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
49
+ decisions when appropriate.
50
+
51
+ ## Scope
52
+
53
+ This Code of Conduct applies within all community spaces, and also applies when
54
+ an individual is officially representing the community in public spaces.
55
+ Examples of representing our community include using an official e-mail address,
56
+ posting via an official social media account, or acting as an appointed
57
+ representative at an online or offline event.
58
+
59
+ ## Enforcement
60
+
61
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
62
+ reported to the community leaders responsible for enforcement at
63
+ serapheimd@gmail.com.
64
+ All complaints will be reviewed and investigated promptly and fairly.
65
+
66
+ All community leaders are obligated to respect the privacy and security of the
67
+ reporter of any incident.
68
+
69
+ ## Enforcement Guidelines
70
+
71
+ Community leaders will follow these Community Impact Guidelines in determining
72
+ the consequences for any action they deem in violation of this Code of Conduct:
73
+
74
+ ### 1. Correction
75
+
76
+ **Community Impact**: Use of inappropriate language or other behavior deemed
77
+ unprofessional or unwelcome in the community.
78
+
79
+ **Consequence**: A private, written warning from community leaders, providing
80
+ clarity around the nature of the violation and an explanation of why the
81
+ behavior was inappropriate. A public apology may be requested.
82
+
83
+ ### 2. Warning
84
+
85
+ **Community Impact**: A violation through a single incident or series
86
+ of actions.
87
+
88
+ **Consequence**: A warning with consequences for continued behavior. No
89
+ interaction with the people involved, including unsolicited interaction with
90
+ those enforcing the Code of Conduct, for a specified period of time. This
91
+ includes avoiding interactions in community spaces as well as external channels
92
+ like social media. Violating these terms may lead to a temporary or
93
+ permanent ban.
94
+
95
+ ### 3. Temporary Ban
96
+
97
+ **Community Impact**: A serious violation of community standards, including
98
+ sustained inappropriate behavior.
99
+
100
+ **Consequence**: A temporary ban from any sort of interaction or public
101
+ communication with the community for a specified period of time. No public or
102
+ private interaction with the people involved, including unsolicited interaction
103
+ with those enforcing the Code of Conduct, is allowed during this period.
104
+ Violating these terms may lead to a permanent ban.
105
+
106
+ ### 4. Permanent Ban
107
+
108
+ **Community Impact**: Demonstrating a pattern of violation of community
109
+ standards, including sustained inappropriate behavior, harassment of an
110
+ individual, or aggression toward or disparagement of classes of individuals.
111
+
112
+ **Consequence**: A permanent ban from any sort of public interaction within
113
+ the community.
114
+
115
+ ## Attribution
116
+
117
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118
+ version 2.0, available at
119
+ https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
120
+
121
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct
122
+ enforcement ladder](https://github.com/mozilla/diversity).
123
+
124
+ [homepage]: https://www.contributor-covenant.org
125
+
126
+ For answers to common questions about this code of conduct, see the FAQ at
127
+ https://www.contributor-covenant.org/faq. Translations are available at
128
+ https://www.contributor-covenant.org/translations.