diff options
author | Dean Michael Berris <dberris@google.com> | 2017-05-12 05:13:11 +0000 |
---|---|---|
committer | Dean Michael Berris <dberris@google.com> | 2017-05-12 05:13:11 +0000 |
commit | 1cc75047749464adb31d6b6a8960a08a8fd6e418 (patch) | |
tree | 6cc28c77026f69e22977607a1b27d351436b9e90 | |
parent | 97206d572797bddc1bba71bb1c18c97f19d69053 (diff) | |
download | bcm5719-llvm-1cc75047749464adb31d6b6a8960a08a8fd6e418.tar.gz bcm5719-llvm-1cc75047749464adb31d6b6a8960a08a8fd6e418.zip |
[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.
llvm-svn: 302873
-rw-r--r-- | compiler-rt/test/xray/TestCases/Linux/custom-event-logging.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/compiler-rt/test/xray/TestCases/Linux/custom-event-logging.cc b/compiler-rt/test/xray/TestCases/Linux/custom-event-logging.cc index 29d177b9e96..b1a766d4604 100644 --- a/compiler-rt/test/xray/TestCases/Linux/custom-event-logging.cc +++ b/compiler-rt/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" |