[clang] 123223a - [clang-repl] XFAIL riscv targets in simple-exception test case

Alex Bradbury via cfe-commits cfe-commits at lists.llvm.org
Tue Jan 17 06:29:21 PST 2023


Author: Alex Bradbury
Date: 2023-01-17T14:28:15Z
New Revision: 123223ab87ca50d1ce4f8c08128d0237b3d31c84

URL: https://github.com/llvm/llvm-project/commit/123223ab87ca50d1ce4f8c08128d0237b3d31c84
DIFF: https://github.com/llvm/llvm-project/commit/123223ab87ca50d1ce4f8c08128d0237b3d31c84.diff

LOG: [clang-repl] XFAIL riscv targets in simple-exception test case

This test fails for RISC-V and Arm targets are already XFAILed, so add
RISC-V to the XFAIL list.

Differential Revision: https://reviews.llvm.org/D141380

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 57e14e47a30a1..886b8ffd2d701 100644
--- a/clang/test/Interpreter/simple-exception.cpp
+++ b/clang/test/Interpreter/simple-exception.cpp
@@ -1,7 +1,7 @@
 // clang-format off
 // UNSUPPORTED: system-aix
-// XFAIL for arm and arm64, or running on Windows.
-// XFAIL: target=arm{{.*}}, system-windows
+// XFAIL for arm, arm64, riscv, or running on Windows.
+// XFAIL: target={{(arm|riscv).*}}, system-windows
 // RUN: cat %s | clang-repl | FileCheck %s
 extern "C" int printf(const char *, ...);
 
@@ -11,4 +11,4 @@ auto r1 = checkException();
 // CHECK: Running f()
 // CHECK-NEXT: Simple exception
 
-%quit
\ No newline at end of file
+%quit


        


More information about the cfe-commits mailing list