diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-03-26 14:43:58 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-03-26 14:43:58 -0700 |
commit | 52b1261c536c8215dab9a4e4cca9702598a5aa8b (patch) | |
tree | ca626fb51e70c65d3c77e1b2209966fcb696f6a7 | |
parent | 5b348504869e2a60c47173b32f7761fdc96ca132 (diff) |
make llvm-lit test emit verbose output
-rw-r--r-- | tests/test_other.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_other.py b/tests/test_other.py index e5fe49d7..60bdefe1 100644 --- a/tests/test_other.py +++ b/tests/test_other.py @@ -2571,7 +2571,7 @@ int main() def test_llvm_lit(self): llvm_src = LLVM_ROOT while not os.path.exists(os.path.join(llvm_src, 'emscripten-version.txt')): llvm_src = os.path.dirname(llvm_src) - cmd = [os.path.join(LLVM_ROOT, 'llvm-lit'), os.path.join(llvm_src, 'test', 'CodeGen', 'JS')] + cmd = [os.path.join(LLVM_ROOT, 'llvm-lit'), '-v', os.path.join(llvm_src, 'test', 'CodeGen', 'JS')] print cmd p = Popen(cmd) p.communicate() |