Skip to content
Snippets Groups Projects
Commit 064b120e authored by Charles Leggett's avatar Charles Leggett
Browse files

port updates of CI scripts to MT branch

See merge request !357

Former-commit-id: f6fdb684
parents 0ab9dba3 b7f89e44
No related merge requests found
# Declare the package's name to the build. This is necessary for it
# to show up nicely in the build results.
atlas_subdir( CI )
# Declare tests for the "package":
add_test (NAME DomainMapTests COMMAND python -m test.test_domain_map WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) add_test (NAME DomainMapTests COMMAND python -m test.test_domain_map WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
add_test (NAME WatchListTests COMMAND python -m test.test_watch_list WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) add_test (NAME WatchListTests COMMAND python -m test.test_watch_list WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
set_property (TEST DomainMapTests WatchListTests APPEND PROPERTY LABELS CI) set_property (TEST DomainMapTests WatchListTests APPEND PROPERTY LABELS CI)
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
DOMAIN_MAP = {} DOMAIN_MAP = {}
DOMAIN_MAP['Analysis'] = set(['^PhysicsAnalysis/']) DOMAIN_MAP['Analysis'] = set(['^PhysicsAnalysis/'])
DOMAIN_MAP['Build'] = set(['^Build/','^Projects/']) DOMAIN_MAP['Build'] = set(['^Build$','^Projects/'])
DOMAIN_MAP['Calorimeter'] = set(['^Calorimeter/']) DOMAIN_MAP['Calorimeter'] = set(['^Calorimeter/'])
DOMAIN_MAP['CI'] = set(['^CI']) DOMAIN_MAP['CI'] = set(['^CI'])
DOMAIN_MAP['Core'] = set(['^Control/']) DOMAIN_MAP['Core'] = set(['^Control/'])
......
...@@ -21,16 +21,30 @@ def run_unit_tests(args): ...@@ -21,16 +21,30 @@ def run_unit_tests(args):
logging.debug("changed files:\n" + print_collection(changed_files)) logging.debug("changed files:\n" + print_collection(changed_files))
affected_packages = sorted(set([map_filename_to_package(f) for f in changed_files])) affected_packages = sorted(set([map_filename_to_package(f) for f in changed_files]))
# assemble ctest command # construct list of patterns for matching test labels
ctest_cmd = "ctest --output-on-failure " pattern_list = []
for p in affected_packages: for package_path in affected_packages:
# ignore empty package paths which would trigger all tests
# (empty package paths may appear due to failed mapping)
if not package_path:
continue
# label is package name and not full package path # label is package name and not full package path
ctest_cmd += "-L ^" + os.path.basename(p) + " " pattern_list.append("^" + os.path.basename(package_path) + "$")
# only run tests if we found some patterns for test labels
if pattern_list:
# assemble ctest command
ctest_cmd = "ctest --output-on-failure "
ctest_cmd += "-L \"" + "|".join(pattern_list) + "\""
# execute # execute
logging.debug("ctest command = '%s'" % ctest_cmd) logging.debug("ctest command = '%s'" % ctest_cmd)
status = subprocess.call(ctest_cmd,shell=True) status = subprocess.call(ctest_cmd,shell=True)
return status return status
# no tests -> return success
else:
return 0
def main(): def main():
parser = argparse.ArgumentParser(description="ATLAS unit test runner", parser = argparse.ArgumentParser(description="ATLAS unit test runner",
......
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