[compiler-rt] r312628 - [compiler-rt][xray][mips] Mark some tests as unsupported.

Simon Dardis via llvm-commits llvm-commits at lists.llvm.org
Wed Sep 6 03:17:29 PDT 2017


Author: sdardis
Date: Wed Sep  6 03:17:29 2017
New Revision: 312628

URL: http://llvm.org/viewvc/llvm-project?rev=312628&view=rev
Log:
[compiler-rt][xray][mips] Mark some tests as unsupported.

Thesee tests require the integrated assembler which is still in
development / testing for MIPS64. GAS doesn't understand the
section directives produced by XRay, so marking the relevant
tests as unsupported.

Modified:
    compiler-rt/trunk/test/xray/TestCases/Linux/argv0-log-file-name.cc
    compiler-rt/trunk/test/xray/TestCases/Linux/coverage-sample.cc
    compiler-rt/trunk/test/xray/TestCases/Linux/fixedsize-logging.cc
    compiler-rt/trunk/test/xray/TestCases/Linux/func-id-utils.cc
    compiler-rt/trunk/test/xray/TestCases/Linux/optional-inmemory-log.cc
    compiler-rt/trunk/test/xray/TestCases/Linux/patching-unpatching.cc
    compiler-rt/trunk/test/xray/TestCases/Linux/pic_test.cc

Modified: compiler-rt/trunk/test/xray/TestCases/Linux/argv0-log-file-name.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/xray/TestCases/Linux/argv0-log-file-name.cc?rev=312628&r1=312627&r2=312628&view=diff
==============================================================================
--- compiler-rt/trunk/test/xray/TestCases/Linux/argv0-log-file-name.cc (original)
+++ compiler-rt/trunk/test/xray/TestCases/Linux/argv0-log-file-name.cc Wed Sep  6 03:17:29 2017
@@ -6,6 +6,8 @@
 // RUN: ls | FileCheck xray.log.file.name
 // RUN: rm xray-log.* xray.log.file.name
 
+// UNSUPPORTED: target-is-mips64,target-is-mips64el
+
 #include <cstdio>
 #include <libgen.h>
 

Modified: compiler-rt/trunk/test/xray/TestCases/Linux/coverage-sample.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/xray/TestCases/Linux/coverage-sample.cc?rev=312628&r1=312627&r2=312628&view=diff
==============================================================================
--- compiler-rt/trunk/test/xray/TestCases/Linux/coverage-sample.cc (original)
+++ compiler-rt/trunk/test/xray/TestCases/Linux/coverage-sample.cc Wed Sep  6 03:17:29 2017
@@ -3,6 +3,8 @@
 // RUN: %clangxx_xray -std=c++11 %s -o %t
 // RUN: XRAY_OPTIONS="patch_premain=false xray_naive_log=false" %run %t | FileCheck %s
 
+// UNSUPPORTED: target-is-mips64,target-is-mips64el
+
 #include "xray/xray_interface.h"
 
 #include <set>

Modified: compiler-rt/trunk/test/xray/TestCases/Linux/fixedsize-logging.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/xray/TestCases/Linux/fixedsize-logging.cc?rev=312628&r1=312627&r2=312628&view=diff
==============================================================================
--- compiler-rt/trunk/test/xray/TestCases/Linux/fixedsize-logging.cc (original)
+++ compiler-rt/trunk/test/xray/TestCases/Linux/fixedsize-logging.cc Wed Sep  6 03:17:29 2017
@@ -7,6 +7,8 @@
 //
 // RUN: rm fixedsize-logging-*
 
+// UNSUPPORTED: target-is-mips64,target-is-mips64el
+
 #include <cstdio>
 
 [[clang::xray_always_instrument]] void foo() {

Modified: compiler-rt/trunk/test/xray/TestCases/Linux/func-id-utils.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/xray/TestCases/Linux/func-id-utils.cc?rev=312628&r1=312627&r2=312628&view=diff
==============================================================================
--- compiler-rt/trunk/test/xray/TestCases/Linux/func-id-utils.cc (original)
+++ compiler-rt/trunk/test/xray/TestCases/Linux/func-id-utils.cc Wed Sep  6 03:17:29 2017
@@ -4,6 +4,8 @@
 // RUN: %clangxx_xray -std=c++11 %s -o %t
 // RUN: XRAY_OPTIONS="patch_premain=false xray_naive_log=false" %run %t
 
+// UNSUPPORTED: target-is-mips64,target-is-mips64el
+
 #include "xray/xray_interface.h"
 #include <algorithm>
 #include <cassert>

Modified: compiler-rt/trunk/test/xray/TestCases/Linux/optional-inmemory-log.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/xray/TestCases/Linux/optional-inmemory-log.cc?rev=312628&r1=312627&r2=312628&view=diff
==============================================================================
--- compiler-rt/trunk/test/xray/TestCases/Linux/optional-inmemory-log.cc (original)
+++ compiler-rt/trunk/test/xray/TestCases/Linux/optional-inmemory-log.cc Wed Sep  6 03:17:29 2017
@@ -8,6 +8,8 @@
 //
 // RUN: rm -f optional-inmemory-log.xray-*
 
+// UNSUPPORTED: target-is-mips64,target-is-mips64el
+
 #include <cstdio>
 
 [[clang::xray_always_instrument]] void foo() {

Modified: compiler-rt/trunk/test/xray/TestCases/Linux/patching-unpatching.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/xray/TestCases/Linux/patching-unpatching.cc?rev=312628&r1=312627&r2=312628&view=diff
==============================================================================
--- compiler-rt/trunk/test/xray/TestCases/Linux/patching-unpatching.cc (original)
+++ compiler-rt/trunk/test/xray/TestCases/Linux/patching-unpatching.cc Wed Sep  6 03:17:29 2017
@@ -4,6 +4,8 @@
 // RUN: %clangxx_xray -fxray-instrument -std=c++11 %s -o %t
 // RUN: XRAY_OPTIONS="patch_premain=false" %run %t 2>&1 | FileCheck %s
 
+// UNSUPPORTED: target-is-mips64,target-is-mips64el
+
 #include "xray/xray_interface.h"
 
 #include <cstdio>

Modified: compiler-rt/trunk/test/xray/TestCases/Linux/pic_test.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/xray/TestCases/Linux/pic_test.cc?rev=312628&r1=312627&r2=312628&view=diff
==============================================================================
--- compiler-rt/trunk/test/xray/TestCases/Linux/pic_test.cc (original)
+++ compiler-rt/trunk/test/xray/TestCases/Linux/pic_test.cc Wed Sep  6 03:17:29 2017
@@ -7,6 +7,8 @@
 //
 // RUN: rm pic-test-logging-*
 
+// UNSUPPORTED: target-is-mips64,target-is-mips64el
+
 #include <cstdio>
 
 [[clang::xray_always_instrument]]




More information about the llvm-commits mailing list