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 b71345d828..a1c824f7b7 100755
--- a/scripts/patchtest
+++ b/scripts/patchtest
@@ -177,7 +177,7 @@ def main():
177 return 1 177 return 1
178 178
179 if os.path.isdir(patch_path): 179 if os.path.isdir(patch_path):
180 patch_list = [os.path.join(patch_path, filename) for filename in os.listdir(patch_path)] 180 patch_list = [os.path.join(patch_path, filename) for filename in sorted(os.listdir(patch_path))]
181 else: 181 else:
182 patch_list = [patch_path] 182 patch_list = [patch_path]
183 183