forked from OSchip/llvm-project
[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. llvm-svn: 312628
This commit is contained in:
parent
32e5273491
commit
10d0ae85dd
|
@ -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>
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -7,6 +7,8 @@
|
|||
//
|
||||
// RUN: rm fixedsize-logging-*
|
||||
|
||||
// UNSUPPORTED: target-is-mips64,target-is-mips64el
|
||||
|
||||
#include <cstdio>
|
||||
|
||||
[[clang::xray_always_instrument]] void foo() {
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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() {
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -7,6 +7,8 @@
|
|||
//
|
||||
// RUN: rm pic-test-logging-*
|
||||
|
||||
// UNSUPPORTED: target-is-mips64,target-is-mips64el
|
||||
|
||||
#include <cstdio>
|
||||
|
||||
[[clang::xray_always_instrument]]
|
||||
|
|
Loading…
Reference in New Issue