diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-09-24 09:01:22 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2010-09-24 09:01:22 +0000 |
commit | 5d28c8428fded7d52e3d24abb98c54966a361771 (patch) | |
tree | 9cbfba02753c1db09b3f189b0157ecbd883144bd /llvm/utils | |
parent | 10d274d874666b4efaff535d4d48a65fe8d51bbb (diff) | |
download | bcm5719-llvm-5d28c8428fded7d52e3d24abb98c54966a361771.tar.gz bcm5719-llvm-5d28c8428fded7d52e3d24abb98c54966a361771.zip |
Test unittests built with CMake.
llvm-svn: 114726
Diffstat (limited to 'llvm/utils')
-rw-r--r-- | llvm/utils/lit/lit/TestFormats.py | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/llvm/utils/lit/lit/TestFormats.py b/llvm/utils/lit/lit/TestFormats.py index ce0e9a3c326..7662e144263 100644 --- a/llvm/utils/lit/lit/TestFormats.py +++ b/llvm/utils/lit/lit/TestFormats.py @@ -9,7 +9,7 @@ kIsWindows = platform.system() == 'Windows' class GoogleTest(object): def __init__(self, test_sub_dir, test_suffix): - self.test_sub_dir = str(test_sub_dir) + self.test_sub_dir = str(test_sub_dir).split(';') self.test_suffix = str(test_suffix) # On Windows, assume tests will also end in '.exe'. @@ -28,7 +28,10 @@ class GoogleTest(object): try: lines = Util.capture([path, '--gtest_list_tests'], - env=localConfig.environment).split('\n') + env=localConfig.environment) + if kIsWindows: + lines = lines.replace('\r', '') + lines = lines.split('\n') except: litConfig.error("unable to discover google-tests in %r" % path) raise StopIteration @@ -56,10 +59,13 @@ class GoogleTest(object): source_path = testSuite.getSourcePath(path_in_suite) for filename in os.listdir(source_path): # Check for the one subdirectory (build directory) tests will be in. - if filename != self.test_sub_dir: + if not filename in self.test_sub_dir: continue filepath = os.path.join(source_path, filename) + if not os.path.isdir(filepath): + continue + for subfilename in os.listdir(filepath): if subfilename.endswith(self.test_suffix): execpath = os.path.join(filepath, subfilename) |