summaryrefslogtreecommitdiff
path: root/tools/check_output_test.py
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-08-01 16:30:19 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-08-02 12:49:40 -0400
commit7fe656f4b9ab594035f7c0b6c0c68ca41871daca (patch)
tree3e9fc93de1babc3c60b06dac6ae9ce2a00a58638 /tools/check_output_test.py
parent421358e7a9612527fdd9ed9a9a59635c12cdaab5 (diff)
Add 005_more_imports.ts
And run check_output_test in order.
Diffstat (limited to 'tools/check_output_test.py')
-rwxr-xr-xtools/check_output_test.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/check_output_test.py b/tools/check_output_test.py
index 84bc31580..af385eb36 100755
--- a/tools/check_output_test.py
+++ b/tools/check_output_test.py
@@ -14,10 +14,10 @@ tests_path = os.path.join(root_path, "tests")
def check_output_test(deno_exe_filename):
assert os.path.isfile(deno_exe_filename)
- outs = [
+ outs = sorted([
filename for filename in os.listdir(tests_path)
if filename.endswith(".out")
- ]
+ ])
assert len(outs) > 1
tests = [(os.path.splitext(filename)[0], filename) for filename in outs]
for (script, out_filename) in tests: