summaryrefslogtreecommitdiffstats
path: root/scripts/patchtest
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/patchtest')
-rwxr-xr-xscripts/patchtest2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/patchtest b/scripts/patchtest
index be40e4b2a4..7b47d45dce 100755
--- a/scripts/patchtest
+++ b/scripts/patchtest
@@ -178,7 +178,7 @@ def main():
178 return 1 178 return 1
179 179
180 if os.path.isdir(patch_path): 180 if os.path.isdir(patch_path):
181 patch_list = [os.path.join(patch_path, filename) for filename in os.listdir(patch_path)] 181 patch_list = [os.path.join(patch_path, filename) for filename in sorted(os.listdir(patch_path))]
182 else: 182 else:
183 patch_list = [patch_path] 183 patch_list = [patch_path]
184 184