From: Vitaly Buka Date: Sat, 13 May 2023 01:46:43 +0000 (-0700) Subject: [test][clang-repl] Disable test incompatible with msan X-Git-Tag: upstream/17.0.6~8034 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9e270c64a7319929da2b92920a91136fd9e2df43;p=platform%2Fupstream%2Fllvm.git [test][clang-repl] Disable test incompatible with msan --- diff --git a/clang/test/Interpreter/simple-exception.cpp b/clang/test/Interpreter/simple-exception.cpp index 886b8ff..8741886 100644 --- a/clang/test/Interpreter/simple-exception.cpp +++ b/clang/test/Interpreter/simple-exception.cpp @@ -3,6 +3,11 @@ // XFAIL for arm, arm64, riscv, or running on Windows. // XFAIL: target={{(arm|riscv).*}}, system-windows // RUN: cat %s | clang-repl | FileCheck %s + +// Incompatible with msan. It passes with -O3 but fail -Oz. Interpreter +// generates non-instrumented code, which may call back to instrumented. +// UNSUPPORTED: msan + extern "C" int printf(const char *, ...); int f() { throw "Simple exception"; return 0; }