Replace all instances of dg.exp file with lit.local.cfg, since all tests are run with LIT now and now Dejagnu. dg.exp is no longer needed.

Patch reviewed by Daniel Dunbar. It will be followed by additional cleanup patches.




git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150664 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eli Bendersky
2012-02-16 06:28:33 +00:00
parent d8d110e08a
commit 0f0c411079
235 changed files with 549 additions and 695 deletions

View File

@@ -1,6 +0,0 @@
load_lib llvm.exp
if { [llvm_supports_target ARM] } {
RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{txt}]]
}

View File

@@ -0,0 +1,13 @@
config.suffixes = ['.txt']
def getRoot(config):
if not config.parent:
return config
return getRoot(config.parent)
root = getRoot(config)
targets = set(root.targets_to_build.split())
if not 'ARM' in targets:
config.unsupported = True

View File

@@ -1,6 +0,0 @@
load_lib llvm.exp
if { [llvm_supports_target MBlaze] } {
RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{txt}]]
}

View File

@@ -0,0 +1,13 @@
config.suffixes = ['.txt']
def getRoot(config):
if not config.parent:
return config
return getRoot(config.parent)
root = getRoot(config)
targets = set(root.targets_to_build.split())
if not 'MBlaze' in targets:
config.unsupported = True

View File

@@ -1,6 +0,0 @@
load_lib llvm.exp
if { [llvm_supports_target X86] } {
RunLLVMTests [lsort [glob -nocomplain $srcdir/$subdir/*.{txt}]]
}

View File

@@ -0,0 +1,13 @@
config.suffixes = ['.txt']
def getRoot(config):
if not config.parent:
return config
return getRoot(config.parent)
root = getRoot(config)
targets = set(root.targets_to_build.split())
if not 'X86' in targets:
config.unsupported = True