aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2016-06-13 22:42:10 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2016-06-13 22:50:47 +0300
commit15ab984d8e2cf396be385d7515f72561c3cbaaa2 (patch)
tree0113a737cb4bf2bdb9435adf5f0a7a7c7b6f9dd8 /run_tests.py
parentcb64cb34c0f4041b3fe190dd68c0d9c7dbce1930 (diff)
downloadmeson-15ab984d8e2cf396be385d7515f72561c3cbaaa2.zip
meson-15ab984d8e2cf396be385d7515f72561c3cbaaa2.tar.gz
meson-15ab984d8e2cf396be385d7515f72561c3cbaaa2.tar.bz2
Finish appveyor integration by moving static library in a subdir to avoid clashes.
Diffstat (limited to 'run_tests.py')
-rwxr-xr-xrun_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_tests.py b/run_tests.py
index 50aa006..5fdfce9 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -406,7 +406,7 @@ def generate_prebuilt_object():
else:
raise RuntimeError("Could not find C compiler.")
cmd = [cmd, '-c', source, '-o', objectfile]
- subprocess.check_call(cmd)
+ subprocess.check_call(cmd, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
return objectfile
if __name__ == '__main__':