mirror of https://github.com/ARMmbed/mbed-os.git
Forced test case order by default to be sorted by test_id
parent
b9c75a7712
commit
65627812c5
|
@ -288,7 +288,7 @@ class SingleTestRunner(object):
|
|||
build_dir = join(BUILD_DIR, "test", target, toolchain)
|
||||
|
||||
# Enumerate through all tests and shuffle test order if requested
|
||||
test_map_keys = TEST_MAP.keys()
|
||||
test_map_keys = sorted(TEST_MAP.keys())
|
||||
if self.opts_shuffle_test_order:
|
||||
random.shuffle(test_map_keys, self.shuffle_random_func)
|
||||
# Update database with shuffle seed f applicable
|
||||
|
|
Loading…
Reference in New Issue