aboutsummaryrefslogtreecommitdiff
path: root/tests/runner.py
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2012-03-20 16:16:52 -0700
committerAlon Zakai <alonzakai@gmail.com>2012-03-20 16:16:52 -0700
commitbceca4ed04ae68b27404b581f3cab07b5c8f095a (patch)
tree792d4d301c3e3081ef06e557ecd5988c23e7f188 /tests/runner.py
parent43b41b4258c7a3108bb2611257749a3fd57630c2 (diff)
fix breakage with calling LLVM_AR with python
Diffstat (limited to 'tests/runner.py')
-rwxr-xr-xtests/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index aa83cf4f..d38af50c 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -6005,7 +6005,7 @@ Options that are modified or new in %s include:
# handle singleton archives
self.clear()
Popen([compiler, path_from_root('tests', 'hello_world' + suffix), '-o', 'a.bc'], stdout=PIPE, stderr=PIPE).communicate()
- Popen(['python', LLVM_AR, 'r', 'a.a', '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')
output = Popen([compiler, 'a.a']).communicate()
assert os.path.exists('a.out.js'), output