diff options
author | Martin Storsjö <martin@martin.st> | 2023-11-03 11:54:30 +0200 |
---|---|---|
committer | Martin Storsjö <martin@martin.st> | 2023-11-03 11:55:33 +0200 |
commit | 89a336add722f57f61c99b3eafab1c89f943db5e (patch) | |
tree | 1c77be57ee4cd5cc279f3ef745ad9e57f61773bb | |
parent | da5b382d8c9e88ed5a6da51137697c5decbcc1b4 (diff) | |
download | llvm-89a336add722f57f61c99b3eafab1c89f943db5e.zip llvm-89a336add722f57f61c99b3eafab1c89f943db5e.tar.gz llvm-89a336add722f57f61c99b3eafab1c89f943db5e.tar.bz2 |
Revert "Reapply [clang-repl] [test] Make an XFAIL more precise (#70991)"
This reverts commit e9db60c05e2fb96ff40cbb1f78790abc5de9237e.
This was still failing (unexpectedly passing) on some Sony PS
buildbots.
The issue is that the clang-repl testcases don't depend on what
the default target triple is, but what the host triple is,
which is used for JIT purposes.
-rw-r--r-- | clang/test/Interpreter/const.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Interpreter/const.cpp b/clang/test/Interpreter/const.cpp index ca141d6..4b6ce65 100644 --- a/clang/test/Interpreter/const.cpp +++ b/clang/test/Interpreter/const.cpp @@ -1,6 +1,6 @@ // UNSUPPORTED: system-aix // see https://github.com/llvm/llvm-project/issues/68092 -// XFAIL: target={{.*}}-windows-msvc, target={{.*}}-ps4, target={{.*}}-ps5 +// XFAIL: system-windows // RUN: cat %s | clang-repl | FileCheck %s // RUN: cat %s | clang-repl -Xcc -O2 | FileCheck %s |