diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-06-13 22:42:10 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-06-13 22:50:47 +0300 |
commit | 15ab984d8e2cf396be385d7515f72561c3cbaaa2 (patch) | |
tree | 0113a737cb4bf2bdb9435adf5f0a7a7c7b6f9dd8 /run_tests.py | |
parent | cb64cb34c0f4041b3fe190dd68c0d9c7dbce1930 (diff) | |
download | meson-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-x | run_tests.py | 2 |
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__': |