[clang] 773d51c - [clang-repl] XFAIL windows properly in simple-exception test case.
Sunho Kim via cfe-commits
cfe-commits at lists.llvm.org
Sun Jul 31 17:06:46 PDT 2022
Author: Sunho Kim
Date: 2022-08-01T09:06:35+09:00
New Revision: 773d51ce3bedd091539aa86a5e5fc15a9174ff7b
URL: https://github.com/llvm/llvm-project/commit/773d51ce3bedd091539aa86a5e5fc15a9174ff7b
DIFF: https://github.com/llvm/llvm-project/commit/773d51ce3bedd091539aa86a5e5fc15a9174ff7b.diff
LOG: [clang-repl] XFAIL windows properly in simple-exception test case.
We don't have proper exception support in LLJIT on windows yet. We have to xfail windows machine, but the previous check missed out some targets.
Added:
Modified:
clang/test/Interpreter/simple-exception.cpp
Removed:
################################################################################
diff --git a/clang/test/Interpreter/simple-exception.cpp b/clang/test/Interpreter/simple-exception.cpp
index dc13402d2a515..5af656396d4a3 100644
--- a/clang/test/Interpreter/simple-exception.cpp
+++ b/clang/test/Interpreter/simple-exception.cpp
@@ -1,6 +1,6 @@
// clang-format off
// UNSUPPORTED: system-aix
-// XFAIL: arm, arm64-apple, windows-msvc, windows-gnu
+// XFAIL: arm, arm64-apple, system-windows
// RUN: cat %s | clang-repl | FileCheck %s
extern "C" int printf(const char *, ...);
More information about the cfe-commits
mailing list