blob: 35815943ff5f829912a181d0d0924706c2cf79c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import lit.formats
config.name = "parallelism-groups"
config.suffixes = [".txt"]
config.test_format = lit.formats.ShTest()
config.test_source_root = None
config.test_exec_root = None
# Should not crash
lit_config.parallelism_groups["my_group"] = None
config.parallelism_group = "my_group"
# TODO(yln): we should have a nice property setter that doesn't allow setting
# to a non-existent group and do Math.min(old_group, new_group) when we
# overwrite an existing group.
|