Skip to content

Commit d10474e

Browse files
A to Z update
1 parent 81a3ac0 commit d10474e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

code/tests/tools/wildcard.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
# Collect all .c and .cpp files directly in the cases directory (not subdirectories)
44
source_files = glob.glob("cases/*.c") + glob.glob("cases/*.cpp")
55

6+
# Sort files from a to z
7+
source_files.sort()
8+
69
# Print each file name with "cases/" prefix
710
for file in source_files:
811
print(file)

0 commit comments

Comments
 (0)