diff options
Diffstat (limited to 'clang/utils/test/TestingConfig.py')
-rw-r--r-- | clang/utils/test/TestingConfig.py | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/clang/utils/test/TestingConfig.py b/clang/utils/test/TestingConfig.py deleted file mode 100644 index b611d78e14d..00000000000 --- a/clang/utils/test/TestingConfig.py +++ /dev/null @@ -1,27 +0,0 @@ -class TestingConfig: - """" - TestingConfig - Information on a how to run a group of tests. - """ - - @staticmethod - def frompath(path): - data = {} - f = open(path) - exec f in {},data - - return TestingConfig(suffixes = data.get('suffixes', []), - environment = data.get('environment', {})) - - def __init__(self, suffixes, environment): - self.suffixes = set(suffixes) - self.environment = dict(environment) - - # Variables set internally. - self.root = None - self.useValgrind = None - self.useExternalShell = None - self.valgrindArgs = [] - - # FIXME: These need to move into a substitutions mechanism. - self.clang = None - self.clangcc = None |