We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c97be8 commit dc64594Copy full SHA for dc64594
benchmark/scripts/generate_harness/generate_harness.py
@@ -37,8 +37,8 @@
37
38
if __name__ == '__main__':
39
# CMakeList single-source
40
- tests = [os.path.basename(x).split('.')[0]
41
- for x in glob.glob(os.path.join(single_source_dir, '*.swift'))]
+ test_files = glob.glob(os.path.join(single_source_dir, '*.swift'))
+ tests = sorted(os.path.basename(x).split('.')[0] for x in test_files)
42
43
# CMakeList multi-source
44
class MultiSourceBench(object):
0 commit comments