aboutsummaryrefslogtreecommitdiff
path: root/run_tests.py
diff options
context:
space:
mode:
authorJérôme Duval <jerome.duval@gmail.com>2017-09-13 10:56:43 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2017-09-14 00:11:17 +0300
commitc46c1e74ad930e5c0a8800e336dde4ca117c5187 (patch)
treec6922ce21d962aeb5d92371a5ef01d413ac44458 /run_tests.py
parent0b8db94065616e241077a0b7c5cee274f733f6c5 (diff)
downloadmeson-c46c1e74ad930e5c0a8800e336dde4ca117c5187.zip
meson-c46c1e74ad930e5c0a8800e336dde4ca117c5187.tar.gz
meson-c46c1e74ad930e5c0a8800e336dde4ca117c5187.tar.bz2
run_tests.py: Haiku has no nice().
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 efbdaaa..a00898d 100755
--- a/run_tests.py
+++ b/run_tests.py
@@ -171,7 +171,7 @@ if __name__ == '__main__':
backend = Backend.xcode
break
# Running on a developer machine? Be nice!
- if not mesonlib.is_windows() and 'TRAVIS' not in os.environ:
+ if not mesonlib.is_windows() and not mesonlib.is_haiku() and 'TRAVIS' not in os.environ:
os.nice(20)
# Appveyor sets the `platform` environment variable which completely messes
# up building with the vs2010 and vs2015 backends.