diff options
author | Nick Kledzik <kledzik@apple.com> | 2014-05-22 01:47:17 +0000 |
---|---|---|
committer | Nick Kledzik <kledzik@apple.com> | 2014-05-22 01:47:17 +0000 |
commit | e39685964ba4236c94643fecc2297c1e3553b2d2 (patch) | |
tree | fe3b6fe91711c5ccd00a3daf41d63147994ee269 | |
parent | 0d5c99eb0843273f1e7e2628a52881b7e851fd98 (diff) | |
download | bcm5719-llvm-e39685964ba4236c94643fecc2297c1e3553b2d2.tar.gz bcm5719-llvm-e39685964ba4236c94643fecc2297c1e3553b2d2.zip |
[mach-o] Use lit.local.cfg to enable mach-o test cases to be run
llvm-svn: 209383
-rw-r--r-- | lld/test/mach-o/lit.cfg | 17 | ||||
-rw-r--r-- | lld/test/mach-o/lit.local.cfg | 3 |
2 files changed, 3 insertions, 17 deletions
diff --git a/lld/test/mach-o/lit.cfg b/lld/test/mach-o/lit.cfg deleted file mode 100644 index a4b3f1e5765..00000000000 --- a/lld/test/mach-o/lit.cfg +++ /dev/null @@ -1,17 +0,0 @@ -# -*- Python -*- - -import os -import platform -import re -import subprocess - -import lit.formats -import lit.util - -# Configuration file for the 'lit' test runner. - -config.name = 'lld' - -# suffixes: A list of file extensions to treat as test files. -# Do NOT list .yaml in this directory because these are pure input files. -config.suffixes = ['.yaml'] diff --git a/lld/test/mach-o/lit.local.cfg b/lld/test/mach-o/lit.local.cfg new file mode 100644 index 00000000000..0bd76a64c7e --- /dev/null +++ b/lld/test/mach-o/lit.local.cfg @@ -0,0 +1,3 @@ + +# mach-o test cases encode input files in yaml and use .yaml extension +config.suffixes = ['.yaml'] |