aboutsummaryrefslogtreecommitdiff
path: root/run_unittests.py
diff options
context:
space:
mode:
authormakise-homura <akemi_homura@kurisa.ch>2020-01-13 17:20:07 +0300
committermakise-homura <akemi_homura@kurisa.ch>2020-01-27 22:35:26 +0300
commit7ca53e40a378ec633f6513113dbe2193dca62d19 (patch)
tree1fbb2a5685b97ae6826c352a206c0a2f5b751b74 /run_unittests.py
parentca1f7726d5137a6cdd510c07e2b413f1b6b31967 (diff)
downloadmeson-7ca53e40a378ec633f6513113dbe2193dca62d19.zip
meson-7ca53e40a378ec633f6513113dbe2193dca62d19.tar.gz
meson-7ca53e40a378ec633f6513113dbe2193dca62d19.tar.bz2
ObjC/ObjC++ compilers are not available for Elbrus, so don't fail
Diffstat (limited to 'run_unittests.py')
-rwxr-xr-xrun_unittests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run_unittests.py b/run_unittests.py
index ae12f4e..3b8e49f 100755
--- a/run_unittests.py
+++ b/run_unittests.py
@@ -2290,7 +2290,7 @@ class AllPlatformTests(BasePlatformTests):
ar = mesonbuild.linkers.ArLinker
lib = mesonbuild.linkers.VisualStudioLinker
langs = [('c', 'CC'), ('cpp', 'CXX')]
- if not is_windows():
+ if not is_windows() and platform.machine().lower() != 'e2k':
langs += [('objc', 'OBJC'), ('objcpp', 'OBJCXX')]
testdir = os.path.join(self.unit_test_dir, '5 compiler detection')
env = get_fake_env(testdir, self.builddir, self.prefix)