summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xcheck.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/check.py b/check.py
index 2d885932d..d5a1714df 100755
--- a/check.py
+++ b/check.py
@@ -4,7 +4,7 @@ import os, subprocess, difflib
print '[ checking testcases... ]\n'
-for asm in os.listdir('test'):
+for asm in sorted(os.listdir('test')):
if asm.endswith('.asm.js'):
print ' ', asm, ' ',
wasm = asm.replace('.asm.js', '.wast')