llvm-capstone/clang/test/Interpreter
Martin Storsjö 2c4f938f1c
Reapply #2 [clang-repl] [test] Make an XFAIL more precise (#71168)
The const.cpp testcase fails when running in MSVC mode, while it does
succeed in MinGW mode.

In MSVC mode, there are more constructor invocations than expected, as
the printout looks like this:

    A(1), this = 0000025597930000
    A(1), this = 0000025597930000
    f: this = 0000025597930000, val = 1
    A(1), this = 0000025597930000
    f: this = 0000025597930000, val = 1
    ~A, this = 0000025597930000, val = 1
    ~A, this = 0000025597930000, val = 1
    ~A, this = 0000025597930000, val = 1

While the expected printout looks like this:

    A(1), this = 000002C903E10000
    f: this = 000002C903E10000, val = 1
    f: this = 000002C903E10000, val = 1
    ~A, this = 000002C903E10000, val = 1

Reapplying #70991 with the XFAIL changed to check the host triple, not
the target triple. On an MSVC based build of Clang, but with the default
target triple set to PS4/PS5, we will still see the failure. And a Linux
based build of Clang that targets PS4/PS5 won't see the issue.
2023-11-07 11:41:56 +02:00
..
CUDA
Inputs
code-undo.cpp [clang-repl] Remove redundant tests 2023-07-27 16:22:56 +02:00
const.cpp Reapply #2 [clang-repl] [test] Make an XFAIL more precise (#71168) 2023-11-07 11:41:56 +02:00
disambiguate-decl-stmt.cpp [clang-repl] Disambiguate declarations with private typedefs 2023-08-23 11:29:26 +02:00
dynamic-library.cpp
execute-stmts.cpp
execute-weak.cpp [clang-repl] Remove redundant tests 2023-07-27 16:22:56 +02:00
execute.cpp [clang-repl] Remove redundant tests 2023-07-27 16:22:56 +02:00
fail.cpp [clang-repl] Remove redundant tests 2023-07-27 16:22:56 +02:00
global-dtor.cpp
incremental-mode.cpp
inline-virtual.cpp [CodeGen] Keep track of eagerly emitted globals 2023-08-18 09:42:28 +02:00
lambda.cpp [clang-repl] Remove redundant tests 2023-07-27 16:22:56 +02:00
lit.local.cfg
multiline.cpp
plugins.cpp
sanity.c
simple-exception.cpp [JITLink][RISCV] Implement eh_frame handling (#68253) 2023-10-28 11:30:43 +02:00
stmt-serialization.cpp