[test][clang-repl] Disable test incompatible with msan
authorVitaly Buka <vitalybuka@google.com>
Sat, 13 May 2023 01:46:43 +0000 (18:46 -0700)
committerVitaly Buka <vitalybuka@google.com>
Thu, 18 May 2023 08:24:03 +0000 (01:24 -0700)
clang/test/Interpreter/simple-exception.cpp

index 886b8ff..8741886 100644 (file)
@@ -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; }