[compiler-rt] r309538 - [XRay][compiler-rt] Require build-in-tree and x86_64-linux.

Dean Michael Berris via llvm-commits llvm-commits at lists.llvm.org
Sun Jul 30 23:09:57 PDT 2017


Author: dberris
Date: Sun Jul 30 23:09:57 2017
New Revision: 309538

URL: http://llvm.org/viewvc/llvm-project?rev=309538&view=rev
Log:
[XRay][compiler-rt] Require build-in-tree and x86_64-linux.

The quiet-start.cc test currently fails for arm (and potentially other
platforms). This change limits it to x86_64-linux.

Follow-up to D35789.

Modified:
    compiler-rt/trunk/test/xray/TestCases/Linux/quiet-start.cc

Modified: compiler-rt/trunk/test/xray/TestCases/Linux/quiet-start.cc
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/test/xray/TestCases/Linux/quiet-start.cc?rev=309538&r1=309537&r2=309538&view=diff
==============================================================================
--- compiler-rt/trunk/test/xray/TestCases/Linux/quiet-start.cc (original)
+++ compiler-rt/trunk/test/xray/TestCases/Linux/quiet-start.cc Sun Jul 30 23:09:57 2017
@@ -7,6 +7,10 @@
 // RUN: XRAY_OPTIONS="patch_premain=true verbosity=0" %run %t 2>&1 | \
 // RUN:    FileCheck %s --check-prefix QUIET
 // RUN: XRAY_OPTIONS="" %run %t 2>&1 | FileCheck %s --check-prefix DEFAULT
+//
+// FIXME: Understand how to make this work on other platforms
+// REQUIRES: built-in-llvm-tree
+// REQRUIES: x86_64-linux
 #include <iostream>
 
 using namespace std;




More information about the llvm-commits mailing list