summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2025-11-23 20:37:33 +0000
committerJussi Pakkanen <jussi.pakkanen@mailbox.org>2025-12-01 16:55:18 +0200
commit176edafdd6dd5549525223539dbc7f4a1f74ee24 (patch)
tree436248198e45dca83dc9bda2c80e7cd7804271c2
parent6419b22f6183d87c92d42bd3a99aa2787cb13e08 (diff)
downloadmeson-176edafdd6dd5549525223539dbc7f4a1f74ee24.tar.gz
templates: sort langs in test
-rw-r--r--unittests/allplatformstests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/allplatformstests.py b/unittests/allplatformstests.py
index 554217043..93fde1824 100644
--- a/unittests/allplatformstests.py
+++ b/unittests/allplatformstests.py
@@ -2510,7 +2510,7 @@ class AllPlatformTests(BasePlatformTests):
langs = ['c']
env = get_fake_env()
- for l in ['cpp', 'cs', 'd', 'java', 'cuda', 'fortran', 'objc', 'objcpp', 'rust', 'vala']:
+ for l in ['cpp', 'cs', 'cuda', 'd', 'fortran', 'java', 'objc', 'objcpp', 'rust', 'vala']:
try:
comp = detect_compiler_for(env, l, MachineChoice.HOST, True, '')
with tempfile.TemporaryDirectory() as d: