summaryrefslogtreecommitdiff
path: root/test/xray/TestCases
diff options
context:
space:
mode:
authorDean Michael Berris <dberris@google.com>2017-05-12 05:13:11 +0000
committerDean Michael Berris <dberris@google.com>2017-05-12 05:13:11 +0000
commit7fdfa4b8d87e169d47e17c9997528546282a57b5 (patch)
treec9ed17b39487cbba670c2c5b7eb0af323666130b /test/xray/TestCases
parent5f20748c2f1bbf6801523c8d562f36f75793fcb3 (diff)
[XRay][compiler-rt] Only run custom event logging in x86_64-linux
We only have an implementation in x86_64 that works for the patching/unpatching and runtime support (trampolines). Follow-up to D30630. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@302873 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/xray/TestCases')
-rw-r--r--test/xray/TestCases/Linux/custom-event-logging.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/xray/TestCases/Linux/custom-event-logging.cc b/test/xray/TestCases/Linux/custom-event-logging.cc
index 29d177b9e..b1a766d46 100644
--- a/test/xray/TestCases/Linux/custom-event-logging.cc
+++ b/test/xray/TestCases/Linux/custom-event-logging.cc
@@ -2,7 +2,9 @@
//
// RUN: %clangxx_xray -std=c++11 %s -o %t
// RUN: XRAY_OPTIONS="patch_premain=false verbosity=1 xray_naive_log=false xray_logfile_base=custom-event-logging.xray-" %run %t 2>&1 | FileCheck %s
-//
+// FIXME: Support this in non-x86_64 as well
+// REQUIRES: x86_64-linux
+// REQUIRES: built-in-llvm-tree
#include <cstdio>
#include "xray/xray_interface.h"