diff options
Diffstat (limited to 'check.py')
-rwxr-xr-x | check.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -213,13 +213,12 @@ for t in spec_tests: fail(actual, expected) print '\n[ checking example testcases... ]\n' -''' + subprocess.check_call(['g++', '-std=c++11', os.path.join('test', 'example', 'find_div0s.cpp'), '-Isrc', '-g']) actual = subprocess.Popen(['./a.out'], stdout=subprocess.PIPE).communicate()[0] expected = open(os.path.join('test', 'example', 'find_div0s.txt')).read() if actual != expected: fail(actual, expected) -''' if has_emcc: print '\n[ checking wasm.js methods... ]\n' |