diff options
-rwxr-xr-x | tests/runner.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py index 3b295ed2..3e31127b 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -5851,7 +5851,6 @@ Options that are modified or new in %s include: Popen([compiler, path_from_root('tests', 'hello_world' + suffix), '-o', 'a.bc'], stdout=PIPE, stderr=PIPE).communicate() Popen([LLVM_AR, 'r', 'a.a', 'a.bc'], stdout=PIPE, stderr=PIPE).communicate() assert os.path.exists('a.a') - shutil.copyfile('a.a', '/home/alon/a.a') output = Popen([compiler, 'a.a']).communicate() assert os.path.exists('a.out.js'), output self.assertContained('hello, world!', run_js('a.out.js')) |