Fuzz Testing - CI/CD用語集の定義
Fuzz testingは、ランダムまたは変異させた入力を対象へ繰り返し与え(多くはカバレッジガイド付き)、クラッシュ、ハング、未定義動作を表面化させます。CIはparserやセキュリティに敏感なコードを堅牢にするため、fuzzerを継続的に実行します。
関連ガイド
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…