[llvm-commits] [llvm] r140517 - /llvm/trunk/test/CodeGen/CBackend/X86/dg.exp
David Meyer
pdox at google.com
Sun Sep 25 23:44:27 PDT 2011
Author: pdox
Date: Mon Sep 26 01:44:27 2011
New Revision: 140517
URL: http://llvm.org/viewvc/llvm-project?rev=140517&view=rev
Log:
Only run tests in test/CodeGen/CBackend/X86 when both X86 and CBackend are supported
Modified:
llvm/trunk/test/CodeGen/CBackend/X86/dg.exp
Modified: llvm/trunk/test/CodeGen/CBackend/X86/dg.exp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/CBackend/X86/dg.exp?rev=140517&r1=140516&r2=140517&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/CBackend/X86/dg.exp (original)
+++ llvm/trunk/test/CodeGen/CBackend/X86/dg.exp Mon Sep 26 01:44:27 2011
@@ -1,5 +1,5 @@
load_lib llvm.exp
-if { [llvm_supports_target X86] } {
+if { [llvm_supports_target X86] && [llvm_supports_target CBackend] } {
RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{ll,c,cpp,s}]]
}
More information about the llvm-commits
mailing list