Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 1.71 KB

File metadata and controls

35 lines (29 loc) · 1.71 KB
title Delta debugging
layout page

This page is meant to hold a collection of delta debugging tools and assorted commentary because I am mentioning them in multiple places.

Other implementations of/similar to C-Reduce:

  • delta assists you in minimizing "interesting" files subject to a test of their interestingness
  • cvise, a super-parallel Python port of C-Reduce
  • Shrink Ray, a modern multi-format test-case reducer
  • treereduce, a fast, parallel, syntax-aware test case reducer based on tree-sitter grammars
  • halfempty
  • multidelta

I saw somewhere (but can no longer find the link to) someone's implementation of delta debugging on commit logs (more advanced than git bisect). If you find this, please send it my way.

Waleed Khan showed me his cool project but I don't think that was what I originally saw.