[compiler-rt] 9df832d - These compiler-rt tests should be UNSUPPORTED instead of XFAIL.

Alex Orlov via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 23 09:57:37 PDT 2020


Author: Alex Orlov
Date: 2020-10-23T20:57:18+04:00
New Revision: 9df832d1c3aa014c88ec947df3677da2e7d8bd64

URL: https://github.com/llvm/llvm-project/commit/9df832d1c3aa014c88ec947df3677da2e7d8bd64
DIFF: https://github.com/llvm/llvm-project/commit/9df832d1c3aa014c88ec947df3677da2e7d8bd64.diff

LOG: These compiler-rt tests should be UNSUPPORTED instead of XFAIL.

These compiler-rt tests should be UNSUPPORTED instead of XFAIL, which seems to be the real intent of the authors.

Reviewed By: vvereschaka

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

Added: 
    

Modified: 
    compiler-rt/test/builtins/Unit/gcc_personality_test.c
    compiler-rt/test/crt/dso_handle.cpp

Removed: 
    


################################################################################
diff  --git a/compiler-rt/test/builtins/Unit/gcc_personality_test.c b/compiler-rt/test/builtins/Unit/gcc_personality_test.c
index b18887603aa8a..160b897879fdb 100644
--- a/compiler-rt/test/builtins/Unit/gcc_personality_test.c
+++ b/compiler-rt/test/builtins/Unit/gcc_personality_test.c
@@ -1,5 +1,5 @@
-// FIXME: XFAIL as currently it cannot be built by lit properly.
-// XFAIL: *
+// FIXME: UNSUPPORTED as currently it cannot be built by lit properly.
+// UNSUPPORTED: true
 // RUN: %clangxx_builtins %s %librt -o %t && %run %t
 
 #include <stdlib.h>

diff  --git a/compiler-rt/test/crt/dso_handle.cpp b/compiler-rt/test/crt/dso_handle.cpp
index 3ce0ae15c80e8..75529d0fd85e4 100644
--- a/compiler-rt/test/crt/dso_handle.cpp
+++ b/compiler-rt/test/crt/dso_handle.cpp
@@ -4,7 +4,7 @@
 // RUN: %clangxx -g -o %t -nostdlib %crt1 %crti %crtbegin %t.o %libstdcxx -lc -lm %libgcc %t.so %crtend %crtn
 // RUN: %run %t 2>&1 | FileCheck %s
 
-// XFAIL: arm
+// UNSUPPORTED: arm, aarch64
 
 #include <stdio.h>
 


        


More information about the llvm-commits mailing list