asb created this revision. asb added reviewers: sunho, lhames. Herald added subscribers: wingo, sunshaoce, pmatos, VincentWu, vkmr, evandro, luismarques, sameer.abuasal, s.egerton, Jim, benna, psnobl, PkmX, rogfer01, shiva0217, kito-cheng, simoncook, kristof.beyls, arichardson. Herald added a project: All. asb requested review of this revision. Herald added subscribers: pcwang-thead, eopXD. Herald added a project: clang.
I'm not familiar with this infrastructure so haven't dug into why it's failing, but it is failing for me on RISC-V. As Arm targets are also XFAILed it doesn't seem like an unreasonable "fix" to XFAIL for RISC-V too - but if it looks like an easy fix might be possible from someone who's been working in the area, I'd obviously welcome that as an alternative! For reference, the output of this test is currently: clang-repl> clang-repl> clang-repl> clang-repl> clang-repl> clang-repl> clang-repl> clang-repl> clang-repl> clang-repl> Running f() terminate called after throwing an instance of 'char const*' Aborted (core dumped) Repository: rG LLVM Github Monorepo https://reviews.llvm.org/D141380 Files: clang/test/Interpreter/simple-exception.cpp Index: clang/test/Interpreter/simple-exception.cpp =================================================================== --- clang/test/Interpreter/simple-exception.cpp +++ 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 @@ // CHECK: Running f() // CHECK-NEXT: Simple exception -%quit \ No newline at end of file +%quit
Index: clang/test/Interpreter/simple-exception.cpp =================================================================== --- clang/test/Interpreter/simple-exception.cpp +++ 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 @@ // CHECK: Running f() // CHECK-NEXT: Simple exception -%quit \ No newline at end of file +%quit
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits