Fuzz Testing - CI/CD Glossary Definition
Fuzz testing repeatedly feeds randomized or mutated inputs to a target (often coverage-guided) to surface crashes, hangs, and undefined behavior; CI runs fuzzers continuously to harden parsers and security-sensitive code.
Related guides
Property-Based Testing - CI/CD Glossary DefinitionProperty-based testing generates many random inputs and checks that a stated property always holds, finding e…
Regression Suite - CI/CD Glossary DefinitionA regression suite is the body of tests that guard against previously fixed bugs reappearing, run on every ch…
Core Dump - CI/CD Glossary DefinitionA core dump is a snapshot of a crashed process’s memory written to disk, so engineers can load it in a debugg…