From d7b2aafcfc87296c9d636013743c1f32f7d164da Mon Sep 17 00:00:00 2001 From: Dean Michael Berris Date: Thu, 30 Mar 2017 03:50:56 +0000 Subject: [PATCH] [XRay][compiler-rt] Spell REQUIRES properly for x86_64-linux Until llvm-xray starts running/supporting binaries that are not ELF64 we only run the FDR tests on x86_64-linux. Previous changes caused the tests to not actually run on x86_64. Follow-up on D31454. llvm-svn: 299050 --- compiler-rt/test/xray/TestCases/Linux/fdr-mode.cc | 2 +- compiler-rt/test/xray/TestCases/Linux/fdr-thread-order.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler-rt/test/xray/TestCases/Linux/fdr-mode.cc b/compiler-rt/test/xray/TestCases/Linux/fdr-mode.cc index cdb0249..4aa3964 100644 --- a/compiler-rt/test/xray/TestCases/Linux/fdr-mode.cc +++ b/compiler-rt/test/xray/TestCases/Linux/fdr-mode.cc @@ -3,7 +3,7 @@ // 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: Make llvm-xray work on non-x86_64 as well. -// REQUIRES: x86_64 +// REQUIRES: x86_64-linux #include "xray/xray_log_interface.h" #include diff --git a/compiler-rt/test/xray/TestCases/Linux/fdr-thread-order.cc b/compiler-rt/test/xray/TestCases/Linux/fdr-thread-order.cc index a52428f..5edef2b 100644 --- a/compiler-rt/test/xray/TestCases/Linux/fdr-thread-order.cc +++ b/compiler-rt/test/xray/TestCases/Linux/fdr-thread-order.cc @@ -3,7 +3,7 @@ // 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.* // FIXME: Make llvm-xray work on non-x86_64 as well. -// REQUIRES: x86_64 +// REQUIRES: x86_64-linux #include "xray/xray_log_interface.h" #include #include -- 2.7.4