Author: Aiden Grossman Date: 2026-01-09T17:27:04Z New Revision: 964f9c0754937730953b5d6e0cfd9c352010fd16
URL: https://github.com/llvm/llvm-project/commit/964f9c0754937730953b5d6e0cfd9c352010fd16 DIFF: https://github.com/llvm/llvm-project/commit/964f9c0754937730953b5d6e0cfd9c352010fd16.diff LOG: [Clang][Driver] Disable crash-ir-repro.cpp on UBSan UBSan causes the test to raise a signal, which violates the not expectations after recent lit expectations. Added: Modified: clang/test/Driver/crash-ir-repro.cpp Removed: ################################################################################ diff --git a/clang/test/Driver/crash-ir-repro.cpp b/clang/test/Driver/crash-ir-repro.cpp index fd97e6f0cce11..f5b61e62618a7 100644 --- a/clang/test/Driver/crash-ir-repro.cpp +++ b/clang/test/Driver/crash-ir-repro.cpp @@ -1,6 +1,11 @@ // RUN: %clang -S -emit-llvm -o %t.ll %s // RUN: not %clang -S -DCRASH %s -o %t.ll 2>&1 | FileCheck %s +// TODO(boomanaiden154): This test case causes clang to raise a signal when +// running under ubsan, but not in normal build configurations. This should +// be fixed. +// UNSUPPORTED: ubsan + // CHECK: Preprocessed source(s) and associated run script(s) are located at: // CHECK-NEXT: clang: note: diagnostic msg: {{.*}}.cpp // CHECK-NEXT: clang: note: diagnostic msg: {{.*}}.sh _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
