diff options
author | Mathew Robinson <mathew.robinson@mongodb.com> | 2020-01-07 18:48:42 +0000 |
---|---|---|
committer | evergreen <evergreen@mongodb.com> | 2020-01-07 18:48:42 +0000 |
commit | 16207c4fa75a8045f24126d768b0ba2e1ce32b1f (patch) | |
tree | 6df377ef6da81df1637ccaf95f40354f19af53d4 /SConstruct | |
parent | 71658c0e2edb8c900ced5098f3f5a146a2d649ea (diff) | |
download | mongo-16207c4fa75a8045f24126d768b0ba2e1ce32b1f.tar.gz |
SERVER-44947 Allow test execution selection by test source file name
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 316bdb8c841..d4ec5f0bdb2 100644 --- a/SConstruct +++ b/SConstruct @@ -630,11 +630,15 @@ def decide_platform_tools(): def variable_tools_converter(val): tool_list = shlex.split(val) + # This list is not sorted intentionally, the order of tool loading + # matters as some of the tools have dependencies on other tools. return tool_list + [ "distsrc", "gziptool", - 'idl_tool', + "idl_tool", "jsheader", + "mongo_test_execution", + "mongo_test_list", "mongo_benchmark", "mongo_integrationtest", "mongo_unittest", |