summaryrefslogtreecommitdiff
path: root/test/xray
diff options
context:
space:
mode:
authorDean Michael Berris <dberris@google.com>2017-03-30 03:18:48 +0000
committerDean Michael Berris <dberris@google.com>2017-03-30 03:18:48 +0000
commit8e08f7371083c0d536b57edd95c4f712759f3dce (patch)
treeb557e147c08d1341b51f51db75e9652c4097cc74 /test/xray
parente014e3455f0f8ac9fed619c3e4acdcc2008e28af (diff)
[XRay][compiler-rt] Only run tests using llvm-xray in x86_64 for now
Followup on D31454. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@299049 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/xray')
-rw-r--r--test/xray/TestCases/Linux/fdr-mode.cc4
-rw-r--r--test/xray/TestCases/Linux/fdr-thread-order.cc3
2 files changed, 4 insertions, 3 deletions
diff --git a/test/xray/TestCases/Linux/fdr-mode.cc b/test/xray/TestCases/Linux/fdr-mode.cc
index 7f19ec59c..cdb024995 100644
--- a/test/xray/TestCases/Linux/fdr-mode.cc
+++ b/test/xray/TestCases/Linux/fdr-mode.cc
@@ -2,8 +2,8 @@
// RUN: XRAY_OPTIONS="patch_premain=false xray_naive_log=false xray_logfile_base=fdr-logging-test- xray_fdr_log=true verbosity=1" %run %t 2>&1 | FileCheck %s
// RUN: %llvm_xray convert --symbolize --output-format=yaml -instr_map=%t "`ls fdr-logging-test-* | head -1`" | FileCheck %s --check-prefix TRACE
// RUN: rm fdr-logging-test-*
-// FIXME: Figure out how to make llvm-xray work for aarch64-42vma
-// XFAIL: aarch64-42vma
+// FIXME: Make llvm-xray work on non-x86_64 as well.
+// REQUIRES: x86_64
#include "xray/xray_log_interface.h"
#include <cassert>
diff --git a/test/xray/TestCases/Linux/fdr-thread-order.cc b/test/xray/TestCases/Linux/fdr-thread-order.cc
index 52cbcfddc..a52428f2b 100644
--- a/test/xray/TestCases/Linux/fdr-thread-order.cc
+++ b/test/xray/TestCases/Linux/fdr-thread-order.cc
@@ -2,7 +2,8 @@
// RUN: XRAY_OPTIONS="patch_premain=false xray_naive_log=false xray_logfile_base=fdr-thread-order. xray_fdr_log=true verbosity=1" %run %t 2>&1 | FileCheck %s
// RUN: %llvm_xray convert --symbolize --output-format=yaml -instr_map=%t "`ls fdr-thread-order.* | head -1`" | FileCheck %s --check-prefix TRACE
// RUN: rm fdr-thread-order.*
-// XFAIL: aarch64-42vma
+// FIXME: Make llvm-xray work on non-x86_64 as well.
+// REQUIRES: x86_64
#include "xray/xray_log_interface.h"
#include <thread>
#include <cassert>