diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-10-29 13:21:01 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-10-29 13:21:01 -0700 |
commit | ded68e787b5cfa2cf50f6598354003e40ae92e18 (patch) | |
tree | 647ce09704787f0e8355e26f41ba6894562d196c /check.py | |
parent | ea64101b46407fb1e0f3f6c257f1089253b961ac (diff) | |
download | binaryen-ded68e787b5cfa2cf50f6598354003e40ae92e18.tar.gz binaryen-ded68e787b5cfa2cf50f6598354003e40ae92e18.tar.bz2 binaryen-ded68e787b5cfa2cf50f6598354003e40ae92e18.zip |
nicer check.py output
Diffstat (limited to 'check.py')
-rwxr-xr-x | check.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ import os, subprocess, difflib -print 'checking testcases...\n' +print '[ checking testcases... ]\n' for asm in os.listdir('test'): if asm.endswith('.asm.js'): @@ -20,4 +20,4 @@ for asm in os.listdir('test'): )) print 'OK' -print '\nsuccess!' +print '\n[ success! ]' |