Skip to content
Snippets Groups Projects
Commit ece62566 authored by Janik Zikovsky's avatar Janik Zikovsky
Browse files

Refs #2247: Minor overlooked change.

parent f73839e7
No related merge requests found
...@@ -953,7 +953,7 @@ class MultipleProjects(object): ...@@ -953,7 +953,7 @@ class MultipleProjects(object):
dirList=os.listdir(path) dirList=os.listdir(path)
for fname in dirList: for fname in dirList:
# Look for executables ending in Test # Look for executables ending in Test
if fname.endswith("Test") and (fname.startswith("DataHandling") ): #!TODO if fname.endswith("Test"): #and (fname.startswith("DataHandling") ): #!TODO
make_command = "cd %s ; make %s -j%d " % (os.path.join(path, ".."), fname, num_threads) make_command = "cd %s ; make %s -j%d " % (os.path.join(path, ".."), fname, num_threads)
pj = TestProject(fname, os.path.join(path, fname), make_command) pj = TestProject(fname, os.path.join(path, fname), make_command)
print "... Populating project %s ..." % fname print "... Populating project %s ..." % fname
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment