diff options
| author | Dean Michael Berris <dberris@google.com> | 2017-03-30 03:50:56 +0000 |
|---|---|---|
| committer | Dean Michael Berris <dberris@google.com> | 2017-03-30 03:50:56 +0000 |
| commit | d7b2aafcfc87296c9d636013743c1f32f7d164da (patch) | |
| tree | 44a12684e434b85883f1cc8e674f03cf210533dd | |
| parent | c8381a8ad499a008616af429dfd4ad4192bc5855 (diff) | |
| download | bcm5719-llvm-d7b2aafcfc87296c9d636013743c1f32f7d164da.tar.gz bcm5719-llvm-d7b2aafcfc87296c9d636013743c1f32f7d164da.zip | |
[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
| -rw-r--r-- | compiler-rt/test/xray/TestCases/Linux/fdr-mode.cc | 2 | ||||
| -rw-r--r-- | 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 cdb0249951c..4aa3964c9d1 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 <cassert> 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 a52428f2b15..5edef2be2d8 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 <thread> #include <cassert> |

