Sanitizer - CI/CD用語集の定義
sanitizer (ASan、TSan、UBSan) は、コンパイル時にビルドを計装して、あるクラスのバグを runtime に検出します - メモリエラー、data race、または未定義動作 - CI の下で実行すると、潜在的な障害を即座で位置特定された失敗に変えます。
関連ガイド
Data Race - CI/CD Glossary DefinitionA data race is two threads accessing the same memory at once with at least one write and no synchronization -…
Undefined Behavior - CI/CD Glossary DefinitionUndefined behavior is code whose effect the language spec leaves unconstrained, so the compiler may do anythi…
Memory Safety - CI/CD Glossary DefinitionMemory safety guarantees code never accesses memory incorrectly - no buffer overruns, use-after-free, or null…