[compiler-rt] r336878 - [XRay][compiler-rt] Fixup: require x86_64 for profiling mode tests
Dean Michael Berris via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 11 18:54:29 PDT 2018
Author: dberris
Date: Wed Jul 11 18:54:29 2018
New Revision: 336878
URL: http://llvm.org/viewvc/llvm-project?rev=336878&view=rev
Log:
[XRay][compiler-rt] Fixup: require x86_64 for profiling mode tests
This constrains the build environments we are testing/supporting for the runtime
tests until we can be sure xray works in more platforms.
Modified:
compiler-rt/trunk/test/xray/TestCases/Posix/profiling-multi-threaded.cc
compiler-rt/trunk/test/xray/TestCases/Posix/profiling-single-threaded.cc
Modified: compiler-rt/trunk/test/xray/TestCases/Posix/profiling-multi-threaded.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/xray/TestCases/Posix/profiling-multi-threaded.cc?rev=336878&r1=336877&r2=336878&view=diff
==============================================================================
--- compiler-rt/trunk/test/xray/TestCases/Posix/profiling-multi-threaded.cc (original)
+++ compiler-rt/trunk/test/xray/TestCases/Posix/profiling-multi-threaded.cc Wed Jul 11 18:54:29 2018
@@ -11,7 +11,8 @@
// RUN: [ $PROFILES -eq 1 ]
// RUN: rm -f xray-log.profiling-multi-*
//
-// UNSUPPORTED: target-is-mips64,target-is-mips64el
+// REQUIRES: x86_64-target-arch
+// REQUIRES: built-in-llvm-tree
#include "xray/xray_interface.h"
#include "xray/xray_log_interface.h"
Modified: compiler-rt/trunk/test/xray/TestCases/Posix/profiling-single-threaded.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/xray/TestCases/Posix/profiling-single-threaded.cc?rev=336878&r1=336877&r2=336878&view=diff
==============================================================================
--- compiler-rt/trunk/test/xray/TestCases/Posix/profiling-single-threaded.cc (original)
+++ compiler-rt/trunk/test/xray/TestCases/Posix/profiling-single-threaded.cc Wed Jul 11 18:54:29 2018
@@ -11,7 +11,8 @@
// RUN: [ $PROFILES -eq 2 ]
// RUN: rm -f xray-log.profiling-single-*
//
-// UNSUPPORTED: target-is-mips64,target-is-mips64el
+// REQUIRES: x86_64-target-arch
+// REQUIRES: built-in-llvm-tree
#include "xray/xray_interface.h"
#include "xray/xray_log_interface.h"
More information about the llvm-commits
mailing list